You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: datafusion/core/src/datasource/physical_plan/parquet/mod.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2009,7 +2009,7 @@ mod tests {
2009
2009
2010
2010
assert_contains!(
2011
2011
&display,
2012
-
"pruning_predicate=c1_null_count@2 != c1_row_count@3 AND (c1_min@0 != bar OR bar != c1_max@1)"
2012
+
"pruning_predicate=(c1_null_count@2 IS NULL OR c1_row_count@3 IS NULL OR c1_null_count@2 != c1_row_count@3) AND (c1_min@0 IS NULL OR c1_min@0 != bar OR c1_max@1 IS NULL OR bar != c1_max@1)"
0 commit comments