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
When formatting CASE WHEN THEN structure THEN and WHEN from different conditions are put to the same line:
CASE WHEN THEN
THEN
WHEN
SELECT CASE WHEN a > 0 THEN 'above' WHEN a < 0 THEN 'below'
I think this is inaccurate and I would expect the following instead:
The text was updated successfully, but these errors were encountered:
Thank you for reporting this issue. I would like to improve this.
From a quick glance, it appears that a quick hack is not sufficient. It may take time to properly address this issue.
The current code is complex and will likely require additional test cases and refactoring first.
Sorry, something went wrong.
sonota88
No branches or pull requests
When formatting
CASE WHEN THEN
structureTHEN
andWHEN
from different conditions are put to the same line:I think this is inaccurate and I would expect the following instead:
The text was updated successfully, but these errors were encountered: