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
UNION ALL
Would it be possible to add support for UNION ALL? Since it's quite common in sql queries.
here's my gold file, btw the script works well if replacing UNION ALL with UNION:
UNION
SELECT DISTINCT country FROM singer WHERE age > 20 UNION ALL SELECT DISTINCT country FROM singer WHERE age > 20 concert_singer
Here's the exception:
assert toks[idx] == 'select', "'select' not found" AssertionError: 'select' not found
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem:
Would it be possible to add support for
UNION ALL
? Since it's quite common in sql queries.Reproduce:
here's my gold file, btw the script works well if replacing
UNION ALL
withUNION
:Here's the exception:
The text was updated successfully, but these errors were encountered: