Skip to content

Commit

Permalink
add ticket reference
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Mar 5, 2025
1 parent b59da14 commit 7db17a4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions datafusion/core/tests/expr_api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ async fn test_create_physical_expr_coercion() {
create_expr_test(col("i").eq(lit("202410")), "CAST(i@1 AS Utf8) = 202410");
create_expr_test(lit("202410").eq(col("i")), "202410 = CAST(i@1 AS Utf8)");
// however, when simplified the casts on i should removed
// https://github.com/apache/datafusion/issues/14944
create_simplified_expr_test(col("i").eq(lit("202410")), "CAST(i@1 AS Utf8) = 202410");
create_simplified_expr_test(lit("202410").eq(col("i")), "CAST(i@1 AS Utf8) = 202410");
}
Expand Down

0 comments on commit 7db17a4

Please sign in to comment.