VARRAY bug
Status: Alpha
Brought to you by:
altumano
I've noticed there is a bug when PLDOC parses PL/SQL
scripts where the following line occures:
TYPE some_type IS VARRAY(10) OF NUMBER;
what is a type definition. And I found that you need to
modify the PLSQLParser.java file, the subtype_definition
function, and add the following case
case VARRAY:
jj_consume_token(VARRAY);
jj_consume_token(234);
jj_consume_token(UNSIGNED_NUMERIC_LITERAL);
jj_consume_token(235);
jj_consume_token(OF);
base_type = datatype();
break;
Regards,
Roman Zahorbenski
Roman.Zahorbenski@poczta.fm
Logged In: YES
user_id=86901
Actually, PLSQLParser.java is generated from Productions.jj.
There, the missing VARRAY support is even mentioned in comment.
Logged In: YES
user_id=86901
fixed in CVS