Skip to content

Commit

Permalink
fix TimeColumn factory methods new_seconds/new_nanos creating wro…
Browse files Browse the repository at this point in the history
…ng type of timeline
  • Loading branch information
Wumpf committed Sep 11, 2024
1 parent 8ddd84f commit d1b7b6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/store/re_chunk/src/chunk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ impl TimeColumn {

Self::new(
None,
Timeline::new_sequence(name.into()),
Timeline::new_temporal(name.into()),
ArrowPrimitiveArray::<i64>::from_vec(time_vec),
)
}
Expand Down Expand Up @@ -834,7 +834,7 @@ impl TimeColumn {

Self::new(
None,
Timeline::new_sequence(name.into()),
Timeline::new_temporal(name.into()),
ArrowPrimitiveArray::<i64>::from_vec(time_vec),
)
}
Expand Down

0 comments on commit d1b7b6f

Please sign in to comment.