Skip to content

Commit 65a6962

Browse files
committed
self review
1 parent 476103f commit 65a6962

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

crates/re_log_types/src/data_table.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -440,8 +440,9 @@ impl DataTable {
440440
/// * Control columns are those that drive the behavior of the storage systems.
441441
/// They are always present, always dense, and always deserialized upon reception by the
442442
/// server.
443-
/// Internally, time columns are handled separately from the rest of the control columns,
444-
/// although they are control columns in and of themselves.
443+
/// Internally, time columns are (de)serialized separately from the rest of the control
444+
/// columns for efficiency/QOL concerns: that doesn't change the fact that they are control
445+
/// columns all the same!
445446
/// * Data columns are the one that hold component data.
446447
/// They are optional, potentially sparse, and never deserialized on the server-side (not by
447448
/// the storage systems, at least).
@@ -492,7 +493,7 @@ impl DataTable {
492493
}
493494

494495
let Self {
495-
table_id,
496+
table_id: _,
496497
row_id: _,
497498
col_timelines,
498499
entity_path: _,
@@ -509,8 +510,6 @@ impl DataTable {
509510
columns.push(time_column);
510511
}
511512

512-
schema.metadata = [(METADATA_TABLE_ID.into(), table_id.to_string())].into();
513-
514513
(schema, columns)
515514
}
516515

0 commit comments

Comments
 (0)