Skip to content

Commit

Permalink
Update crates/re_arrow_store/src/store_sanity.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Emil Ernerfeldt <[email protected]>
  • Loading branch information
teh-cmc and emilk authored Apr 5, 2023
1 parent 00915fd commit 2874bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/re_arrow_store/src/store_sanity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ impl IndexedBucket {
.ok_or(SanityError::ClusterColumnMissing {
cluster_key: *cluster_key,
})?;
if !cluster_column.iter().all(|cell| cell.is_some()) {
if cluster_column.iter().any(|cell| cell.is_none()) {
return Err(SanityError::ClusterColumnSparse {
cluster_column: cluster_column.clone().into(),
});
Expand Down

0 comments on commit 2874bc8

Please sign in to comment.