I am using version 7.1, but the problem exits for some time.
The following PL/SQL statement is not correctly beautified:
is beautified into
As you can see the into part of the fetch statement is not aligned. Not to the left and not to right.
I set left align keywords within the DML tab.
Is there anyway I can align this construction correctly? The code should be:
or
The following PL/SQL statement is not correctly beautified:
Code:
begin
open c(p_id);
fetch c into rec;
close c;
end;
Code:
begin
open c(p_id);
fetch c
into rec;
close c;
end;
I set left align keywords within the DML tab.
Is there anyway I can align this construction correctly? The code should be:
Code:
begin
open c(p_id);
fetch c
into rec;
close c;
end;
Code:
begin
open c(p_id);
fetch c
into rec;
close c;
end;