[plsql] Add support for BULK_ROWCOUNT, BULK_EXCEPTIONS

This commit is contained in:
Hugo Araya Nash
2019-05-02 23:31:23 -04:00
parent 9a7136edb8
commit 518db3927b

View File

@ -1541,6 +1541,8 @@ ASTSimpleExpression SimpleExpression() :
| LOOKAHEAD({isKeyword("found")}) KEYWORD("FOUND")
| LOOKAHEAD({isKeyword("notfound")}) KEYWORD("NOTFOUND")
| LOOKAHEAD({isKeyword("rowcount")}) KEYWORD("ROWCOUNT")
| LOOKAHEAD({isKeyword("bulk_rowcount")}) KEYWORD("BULK_ROWCOUNT")
| LOOKAHEAD({isKeyword("bulk_exceptions")}) KEYWORD("BULK_EXCEPTIONS")
) { sb.append('%').append(token.image); }
|
LOOKAHEAD(2)