Hi,
Version 23.1.1.345 on Windows 11
I have been trying to toggle the formatter settings to align CASE and AGGREGATE functions and could use some help.
for example, consider the following statement.
- the first case statement's END is not aligned with CASE.
- the second case statement is okay but the closing parenthesis for MAX is not aligned.
SELECT 'ShowForumIssue' AS text
, CASE
WHEN 'A' = 'A' THEN 'True'
ELSE 'False'
END AS result
, MAX(
CASE
WHEN 'A' = 'A' THEN 'True'
ELSE 'False'
END
) AS max_result
FROM dual;
