Skip to content

Commit

Permalink
move verbose print
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Oct 15, 2024
1 parent 466986f commit 2c68dc9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions crates/polars-io/src/parquet/read/predicates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,15 @@ pub fn read_this_row_group(
}
}
}
}

if config::verbose() {
if should_read {
eprintln!("parquet row group must be read, statistics not sufficient for predicate.");
} else {
eprintln!("parquet row group can be skipped, the statistics were sufficient to apply the predicate.");
if config::verbose() {
if should_read {
eprintln!(
"parquet row group must be read, statistics not sufficient for predicate."
);
} else {
eprintln!("parquet row group can be skipped, the statistics were sufficient to apply the predicate.");
}
}
}

Expand Down

0 comments on commit 2c68dc9

Please sign in to comment.