Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Sep 18, 2024
1 parent b882fe6 commit 3c363d4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/polars-stream/src/nodes/parquet_source/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,11 @@ impl ParquetSourceNode {

if self.verbose {
eprintln!(
"[ParquetSource]: {:?} columns to be projected from {} files",
self.projected_arrow_schema.as_ref().map(|x| x.len()),
"[ParquetSource]: {} / {} parquet columns to be projected from {} files",
self.projected_arrow_schema
.as_ref()
.map_or(reader_schema.len(), |x| x.len()),
reader_schema.len(),
self.scan_sources.len(),
);
}
Expand Down

0 comments on commit 3c363d4

Please sign in to comment.