Beautifier - wrong formatting with using clause

MartinF

Member²
Hi,
The beautifier is not formatting correctly in version 14.0.6. It was working correctly in version 14.0.4

Beautifier in 14.0.4

SQL:
begin
    if p_param1 = 1
    then
        open v_cur_select1 for v_select_1
            using 1, 2;
    else
        open v_cur_select1 for v_select_1
            using 3, 4;
    end if;
end;

Beautifier in 14.0.6

SQL:
begin
    if p_param1 = 1
    then
        open v_cur_select1 for v_select_1
            using 1
                 ,2;else
        open v_cur_select1 for v_select_1
            using 3
                 ,4;
    end if;
end;

I know that in version 14.0.5 something changed about the bind variable in the using clause. But as you can see there is now a problem with the "else" clause.

Any help appreciated

Thank

Martin
 
Back
Top