xvade commented on code in PR #3301:
URL: https://github.com/apache/cassandra/pull/3301#discussion_r1610574697


##########
src/antlr/Parser.g:
##########
@@ -1768,6 +1780,8 @@ relationType returns [Operator op]
 
 relation[WhereClause.Builder clauses]
     : name=cident type=relationType t=term { 
$clauses.add(Relation.singleColumn(name, type, t)); }
+    | name=cident K_BETWEEN betweenValues=singleColumnBetweenValues

Review Comment:
   I've tried getting rid of `singleColumnBetweenValues` a few different ways, 
including what you suggested verbatim and nothing has worked. It keeps giving 
me `error: incompatible types: Raw cannot be converted to Literal`. I'm keeping 
the working code for now, if you say this is important, I'll keep looking for a 
way.



-- 
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]

Reply via email to