Skip to content

Commit

Permalink
Optimize oracle select statement parsing speed
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyingZC committed Sep 26, 2023
1 parent 69b06e6 commit 0b9b36e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ select
;

selectSubquery
: (queryBlock | parenthesisSelectSubquery) ((UNION ALL? | INTERSECT | MINUS) selectSubquery)? orderByClause?
: (queryBlock | parenthesisSelectSubquery) orderByClause? ((UNION ALL? | INTERSECT | MINUS) selectSubquery)*
;

parenthesisSelectSubquery
Expand Down

0 comments on commit 0b9b36e

Please sign in to comment.