Skip to content

Commit 4900b24

Browse files
committed
fix
1 parent 18f14ab commit 4900b24

File tree

2 files changed

+281
-128
lines changed
  • datafusion

2 files changed

+281
-128
lines changed

datafusion/core/src/datasource/physical_plan/parquet/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2009,7 +2009,7 @@ mod tests {
20092009

20102010
assert_contains!(
20112011
&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)"
20132013
);
20142014

20152015
assert_contains!(&display, r#"predicate=c1@0 != bar"#);

0 commit comments

Comments
 (0)