Skip to content

Commit 87677a9

Browse files
committed
Correctly set bits to 0 when merge overflows
1 parent 142cd38 commit 87677a9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

solr/core/src/java/org/apache/solr/search/facet/BitmapFrequencyCounter.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,10 @@ public void add(int value) {
6565
bitmap = bitmaps[i] = new RoaringBitmap();
6666
}
6767

68-
if (!bitmap.contains(value)) {
68+
if (!bitmap.checkedRemove(value)) {
6969
bitmap.add(value);
7070
return;
7171
}
72-
73-
bitmap.remove(value);
7472
}
7573

7674
// If we reach this point, the frequency of this value is >= 2^(bitmaps.length)
@@ -234,7 +232,7 @@ public BitmapFrequencyCounter merge(BitmapFrequencyCounter other) {
234232
int freq = 1 << bitmaps.length;
235233

236234
for (int k = 0; k < bitmaps.length; k++) {
237-
if (bitmaps[j].contains(value)) {
235+
if (bitmaps[j].checkedRemove(value)) {
238236
freq += 1 << k;
239237
}
240238
}

0 commit comments

Comments
 (0)