Skip to content

Commit

Permalink
Fix crash in save-to-file (#1909)
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc authored Apr 18, 2023
1 parent 937204c commit 71abeab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/re_arrow_store/src/store_dump.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl DataStore {
col_timelines: [(*timeline, col_time.iter().copied().map(Some).collect())]
.into(),
col_entity_path: std::iter::repeat_with(|| table.ent_path.clone())
.take(table.num_rows() as _)
.take(col_row_id.len())
.collect(),
col_num_instances: col_num_instances.clone(),
columns: columns.clone(), // shallow
Expand Down

0 comments on commit 71abeab

Please sign in to comment.