Class MutableNullValueVector
- java.lang.Object
-
- org.apache.pinot.segment.local.realtime.impl.nullvalue.MutableNullValueVector
-
- All Implemented Interfaces:
NullValueVectorReader
public class MutableNullValueVector extends Object implements NullValueVectorReader
Mutable null value vector (for CONSUMING segment).
-
-
Constructor Summary
Constructors Constructor Description MutableNullValueVector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.roaringbitmap.buffer.ImmutableRoaringBitmapgetNullBitmap()booleanisNull(int docId)voidsetNull(int docId)
-
-
-
Method Detail
-
setNull
public void setNull(int docId)
-
isNull
public boolean isNull(int docId)
- Specified by:
isNullin interfaceNullValueVectorReader
-
getNullBitmap
public org.roaringbitmap.buffer.ImmutableRoaringBitmap getNullBitmap()
- Specified by:
getNullBitmapin interfaceNullValueVectorReader
-
-