for v_rec in /* some comments go here
this line causes the problem*/
(select 'broken' col1
from dual) loop
null;
end loop;
The above code will cause PL/SQL dev to hang indefinitely when compiling a package. If you remove the second line of comments it will compile just fine.
It will compile using other tools, TOAD for example or when just running it as a script in SQL Plus.
this line causes the problem*/
(select 'broken' col1
from dual) loop
null;
end loop;
The above code will cause PL/SQL dev to hang indefinitely when compiling a package. If you remove the second line of comments it will compile just fine.
It will compile using other tools, TOAD for example or when just running it as a script in SQL Plus.