Skip to content

Commit 23bea07

Browse files
committed
wip
1 parent fdb559d commit 23bea07

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

vortex-array/src/stats/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ pub const PRUNING_STATS: &[Stat] = &[
3838
Stat::Sum,
3939
Stat::NullCount,
4040
Stat::NaNCount,
41+
Stat::UncompressedSizeInBytes,
4142
];
4243

4344
#[derive(

vortex-datafusion/src/persistent/format.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,8 @@ impl FileFormat for VortexFormat {
293293
acc.zip(stats_set).map(|(acc, stats_set)| acc + stats_set)
294294
});
295295

296+
println!("Found total byte size: {:?}", total_byte_size);
297+
296298
// Sum up the total byte size across all the columns.
297299
let total_byte_size = total_byte_size.to_df();
298300

vortex-datafusion/src/persistent/source.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,6 @@ impl FileSource for VortexSource {
197197
.clone()
198198
.vortex_expect("projected_statistics must be set");
199199

200-
println!("Statistics for source: {:?}", statistics);
201-
202200
if self.vortex_predicate.is_some() {
203201
Ok(statistics.to_inexact())
204202
} else {

0 commit comments

Comments
 (0)