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
CASE
Consider the following SQL query:
SELECT CASE WHEN a < 1 THEN 1 WHEN a < 2 THEN 2 ELSE 3 END;
When parsing the query with 'example', this is the console output:
Parsed successfully! Number of statements: 1 SelectStatement Fields: CASE 3
Only the ELSE case is printed, not the actual case branches. Referencing #113
ELSE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the following SQL query:
When parsing the query with 'example', this is the console output:
Only the
ELSE
case is printed, not the actual case branches.Referencing #113
The text was updated successfully, but these errors were encountered: