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
The following statement
select a.one, not a.bool_flag and a.something is null as foobar, a.value1 + b.value2 * b.value3 as ciao from sometable as a
gets reformatted as
SELECT a.one , (NOT a.bool_flag) AND a.something IS NULL AS foobar , a.value1 + (b.value2 * b.value3) AS ciao FROM sometable AS a
instead it should be
The text was updated successfully, but these errors were encountered:
Fix indentation of boolean expressions in SELECT's targets
605a9ef
This fixes issue #3.
No branches or pull requests
The following statement
gets reformatted as
instead it should be
The text was updated successfully, but these errors were encountered: