-
Notifications
You must be signed in to change notification settings - Fork 603
No support for ANY
and ALL
use in WHERE
#936
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
The defining factor might actually be the use of a subquery after |
I think I have a good handle on the issue, can I submit a PR that adds or changes elements to |
Hi @SeanTroyUWO -- a PR would be most helpful I am not totally sure what |
Okay finally getting around to this. The issue is I might break code that depends on the current implementation of |
Seems like the parser only supports the use of
ANY
andALL
inSELECT
, notWHERE
.This form seems to work:
There's a test for it in
tests/sqlparser_common.rs line: 1539
This does not supported:
I'm not sure why this is the case. Please let me know if this is intentional. If not I can create a PR.
The text was updated successfully, but these errors were encountered: