File tree Expand file tree Collapse file tree
vortex-datafusion/src/persistent Expand file tree Collapse file tree Original file line number Diff line number Diff 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(
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments