I am using version 7.1, but the problem exits for some time.
The following PL/SQL statement is not correctly beautified:
begin
open c(p_id);
fetch c into rec;
close c;
end;
is beautified into
begin
open c(p_id);
fetch c
into rec;
close c;
end;
As you can see the into part...
In addition: the following construct does not beautify well:
cursor c_avy(b_id in number
,b_startdate in date
,b_enddate in date)
is
select end_date
from availability
where id = b_id
and (b_startdate between start_date and...