maedhroz commented on code in PR #3645:
URL: https://github.com/apache/cassandra/pull/3645#discussion_r1829783751
##########
src/java/org/apache/cassandra/index/sai/plan/Expression.java:
##########
@@ -275,6 +280,10 @@ public boolean isSatisfiedBy(ByteBuffer columnValue)
if (operator == IndexOperator.EQ || operator ==
IndexOperator.CONTAINS_KEY || operator == IndexOperator.CONTAINS_VALUE)
return cmp == 0;
+ if (operator == IndexOperator.IN)
+ return termMatches(value.raw, lower.value.raw);
+
Review Comment:
nit: extra newline
--
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]