-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Projections require unique expression names error #9130
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Labels
bug
Something isn't working
Comments
Related: #6543 |
I want to try this one |
Lordworms
added a commit
to Lordworms/arrow-datafusion
that referenced
this issue
Feb 7, 2024
Lordworms
added a commit
to Lordworms/arrow-datafusion
that referenced
this issue
Feb 17, 2024
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Describe the bug
Datafusion failed to execute
select * from (t1 cross join t2) as t cross join t3
with error messageI tested on sqlite3 and it return expected result.
latest commit: 840499f
To Reproduce
create table t1 (a int, b int);
create table t2 (a int, b int);
create table t3 (a int, b int);
insert into t1 values (1, 2);
insert into t2 values (3, 4);
insert into t3 values (5, 6);
select * from (t1 cross join t2) as t cross join t3;
Expected behavior
Return result like sqlite3
Additional context
No response
The text was updated successfully, but these errors were encountered: