When formatting CASE WHEN THEN structure THEN and WHEN from different conditions are put to the same line:
SELECT
CASE
WHEN a > 0
THEN 'above' WHEN a < 0
THEN 'below'
I think this is inaccurate and I would expect the following instead:
SELECT
CASE
WHEN a > 0 THEN
'above'
WHEN a < 0 THEN
'below'
When formatting
CASE WHEN THENstructureTHENandWHENfrom different conditions are put to the same line:I think this is inaccurate and I would expect the following instead: