declare
type emp_data is table of emp%rowtype;
emps emp_data;
begin
select *
bulk collect into emps -- causes a "SELECT * should not be used."
from emp;
But in this case using SELECT * is the safer option, it shouldn't generate an issue.
Due to a limitation of the type solver (#108), the easiest fix is just ignore BULK COLLECT in this check for now.
Example:
But in this case using
SELECT *
is the safer option, it shouldn't generate an issue.Due to a limitation of the type solver (#108), the easiest fix is just ignore
BULK COLLECT
in this check for now.