Skip to content

Commit

Permalink
fixup! TMP: Disable qualified names uniqueness check in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Nov 19, 2024
1 parent 34fda9c commit 59bb26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/optimizer/tests/optimizer_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ fn test_propagate_empty_relation_inner_join_and_unions() {
fn select_wildcard_with_repeated_column() {
let sql = "SELECT *, col_int32 FROM test";
let err = test_sql(sql).expect_err("query should have failed");
assert_eq!(
assert_eq!(
"expand_wildcard_rule\ncaused by\nError during planning: Projections require unique expression names but the expression \"test.col_int32\" at position 0 and \"test.col_int32\" at position 7 have the same name. Consider aliasing (\"AS\") one of them.",
err.strip_backtrace()
);
Expand Down

0 comments on commit 59bb26f

Please sign in to comment.