mirror of
https://github.com/apache/druid.git
synced 2025-02-17 07:25:02 +00:00
parent
a26134575b
commit
b534f7203c
@ -946,9 +946,6 @@ public class IndexMerger
|
||||
}
|
||||
|
||||
MutableBitmap bitset = bitmapSerdeFactory.getBitmapFactory().makeEmptyMutableBitmap();
|
||||
if ((dictId == 0) && (Iterables.getFirst(dimVals, "") == null)) {
|
||||
bitset.or(nullRowsList.get(i));
|
||||
}
|
||||
for (Integer row : CombiningIterable.createSplatted(
|
||||
convertedInverteds,
|
||||
Ordering.<Integer>natural().nullsFirst()
|
||||
@ -958,6 +955,10 @@ public class IndexMerger
|
||||
}
|
||||
}
|
||||
|
||||
if ((dictId == 0) && (Iterables.getFirst(dimVals, "") == null)) {
|
||||
bitset.or(nullRowsList.get(i));
|
||||
}
|
||||
|
||||
writer.write(
|
||||
bitmapSerdeFactory.getBitmapFactory().makeImmutableBitmap(bitset)
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user