Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jdcasale committed May 7, 2024
1 parent e2a453d commit a6e66db
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vortex-array/src/array/chunked/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ impl ChunkedArray<'_> {
let mut children = vec![chunk_ends.into_array_data()];
children.extend(chunks.iter().map(|a| a.to_array_data()));

// NB: this reports whatever stats we can correctly deduce for the top-level logical array
// If we'd prefer not to report stats for non-primitive arrays we can remove this
let merged_stats = chunks
.iter()
.map(|chunk| chunk.statistics().to_set())
Expand Down

0 comments on commit a6e66db

Please sign in to comment.