Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix
Browse files Browse the repository at this point in the history
adriangb authored and appletreeisyellow committed Jan 31, 2025
1 parent 12483af commit 8814b02
Showing 5 changed files with 427 additions and 124 deletions.
Original file line number Diff line number Diff line change
@@ -2001,7 +2001,7 @@ mod tests {

assert_contains!(
&display,
"pruning_predicate=c1_null_count@2 != c1_row_count@3 AND (c1_min@0 != bar OR bar != c1_max@1)"
"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)"
);

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

0 comments on commit 8814b02

Please sign in to comment.