maedhroz commented on code in PR #3825:
URL: https://github.com/apache/cassandra/pull/3825#discussion_r1927909279
##########
src/java/org/apache/cassandra/index/sai/iterators/KeyRangeIntersectionIterator.java:
##########
@@ -95,7 +95,7 @@ protected PrimaryKey computeNext()
// We use strict comparison here, since it orders WIDE
primary keys after STATIC primary keys
// in the same partition. When WIDE keys are present, we
want to return them rather than STATIC
// keys to avoid retrieving and post-filtering entire
partitions.
- if (nextKey == null || nextKey.compareToStrict(highestKey)
> 0)
+ if (nextKey == null || nextKey.compareTo(highestKey, true)
> 0)
Review Comment:
should be equivalent to pre-patch
--
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]