alpass163 commented on code in PR #16700:
URL: https://github.com/apache/iotdb/pull/16700#discussion_r2501853370
##########
iotdb-core/relational-grammar/src/main/antlr4/org/apache/iotdb/db/relational/grammar/sql/RelationalSql.g4:
##########
@@ -930,8 +930,9 @@ rowCount
;
queryTerm
- : queryPrimary
#queryTermDefault
- | left=queryTerm operator=(INTERSECT | UNION | EXCEPT) setQuantifier?
right=queryTerm #setOperation
+ : queryPrimary
#queryTermDefault
+ | left=queryTerm operator=INTERSECT setQuantifier? right=queryTerm
#setOperation
+ | left=queryTerm operator=(UNION | EXCEPT) setQuantifier? right=queryTerm
#setOperation
Review Comment:
the priority of Setoperation could be guaranteed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]