Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamGS committed Aug 21, 2024
1 parent 17899b3 commit 9a38d05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vortex-array/src/array/chunked/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ impl ArrayValidity for ChunkedArray {
}

fn logical_validity(&self) -> LogicalValidity {
let validity: Validity = self
let validity = self
.chunks()
.map(|a| a.with_dyn(|arr| arr.logical_validity()))
.collect();
.collect::<Validity>();
validity.to_logical(self.len())
}
}
Expand Down

0 comments on commit 9a38d05

Please sign in to comment.