ekaterinadimitrova2 commented on code in PR #3444:
URL: https://github.com/apache/cassandra/pull/3444#discussion_r1696907210
##########
src/antlr/Parser.g:
##########
@@ -1814,6 +1814,7 @@ relation[WhereClause.Builder clauses]
| name=cident '[' key=term ']' type=relationType t=term {
$clauses.add(Relation.mapElement(name, key, type, t)); }
| ids=tupleOfIdentifiers
( K_IN inValue=multiColumnInValues {
$clauses.add(Relation.multiColumn(ids, Operator.IN, inValue)); }
+ | K_NOT K_IN inValue=multiColumnInValues {
$clauses.add(Relation.multiColumn(ids, Operator.NOT_IN, inValue)); }
Review Comment:
Yes, that was the intention but I changed it only on 1807, good catch,
thanks!
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]