atris commented on a change in pull request #7566:
URL: https://github.com/apache/pinot/pull/7566#discussion_r727069666



##########
File path: 
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/readers/BitSlicedRangeIndexReader.java
##########
@@ -111,7 +111,7 @@ private ImmutableRoaringBitmap queryRangeBitmap(long min, 
long max, long columnM
     if (Long.compareUnsigned(max, columnMax) < 0) {
       RoaringBitmap lte = rangeBitmap.lte(max);
       if (Long.compareUnsigned(min, 0) > 0) {
-        return rangeBitmap.gte(min, lte).toMutableRoaringBitmap();

Review comment:
       This was an accidental part of the PR -- but I am seeing compilation 
errors here stating that gte() only takes a single parameter. I really wasn't 
fixing anything here, just giving it a dummy parameter to make it compile while 
I investigate this separately. I have reverted this now.




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