Skip to content

Commit b53e3f5

Browse files
committed
save
1 parent 02b12df commit b53e3f5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

datafusion/datasource-parquet/src/page_filter.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ impl<'a> PagesPruningStatistics<'a> {
623623
// before building the pruning predicate
624624
let mut simplifier = PhysicalExprSimplifier::new(pruning_predicate.schema());
625625
let inverted_expr = simplifier.simplify(inverted_expr).unwrap();
626+
dbg!(inverted_expr.clone().to_string());
626627
let inverted_predicate = match PruningPredicate::try_new(
627628
inverted_expr,
628629
pruning_predicate.schema().clone(),
@@ -645,6 +646,8 @@ impl<'a> PagesPruningStatistics<'a> {
645646
}
646647
};
647648

649+
dbg!(inverted_values.clone());
650+
648651
// A page is fully matched if:
649652
// - The normal predicate says it may have matches (partial_matches[i] == true)
650653
// - The inverted predicate says it has NO matches (inverted_values[i] == false)

0 commit comments

Comments
 (0)