Skip to content

Commit

Permalink
dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Nov 14, 2023
1 parent 70571cd commit e0e5d6d
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions crates/re_arrow_store/src/store_write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,7 @@ impl DataStore {
let index = self
.timeless_tables
.entry(ent_path_hash)
.or_insert_with(|| {
// diffs.push(TimelessEntityPathDiff::new(*row_id, ent_path_hash).added());
PersistentIndexedTable::new(self.cluster_key, ent_path.clone())
});
.or_insert_with(|| PersistentIndexedTable::new(self.cluster_key, ent_path.clone()));

index.insert_row(insert_id, generated_cluster_cell.clone(), row);
} else {
Expand All @@ -176,10 +173,7 @@ impl DataStore {
let index = self
.tables
.entry((*timeline, ent_path_hash))
.or_insert_with(|| {
// diffs.push(EntityPathDiff::new(*row_id, *timeline, ent_path_hash).added());
IndexedTable::new(self.cluster_key, *timeline, ent_path)
});
.or_insert_with(|| IndexedTable::new(self.cluster_key, *timeline, ent_path));

index.insert_row(
&self.config,
Expand Down

0 comments on commit e0e5d6d

Please sign in to comment.