[BUG] 14.0.5 Beautifier Changes Adding Extra Blank Lines

It appears whatever what changed in 14.0.5 related to the beautifier is causing extra lines to be created after OPEN FOR statement. Beautifying the below code will continue to add blank lines after the statement ad nauseam. We have our beautifier set to "Preserve" empty lines. Adjusting this setting to "Merge into one" causes two blank lines to be added after every OPEN FOR statement. Using "Remove" causes one blank line.

Code:
DECLARE
  v_cursor SYS_REFCURSOR;
BEGIN
  OPEN v_cursor FOR
    SELECT 1
      FROM dual;

END;
/
 
Back
Top