The formatter returns error below when trying to format a pl/sql package that have the word "model" as alias of a table:
14:34:23 INFO line 134, col 23, ending_line 134, ending_col 27,
14:34:23 Found: 'model'
14:34:23 The name of the identifier might conflict with a keyword
14:34:23 End Format Text
To reproduce the problem write the pl/sql below and try to format it:
declare
kk emp.sal%type;
begin
select model.sal
into kk
from emp model
where rownum<2;
end;
WORKAROUND
None
STATUS
Waiting for fix in a future release of SQL Navigator for Oracle