We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb39f0c commit b22dc2cCopy full SHA for b22dc2c
1 file changed
datafusion/datasource-parquet/src/opener.rs
@@ -533,6 +533,8 @@ impl FilePruner {
533
);
534
Ok(Self {
535
// Initialize the predicate generation to 0 so that the first time we call `should_prune` we actually check the predicate
536
+ // This also means that no pruning will happen unless there is a dynamic filter present.
537
+ // See [`snapshot_generation`] for more info.
538
predicate_generation: 0,
539
predicate,
540
pruning_schema,
0 commit comments