My SELECT and FROM do line up, just to the right :)
Anyway, I'm just bringing attention to this - if it was an unintentional change then maybe it is worth looking into what other unintentional changes there could be.
v16 (16.0.3.2156) adds a space after the keyword "OVER". Is it a feature or a bug?
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)
Open .sql file > Change Window to Program Window.
On the left side there is a window with procedures and functions etc.
I scroll up and down, move the cursor here and there and the procedure/function window loses focus.
It just highlights a completely different item, not where the cursor is...
-- 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...
I'm running an SQL.
While waiting, switching to another Tab that was opened before from Tools > Compile Invalid Objects. And clicking on the icon "Refresh object list".
PLSQL Developer becomes not responding.
It could at least do nothing (ignore my clicking on the icon) when the session is busy.
If a file has been changed by some other process while open in Developer, there is a dialogue:
Confirm
timestamp has changed.
Reload?
Yes/No/Differences...
Could you add an option (a button) to reload all files at once so we don't have to click Yes on a dialogue about every file.
Because when...
Yup, same here. I'm using the dark mode and the interface is VERY SLOW. Including the ALT+F.
Setting the Light style to None and restart helped a little bit. But anyway, if Dark mode is available it should perform normally.