v16 (16.0.3.2156) adds a space after the keyword "OVER". 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)
SQL:
v15
SELECT 1 OVER(ORDER BY 1)
FROM dual;
v16
SELECT 1 OVER (ORDER BY 1)
FROM dual;
Now with v16 we see this unnecessary code change whenever we use beautifier (and we use it ALWAYS before deploying)