maedhroz commented on code in PR #3825:
URL: https://github.com/apache/cassandra/pull/3825#discussion_r1927908939
##########
src/java/org/apache/cassandra/index/sai/disk/v1/postings/PostingListRangeIterator.java:
##########
@@ -89,7 +89,7 @@ public PostingListRangeIterator(IndexIdentifier
indexIdentifier,
@Override
protected void performSkipTo(PrimaryKey nextKey)
{
- if (skipToKey != null && skipToKey.compareTo(nextKey) > 0)
+ if (skipToKey != null && skipToKey.compareTo(nextKey, false) > 0)
Review Comment:
Note: This is functionally equivalent to what was here before, as the
default `compareTo()` used to be "non-strict".
--
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]