Skip to content

Commit b1561fc

Browse files
committed
Add comment to arrow_ui
1 parent c20e340 commit b1561fc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/viewer/re_ui/src/arrow_ui.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ pub fn arrow_ui(ui: &mut egui::Ui, ui_layout: UiLayout, array: &dyn arrow::array
4141
return;
4242
}
4343

44+
// Special-case binary data (e.g. blobs).
45+
// We don't want to show their contents (too slow, since they are usually huge),
46+
// so we only show their size:
4447
if let Some(binaries) = array.downcast_array_ref::<BinaryArray>()
4548
&& binaries.len() == 1
4649
{

0 commit comments

Comments
 (0)