Package org.apache.drill.exec.vector
Class UntypedNullVector
java.lang.Object
org.apache.drill.exec.vector.BaseValueVector
org.apache.drill.exec.vector.BaseDataValueVector
org.apache.drill.exec.vector.UntypedNullVector
- All Implemented Interfaces:
Closeable,AutoCloseable,Iterable<ValueVector>,FixedWidthVector,ValueVector
UntypedNullVector is to represent a value vector with
TypeProtos.MinorType.NULL
All values in the vector represent two semantic implications: 1) the value is unknown, 2) the type is unknown.
Because of this, we only have to keep track of the number of values in value vector,
and there is no allocated buffer to back up this value vector. Therefore, the majority of
methods in this class is either no-op, or throws UnsupportedOperationException.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionfinal classfinal classUntypedNullVector.Mutator throws Exception for most of its mutate operations, except for the ones that set value counts.Nested classes/interfaces inherited from class org.apache.drill.exec.vector.BaseValueVector
BaseValueVector.BaseAccessor, BaseValueVector.BaseMutator -
Field Summary
FieldsFields inherited from class org.apache.drill.exec.vector.BaseDataValueVector
data, emptyByteArrayFields inherited from class org.apache.drill.exec.vector.BaseValueVector
allocator, field, INITIAL_VALUE_ALLOCATION, MAX_ALLOCATION_SIZEFields inherited from interface org.apache.drill.exec.vector.ValueVector
BITS_VECTOR_NAME, MAX_BUFFER_SIZE, MAX_ROW_COUNT, MIN_ROW_COUNT, OFFSETS_VECTOR_NAME, VALUES_VECTOR_NAME -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidAllocate new buffers.voidallocateNew(int valueCount) Allocate a new memory space for this vector.booleanAllocates new buffers.voidclear()Release the underlying DrillBuf and reset the ValueVector to empty.voidcopyEntry(int toIndex, ValueVector from, int fromIndex) voidcopyFrom(int fromIndex, int thisIndex, UntypedNullVector from) voidcopyFromSafe(int fromIndex, int thisIndex, UntypedNullVector from) Returns anaccessorthat is used to read from this vector instance.intgetBufferSizeFor(int valueCount) Returns the number of bytes that is used by this vector if it holds the given number of values.Returns anmutatorthat is used to write to this vector instance.intgetPayloadByteCount(int valueCount) Return the number of value bytes consumed by actual data.Returns afield readerthat supports reading values from this vector.getTransferPair(String ref, BufferAllocator allocator) getTransferPair(BufferAllocator allocator) Returns atransfer pair, creating a new target vector of the same type.intReturns the maximum number of values that can be stored in this vector instance.intThe width of a record in bytes.voidload(UserBitShared.SerializedField metadata, DrillBuf buffer) Load the data provided in the buffer.Returns a newtransfer pairthat is used to transfer underlying buffers into the target vector.reallocRaw(int newAllocationSize) Core of vector allocation.voidreset()This method has a similar effect of allocateNew() without actually clearing and reallocating the value vector.voidsetInitialCapacity(int valueCount) Set the initial record capacityvoidsplitAndTransferTo(int startIndex, int length, UntypedNullVector target) voidtransferTo(UntypedNullVector target) voidZero out the underlying buffer backing this vector.Methods inherited from class org.apache.drill.exec.vector.BaseDataValueVector
close, collectLedgers, exchange, getAllocatedSize, getBuffer, getBuffers, getBufferSizeMethods inherited from class org.apache.drill.exec.vector.BaseValueVector
checkBufRefs, fillBitsVector, getAllocator, getField, getField, getMetadata, getMetadataBuilder, iterator, toNullable, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, iterator, spliteratorMethods inherited from interface org.apache.drill.exec.vector.ValueVector
close, collectLedgers, exchange, getAllocatedSize, getAllocator, getBuffers, getBufferSize, getField, getMetadata, toNullable
-
Field Details
-
VALUE_WIDTH
public static final int VALUE_WIDTHWidth of each fixed-width value.- See Also:
-
-
Constructor Details
-
UntypedNullVector
-
-
Method Details
-
getReader
Description copied from interface:ValueVectorReturns afield readerthat supports reading values from this vector.- Specified by:
getReaderin interfaceValueVector
-
getBufferSizeFor
public int getBufferSizeFor(int valueCount) Description copied from interface:ValueVectorReturns the number of bytes that is used by this vector if it holds the given number of values. The result will be the same as if Mutator.setValueCount() were called, followed by calling getBufferSize(), but without any of the closing side-effects that setValueCount() implies wrt finishing off the population of a vector. Some operations might wish to use this to determine how much memory has been used by a vector so far, even though it is not finished being populated.- Specified by:
getBufferSizeForin interfaceValueVector- Parameters:
valueCount- the number of values to assume this vector contains- Returns:
- the buffer size if this vector is holding valueCount values
-
getValueCapacity
public int getValueCapacity()Description copied from interface:ValueVectorReturns the maximum number of values that can be stored in this vector instance.- Specified by:
getValueCapacityin interfaceValueVector
-
getAccessor
Description copied from interface:ValueVectorReturns anaccessorthat is used to read from this vector instance.- Specified by:
getAccessorin interfaceValueVector
-
getMutator
Description copied from interface:ValueVectorReturns anmutatorthat is used to write to this vector instance.- Specified by:
getMutatorin interfaceValueVector
-
setInitialCapacity
public void setInitialCapacity(int valueCount) Description copied from interface:ValueVectorSet the initial record capacity- Specified by:
setInitialCapacityin interfaceValueVector- Parameters:
valueCount-
-
allocateNew
public void allocateNew()Description copied from interface:ValueVectorAllocate new buffers. ValueVector implements logic to determine how much to allocate.- Specified by:
allocateNewin interfaceValueVector
-
allocateNewSafe
public boolean allocateNewSafe()Description copied from interface:ValueVectorAllocates new buffers. ValueVector implements logic to determine how much to allocate.- Specified by:
allocateNewSafein interfaceValueVector- Returns:
- Returns true if allocation was successful.
-
allocateNew
public void allocateNew(int valueCount) Description copied from interface:FixedWidthVectorAllocate a new memory space for this vector. Must be called prior to using the ValueVector.- Specified by:
allocateNewin interfaceFixedWidthVector- Parameters:
valueCount- Number of values in the vector.
-
reset
public void reset()Description copied from class:BaseDataValueVectorThis method has a similar effect of allocateNew() without actually clearing and reallocating the value vector. The purpose is to move the value vector to a "mutate" state- Overrides:
resetin classBaseDataValueVector
-
zeroVector
public void zeroVector()Zero out the underlying buffer backing this vector.- Specified by:
zeroVectorin interfaceFixedWidthVector
-
reallocRaw
Description copied from class:BaseDataValueVectorCore of vector allocation. Given a new size (which must be a power of two), allocate the new buffer, copy the current values, and leave the unused parts garbage-filled.- Specified by:
reallocRawin classBaseDataValueVector- Parameters:
newAllocationSize- new buffer size as a power of two- Returns:
- the new buffer
-
getValueWidth
public int getValueWidth()Description copied from interface:FixedWidthVectorThe width of a record in bytes.- Specified by:
getValueWidthin interfaceFixedWidthVector- Returns:
- The width of a record in bytes.
-
getTransferPair
Description copied from interface:ValueVectorReturns atransfer pair, creating a new target vector of the same type.- Specified by:
getTransferPairin interfaceValueVector- Overrides:
getTransferPairin classBaseValueVector
-
getTransferPair
- Specified by:
getTransferPairin interfaceValueVector
-
makeTransferPair
Description copied from interface:ValueVectorReturns a newtransfer pairthat is used to transfer underlying buffers into the target vector.- Specified by:
makeTransferPairin interfaceValueVector
-
transferTo
-
splitAndTransferTo
-
getPayloadByteCount
public int getPayloadByteCount(int valueCount) Description copied from interface:ValueVectorReturn the number of value bytes consumed by actual data.- Specified by:
getPayloadByteCountin interfaceValueVector
-
copyFrom
-
copyFromSafe
-
copyEntry
- Specified by:
copyEntryin interfaceValueVector
-
clear
public void clear()Description copied from interface:ValueVectorRelease the underlying DrillBuf and reset the ValueVector to empty.- Specified by:
clearin interfaceValueVector- Overrides:
clearin classBaseDataValueVector
-