Skip to content

Commit

Permalink
[plsql] Fix parsing exception
Browse files Browse the repository at this point in the history
  • Loading branch information
李家奥 authored and 李家奥 committed Apr 19, 2022
1 parent be2618b commit 5958b92
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pmd-plsql/etc/grammar/PldocAST.jjt
Original file line number Diff line number Diff line change
Expand Up @@ -2124,7 +2124,11 @@ void QueryTableExpression() #void :
|
TableCollectionExpression()
|
[ <LATERAL> ] "(" Subquery() [ SubqueryRestrictionClause() ] ")"
LOOKAHEAD(5) "(" [ LOOKAHEAD(2) SchemaName() "." ] TableName() [TableAlias()] ")"
|
LOOKAHEAD(3) [ <LATERAL> ] "(" Subquery() [ SubqueryRestrictionClause() ] ")"
|
LOOKAHEAD(3) "(" JoinClause() ")"
)
}

Expand Down

0 comments on commit 5958b92

Please sign in to comment.