Skip to content

Commit

Permalink
Nulls -> ContainsNulls
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jan 10, 2025
1 parent c562d8b commit d4105c9
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 @@ -806,7 +806,7 @@ pub struct TimeColumn {
#[derive(Debug, thiserror::Error)]
pub enum TimeColumnError {
#[error("Time columns had nulls, but should be dense")]
Nulls,
ContainsNulls,

#[error("Unsupported data type : {0}")]
UnsupportedDataType(arrow::datatypes::DataType),
Expand Down Expand Up @@ -1118,7 +1118,7 @@ impl TimeColumn {
#![allow(clippy::manual_map)]

if array.null_count() > 0 {
return Err(TimeColumnError::Nulls);
return Err(TimeColumnError::ContainsNulls);
}

// Sequence timelines are i64, but time columns are nanoseconds (also as i64).
Expand Down

0 comments on commit d4105c9

Please sign in to comment.