-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Multiple USING statements are not supported #80540
New issue
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
Comments
@alexey-milovidov @GrigoryPervakov any idea? |
Hi @RWiggers, It should work, but I can't reproduce this behaviour with the same version. Could you add any details that could break it? Maybe some custom settings are set for table/user profile/session? It would be cool if you could reproduce this error in https://fiddle.clickhouse.com, especially on the latest version. |
Thank you @GrigoryPervakov for your reply. It's weird, idk why in this fiddle is working and why on the cloud is not.
In my case, any second SELECT *
FROM a
JOIN b USING (id_a)
JOIN c USING (id_b) |
The problem is here: allow_experimental_analyzer = 0. The Analyzer is GA, but we haven't yet updated the whole fleet in Cloud. You can manually set |
Uh oh!
There was an error while loading. Please reload this page.
Hey guys, I'm trying to execute a query that looks like this:
But I'm getting the following error:
So, is this something that’s planned for a future release, or should I just try updating to a newer version?
I also came across this issue — but I’m not sure if it’s the same case. If it is, it seems like something that should have already been fixed, right?
Use case
Trying to execute a query that uses multiple
USING
clauses along withJOIN
Describe the solution you'd like
Be able to execute the query
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: