beautifier with "IN PAIRS OF" in program window

versions:14.0.6.1988
oracle :21c

Code:
create or replace procedure PAIRS_test is
 i_parameter dbms_sql.Varchar2_Table ;
  begin
    for p_name,p_value in PAIRS OF i_parameter loop
      null;
    end loop;
end ;

these code can't identify by beautifier .and in a correct package body,plsql development can't show the left tree.
 
PL/SQL Beautifier support for Oracle21c loop enhancements will be added in the upcoming 15.0 version.
 
Back
Top