Skip to content

Commit

Permalink
addressed the comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
gatorsmile committed Feb 8, 2016
1 parent 796e725 commit afd1725
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2223,9 +2223,8 @@ setOperator
: KW_UNION KW_ALL -> ^(TOK_UNIONALL)
| KW_UNION KW_DISTINCT? -> ^(TOK_UNIONDISTINCT)
| KW_EXCEPT -> ^(TOK_EXCEPT)
| KW_INTERSECT (all=KW_ALL | distinct=KW_DISTINCT)?
-> {$all == null}? ^(TOK_INTERSECTDISTINCT)
-> ^(TOK_INTERSECTALL)
| KW_INTERSECT KW_ALL -> ^(TOK_INTERSECTALL)
| KW_INTERSECT KW_DISTINCT? -> ^(TOK_INTERSECTDISTINCT)
;
queryStatementExpression[boolean topLevel]
Expand Down

0 comments on commit afd1725

Please sign in to comment.