Code:
-- v15:
SELECT 'test'
,CASE
WHEN 1 = 1 THEN
1
END
,'test'
FROM dual;
-- v16:
SELECT 'test'
, CASE
WHEN 1 = 1 THEN
1
END
,'test'
FROM dual;
v16 adds a space between the "CASE". Is it a feature or a bug?
Now with v16 we see this unnecessary code change whenever we use beautifier (and we use it ALWAYS before deploying)