Skip to content

Commit cc8ae9a

Browse files
committed
fmt
1 parent 127c822 commit cc8ae9a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datafusion/datasource-parquet/src/source.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,9 @@ impl FileSource for ParquetSource {
562562
// the actual predicates are built in reference to the physical schema of
563563
// each file, which we do not have at this point and hence cannot use.
564564
// 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) {
565+
if let (Some(file_schema), Some(predicate)) =
566+
(&self.file_schema, &self.predicate)
567+
{
566568
let predicate_creation_errors = Count::new();
567569
if let (Some(pruning_predicate), _) = build_pruning_predicates(
568570
Some(predicate),

0 commit comments

Comments
 (0)