sqlformat-rs
sqlformat-rs copied to clipboard
`EXCEPT` not handled well
A small issue from https://github.com/PRQL/prql/issues/4299
SELECT
table_0.* EXCEPT (profit),
details.* EXCEPT (item_id),
table_0.profit
FROM
table_0
is formatted as
SELECT
table_0.*
EXCEPT
(profit),
details.*
EXCEPT
(item_id),
table_0.profit
FROM
table_0
Would it be reasonable to special-case EXCEPT to be inline?