We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 127c822 commit cc8ae9aCopy full SHA for cc8ae9a
datafusion/datasource-parquet/src/source.rs
@@ -562,7 +562,9 @@ impl FileSource for ParquetSource {
562
// the actual predicates are built in reference to the physical schema of
563
// each file, which we do not have at this point and hence cannot use.
564
// Instead we use the logical schema of the file (the table schema without partition columns).
565
- if let (Some(file_schema), Some(predicate)) = (&self.file_schema, &self.predicate) {
+ if let (Some(file_schema), Some(predicate)) =
566
+ (&self.file_schema, &self.predicate)
567
+ {
568
let predicate_creation_errors = Count::new();
569
if let (Some(pruning_predicate), _) = build_pruning_predicates(
570
Some(predicate),
0 commit comments