Claus Pedersen
Member³
I have a package function returning a PL/SQL record.
When I right-click and select Test, the test script generated will look like this:
The error lies in line three:
result record;
It should read:
result my_package.my_record;
Please, could this bug be fixed ASAP?
When I right-click and select Test, the test script generated will look like this:
Code:
declare
-- Non-scalar parameters require additional processing
result record;
begin
-- Call the function
result := my_package.my_function(param1 => :param1,
param2 => :param2);
end;
result record;
It should read:
result my_package.my_record;
Please, could this bug be fixed ASAP?