Skip to content

Commit

Permalink
Update datafusion/core/tests/simplification.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored Feb 29, 2024
1 parent dd9baa0 commit 10b0a8a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion datafusion/core/tests/simplification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,6 @@ fn test_const_evaluator() {
// (foo != foo) OR (c = 1) --> false OR (c = 1)
test_evaluate(
(lit("foo").not_eq(lit("foo"))).or(col("c").eq(lit(1))),
// lit(false).or(col("c").eq(lit(1))),
col("c").eq(lit(1)),
);
}
Expand Down

0 comments on commit 10b0a8a

Please sign in to comment.