We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf42e5 commit 05f4876Copy full SHA for 05f4876
crates/re_log_types/src/data_table.rs
@@ -682,7 +682,11 @@ impl DataTable {
682
} else {
683
// NOTE: This is a column of cells, it shouldn't ever fail to concatenate since
684
// they share the same underlying type.
685
- let data = arrow2::compute::concatenate::concatenate(cell_refs.as_slice())?;
+ let data =
686
+ arrow2::compute::concatenate::concatenate(cell_refs.as_slice()).map_err(|err| {
687
+ re_log::warn_once!("failed to concatenate cells for column {name}");
688
+ err
689
+ })?;
690
data_to_lists(column, data)
691
};
692
0 commit comments