Code completion doesn't work on package record variables

Here is an example.

I create a package with rowtype record declared.

create or replace package foo is
rec customer%rowtype;
end foo;

create or replace package body foo is
begin
null;
end foo;

Then I try to address rec variable from an anonymous block.

begin
foo.rec.
end;

Expected result: dropdown with field list appears.

Actual: cursor changes to waiting for an instant, list doesn't appear.
 
The Code Assistant does indeed not support this. I have added this to the list of enhancement requests.
 
Back
Top