use of org.apache.druid.extendedset.intset.ConciseSet in project druid by druid-io.
the class WrappedConciseBitmap method intersection.
@Override
public ImmutableBitmap intersection(ImmutableBitmap otherBitmap) {
WrappedConciseBitmap other = (WrappedConciseBitmap) otherBitmap;
ConciseSet unwrappedOtherBitmap = other.bitmap;
return new WrappedConciseBitmap(bitmap.clone().intersection(unwrappedOtherBitmap));
}
Aggregations