File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
datafusion/datasource-parquet/src Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments