a small bug in the SQL window

deniskeen

Member
Hi!

In the code below the popup menu for table2 doesn't contain items like 'Describe', 'Edit' etc.

begin
for r in (select * from table1) loop
insert into table2 values ('xxx');
end loop;
end;

If I comment the loop the items get visible again

begin
-- for r in (select * from table1) loop
insert into table2 values ('xxx');
-- end loop;
end;

Denis
 
Back
Top