We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you run a roundtrip test on
SELECT d1.b, d2.c FROM data d1 JOIN data d2 ON CAST(d1.b AS int) = d2.e
you'll got the error Error: Internal("invalid join condition expression").
Error: Internal("invalid join condition expression")
This is due to the lack of support of expressions not in the form AND(f0(...), ..., fk(...)), where fi() is EQ() in the consumer (ref).
AND(f0(...), ..., fk(...))
fi()
EQ()
Support for more arbitrary join condition expressions.
This effort can be incremental. I just wanted to make sure this gets brought up and tracked.
No response
The text was updated successfully, but these errors were encountered:
I wonder if #6135 fixes this?
Sorry, something went wrong.
The new roundtrip tests cover SQL in this issue (except the CAST part). Closing this ticket
CAST
No branches or pull requests
Is your feature request related to a problem or challenge?
If you run a roundtrip test on
you'll got the error
Error: Internal("invalid join condition expression")
.This is due to the lack of support of expressions not in the form
AND(f0(...), ..., fk(...))
, wherefi()
isEQ()
in the consumer (ref).Describe the solution you'd like
Support for more arbitrary join condition expressions.
Describe alternatives you've considered
This effort can be incremental. I just wanted to make sure this gets brought up and tracked.
Additional context
No response
The text was updated successfully, but these errors were encountered: