Skip to content

Commit 05f4876

Browse files
committed
that deserves a warn
1 parent 8cf42e5 commit 05f4876

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

crates/re_log_types/src/data_table.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,11 @@ impl DataTable {
682682
} else {
683683
// NOTE: This is a column of cells, it shouldn't ever fail to concatenate since
684684
// they share the same underlying type.
685-
let data = arrow2::compute::concatenate::concatenate(cell_refs.as_slice())?;
685+
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+
})?;
686690
data_to_lists(column, data)
687691
};
688692

0 commit comments

Comments
 (0)