ArnavBalyan commented on code in PR #6178:
URL: https://github.com/apache/paimon/pull/6178#discussion_r2315570876


##########
paimon-common/src/main/java/org/apache/paimon/fileindex/rangebitmap/BitSliceIndexBitmap.java:
##########
@@ -153,6 +153,11 @@ public RoaringBitmap32 gte(int code) {
     }
 
     public RoaringBitmap32 topK(int k, @Nullable RoaringBitmap32 foundSet) {
+        return topK(k, foundSet, false);

Review Comment:
   removed



##########
paimon-common/src/main/java/org/apache/paimon/fileindex/rangebitmap/BitSliceIndexBitmap.java:
##########
@@ -153,6 +153,11 @@ public RoaringBitmap32 gte(int code) {
     }
 
     public RoaringBitmap32 topK(int k, @Nullable RoaringBitmap32 foundSet) {
+        return topK(k, foundSet, false);
+    }
+
+    public RoaringBitmap32 topK(
+            int k, @Nullable RoaringBitmap32 foundSet, boolean 
allowDuplicates) {

Review Comment:
   update thanks



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

Reply via email to