diff --git a/crates/store/re_chunk_store/tests/memory_test.rs b/crates/store/re_chunk_store/tests/memory_test.rs index cbbcdfa1b0f9..9af9d5c04ca6 100644 --- a/crates/store/re_chunk_store/tests/memory_test.rs +++ b/crates/store/re_chunk_store/tests/memory_test.rs @@ -100,7 +100,7 @@ fn scalar_memory_overhead() { let entity_path = re_log_types::entity_path!("scalar"); let timepoint = TimePoint::default().with(Timeline::new("log_time", TimeType::Time), i as i64); - let scalars = Scalar::to_arrow2([Scalar::from(i as f64)]).unwrap(); + let scalars = Scalar::to_arrow([Scalar::from(i as f64)]).unwrap(); let row = PendingRow::new( timepoint, diff --git a/crates/top/re_sdk/src/recording_stream.rs b/crates/top/re_sdk/src/recording_stream.rs index 54956ff35f97..bfe2fb0fc3de 100644 --- a/crates/top/re_sdk/src/recording_stream.rs +++ b/crates/top/re_sdk/src/recording_stream.rs @@ -2556,7 +2556,7 @@ mod tests { components: [ ( MyPoint::descriptor(), - ::to_arrow2([ + ::to_arrow([ MyPoint::new(10.0, 10.0), MyPoint::new(20.0, 20.0), ]) @@ -2564,11 +2564,11 @@ mod tests { ), // ( MyColor::descriptor(), - ::to_arrow2([MyColor(0x8080_80FF)]).unwrap(), + ::to_arrow([MyColor(0x8080_80FF)]).unwrap(), ), // ( MyLabel::descriptor(), - ::to_arrow2([] as [MyLabel; 0]).unwrap(), + ::to_arrow([] as [MyLabel; 0]).unwrap(), ), // ] .into_iter() @@ -2583,15 +2583,15 @@ mod tests { components: [ ( MyPoint::descriptor(), - ::to_arrow2([] as [MyPoint; 0]).unwrap(), + ::to_arrow([] as [MyPoint; 0]).unwrap(), ), // ( MyColor::descriptor(), - ::to_arrow2([] as [MyColor; 0]).unwrap(), + ::to_arrow([] as [MyColor; 0]).unwrap(), ), // ( MyLabel::descriptor(), - ::to_arrow2([] as [MyLabel; 0]).unwrap(), + ::to_arrow([] as [MyLabel; 0]).unwrap(), ), // ] .into_iter() @@ -2606,15 +2606,15 @@ mod tests { components: [ ( MyPoint::descriptor(), - ::to_arrow2([] as [MyPoint; 0]).unwrap(), + ::to_arrow([] as [MyPoint; 0]).unwrap(), ), // ( MyColor::descriptor(), - ::to_arrow2([MyColor(0xFFFF_FFFF)]).unwrap(), + ::to_arrow([MyColor(0xFFFF_FFFF)]).unwrap(), ), // ( MyLabel::descriptor(), - ::to_arrow2([MyLabel("hey".into())]).unwrap(), + ::to_arrow([MyLabel("hey".into())]).unwrap(), ), // ] .into_iter()