You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create or replace procedure P1(a invarchar)
IS
b varchar(100);
d int;
FUNCTION P2(c invarchar) return integer
is
v1 int;
begindbms_output.put_line('11');
v1 :=1;
return v1;
end P2;
begin
b :='test'||a;
P2(b);
end;
create or replace procedure P2(c invarchar)
is
begindbms_output.put_line('11');
end P2;
I debug procedure P1 and want to step in P2, there may step in outer P2 proc.
What did you expect to happen?
step in inner P2 proc
How can we reproduce it (as minimally and precisely as possible)?
follow 'What happened'
Anything else we need to know?
No response
Cloud
No response
The text was updated successfully, but these errors were encountered:
ODC version
4.2.0
OB version
not related
What happened?
there are procedures as follow:
I debug procedure
P1
and want to step inP2
, there may step in outerP2
proc.What did you expect to happen?
step in inner
P2
procHow can we reproduce it (as minimally and precisely as possible)?
follow 'What happened'
Anything else we need to know?
No response
Cloud
No response
The text was updated successfully, but these errors were encountered: