Frank Tollenaar
Member
Hi,
Firstly my compliments on a great tool.
The following package generates an ORA-03117 when you either create a test-window calling p1 or when you open the Parameter-node of procedure p1 in the object-browser.
It is caused by the nested pl/sql table type.
Regards,
Frank
Firstly my compliments on a great tool.
The following package generates an ORA-03117 when you either create a test-window calling p1 or when you open the Parameter-node of procedure p1 in the object-browser.
It is caused by the nested pl/sql table type.
Code:
create or replace package tst
as
type t1 is table of varchar2(1) index by pls_integer;
type r2 is record ( t1_tab t1
, field1 varchar2(1)
);
type t2 is table of r2 index by pls_integer;
procedure p1
( p_t2 in out t2
);
end tst;
/
create or replace package body tst
as
procedure p1
( p_t2 in out t2
) is
begin
null;
end p1;
end tst;
/
Frank