Posted By: andyh Beautifier - Change on FOR loop formatting - 03/25/22 09:15 AM
In 14 I see:

SQL Query
DECLARE
  l_val NUMBER;
BEGIN
  l_val := least(1000
                ,coalesce(2999
                         ,0));
  FOR l_idx IN l_hash .. least(1000
                              ,coalesce(2999
                                       ,0)) LOOP
  
    NULL;
  END LOOP;
END;

in 15 2457 I see:

SQL Query
DECLARE
  l_val NUMBER;
BEGIN
  l_val := least(1000
                ,coalesce(2999
                         ,0));
  FOR l_idx IN l_hash .. least(1000, coalesce(2999, 0)) LOOP
  
    NULL;
  END LOOP;
END;


Attached picture Screenshot 15.png
Attached picture Screenshot 14.png
We'll check it out.
© Allround Automations forums