[checked on plsqldev 13.0.3]
When I declare a package with overloaded procedure...
..., and I type test_package. and wait for a Code assistant to show up, it shows only one proc_1 and only one proc_2.
Please make it show all available procedures, distinguishing overloads by explicitly shown parameter list (if short enough) or by an overload number (from data dictionary). The test window allows for choosing an overload nicely, why not incorporating it into all editors?
When I declare a package with overloaded procedure...
SQL:
create or replace package test_pkg
is
procedure proc_1(overload_1 in number);
procedure proc_1(overload_2 in varchar2);
procedure proc_1(overload_3 in date);
procedure proc_2(overload_1 in number);
procedure proc_2(overload_2 in varchar2);
procedure proc_2(overload_3 in date);
end test_pkg;
..., and I type test_package. and wait for a Code assistant to show up, it shows only one proc_1 and only one proc_2.
Please make it show all available procedures, distinguishing overloads by explicitly shown parameter list (if short enough) or by an overload number (from data dictionary). The test window allows for choosing an overload nicely, why not incorporating it into all editors?
Last edited: