From d1b7b6f4bb931d5f3854bad7b41009d361c3a439 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Wed, 11 Sep 2024 19:08:16 +0200 Subject: [PATCH] fix TimeColumn factory methods `new_seconds`/`new_nanos` creating wrong type of timeline --- crates/store/re_chunk/src/chunk.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/store/re_chunk/src/chunk.rs b/crates/store/re_chunk/src/chunk.rs index 171cb9b7ffc3..f21869bf39e0 100644 --- a/crates/store/re_chunk/src/chunk.rs +++ b/crates/store/re_chunk/src/chunk.rs @@ -804,7 +804,7 @@ impl TimeColumn { Self::new( None, - Timeline::new_sequence(name.into()), + Timeline::new_temporal(name.into()), ArrowPrimitiveArray::::from_vec(time_vec), ) } @@ -834,7 +834,7 @@ impl TimeColumn { Self::new( None, - Timeline::new_sequence(name.into()), + Timeline::new_temporal(name.into()), ArrowPrimitiveArray::::from_vec(time_vec), ) }