-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
Core ValidatorUploaded to the Repo and part of the configurationUploaded to the Repo and part of the configurationbugSomething isn't workingSomething isn't working
Description
Here's a simplified example of a real customer case:
declare
cursor c_test(p_increase in integer) is
select e.ename,
d.dname,
e.sal + p_increase as increased_sal
from emp e
join dept d
on emp.deptno = dept.deptno;
begin
null;
end;
/On line 5, a Missing table alias for p_increase warning is reported.
Cursor parameter should be handled the same way as function and procedure parameters, since it is not possible to apply a table alias.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Core ValidatorUploaded to the Repo and part of the configurationUploaded to the Repo and part of the configurationbugSomething isn't workingSomething isn't working