Class RowBlock
java.lang.Object
io.trino.spi.block.RowBlock
- All Implemented Interfaces:
Block,ValueBlock
-
Method Summary
Modifier and TypeMethodDescriptioncopyPositions(int[] positions, int offset, int length) Returns a block containing the specified positions.copyRegion(int positionOffset, int length) Returns a block starting at the specified position and extends for the specified length.Returns a block that contains a copy of the contents of the current block, and an appended null at the end.Returns the number of bytes (in terms ofBlock.getSizeInBytes()) required per position that this block contains, assuming that the number of bytes required is a known static quantity and not dependent on any particular specific position.static RowBlockfromFieldBlocks(int positionCount, Block[] fieldBlocks) Create a row block directly from field blocks.static RowBlockfromNotNullSuppressedFieldBlocks(int positionCount, Optional<boolean[]> rowIsNullOptional, Block[] fieldBlocks) Create a row block directly from field blocks that are not null-suppressed.Get the encoding for this block.longgetEstimatedDataSizeForStats(int position) Returns the estimated in memory data size for stats of position.getFieldBlock(int fieldIndex) Returns a fully loaded block that assures all data is in memory.getNulls()Returns a ByteArrayBlock specifying whether the current positions in the Block contain a NULL.Returns the row fields from the specified block with null rows suppressed.intReturns the number of positions in this block.longgetPositionsSizeInBytes(boolean[] positions, int selectedRowPositions) Returns the size of all positions marked true in the positions array.getRegion(int positionOffset, int length) Returns a block starting at the specified position and extends for the specified length.longgetRegionSizeInBytes(int position, int length) Returns the size ofblock.getRegion(position, length).longReturns the retained size of this block in memory, including over-allocations.getRow(int position) getRowFieldsFromBlock(Block block) Returns the row fields from the specified block.getSingleValueBlock(int position) Gets the value at the specified position as a single element block.longReturns the size of this block as if it was compacted, ignoring any over-allocations and any unloaded nested blocks.Returns the underlying value block underlying this block.booleanisLoaded()Returns true if block data is fully loaded into memory.booleanisNull(int position) Is the specified position null?booleanIs it possible the block may have a null value?voidretainedBytesForEachPart(ObjLongConsumer<Object> consumer) consumervisits each of the internal data container and accepts the size for it.toString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface io.trino.spi.block.Block
getPositionsMethods inherited from interface io.trino.spi.block.ValueBlock
getUnderlyingValuePosition
-
Method Details
-
fromFieldBlocks
-
fromNotNullSuppressedFieldBlocks
-
getFieldBlocks
-
getFieldBlock
-
mayHaveNull
public boolean mayHaveNull()Description copied from interface:BlockIs it possible the block may have a null value? If false, the block cannot contain a null, but if true, the block may or may not have a null.- Specified by:
mayHaveNullin interfaceBlock
-
getPositionCount
public int getPositionCount()Description copied from interface:BlockReturns the number of positions in this block.- Specified by:
getPositionCountin interfaceBlock
-
getSizeInBytes
public long getSizeInBytes()Description copied from interface:BlockReturns the size of this block as if it was compacted, ignoring any over-allocations and any unloaded nested blocks. For example, in dictionary blocks, this only counts each dictionary entry once, rather than each time a value is referenced.- Specified by:
getSizeInBytesin interfaceBlock
-
getRetainedSizeInBytes
public long getRetainedSizeInBytes()Description copied from interface:BlockReturns the retained size of this block in memory, including over-allocations. This method is called from the inner most execution loop and must be fast.- Specified by:
getRetainedSizeInBytesin interfaceBlock
-
retainedBytesForEachPart
Description copied from interface:Blockconsumervisits each of the internal data container and accepts the size for it. This method can be helpful in cases such as memory counting for internal data structure. Also, the method should be non-recursive, only visit the elements at the top level, and specifically should not call retainedBytesForEachPart on nested blocksconsumershould be called at least once with the current block and must include the instance size of the current block- Specified by:
retainedBytesForEachPartin interfaceBlock
-
toString
-
isLoaded
-
getLoadedBlock
Description copied from interface:BlockReturns a fully loaded block that assures all data is in memory. Neither the returned block nor any nested block will be aLazyBlock. The same block will be returned if neither the current block nor any nested blocks areLazyBlock,This allows streaming data sources to skip sections that are not accessed in a query.
- Specified by:
getLoadedBlockin interfaceBlock
-
copyWithAppendedNull
Description copied from interface:BlockReturns a block that contains a copy of the contents of the current block, and an appended null at the end. The original block will not be modified. The purpose of this method is to leverage the contents of a block and the structure of the implementation to efficiently produce a copy of the block with a NULL element inserted - so that it can be used as a dictionary. This method is expected to be invoked on completely builtBlockinstances i.e. not on in-progress block builders.- Specified by:
copyWithAppendedNullin interfaceBlock- Specified by:
copyWithAppendedNullin interfaceValueBlock
-
getEncodingName
Description copied from interface:BlockGet the encoding for this block.- Specified by:
getEncodingNamein interfaceBlock
-
copyPositions
Description copied from interface:BlockReturns a block containing the specified positions. Positions to copy are stored in a subarray withinpositionsarray that starts atoffsetand has length oflength. All specified positions must be valid for this block.The returned block must be a compact representation of the original block.
- Specified by:
copyPositionsin interfaceBlock- Specified by:
copyPositionsin interfaceValueBlock
-
getRegion
Description copied from interface:BlockReturns a block starting at the specified position and extends for the specified length. The specified region must be entirely contained within this block.The region can be a view over this block. If this block is released the region block may also be released. If the region block is released this block may also be released.
- Specified by:
getRegionin interfaceBlock- Specified by:
getRegionin interfaceValueBlock
-
fixedSizeInBytesPerPosition
Description copied from interface:BlockReturns the number of bytes (in terms ofBlock.getSizeInBytes()) required per position that this block contains, assuming that the number of bytes required is a known static quantity and not dependent on any particular specific position. This allows for some complex block wrappings to potentially avoid having to callBlock.getPositionsSizeInBytes(boolean[], int)which would require computing the specific positions selected- Specified by:
fixedSizeInBytesPerPositionin interfaceBlock- Returns:
- The size in bytes, per position, if this block type does not require specific position information to compute its size
-
getRegionSizeInBytes
public long getRegionSizeInBytes(int position, int length) Description copied from interface:BlockReturns the size ofblock.getRegion(position, length). The method can be expensive. Do not use it outside an implementation of Block.- Specified by:
getRegionSizeInBytesin interfaceBlock
-
getPositionsSizeInBytes
public long getPositionsSizeInBytes(boolean[] positions, int selectedRowPositions) Description copied from interface:BlockReturns the size of all positions marked true in the positions array. This is equivalent to multiple calls ofblock.getRegionSizeInBytes(position, length)where you mark all positions for the regions first. The 'selectedPositionsCount' variable may be used to skip iterating through the positions array in case this is a fixed-width block- Specified by:
getPositionsSizeInBytesin interfaceBlock
-
copyRegion
Description copied from interface:BlockReturns a block starting at the specified position and extends for the specified length. The specified region must be entirely contained within this block.The region returned must be a compact representation of the original block, unless their internal representation will be exactly the same. This method is useful for operators that hold on to a range of values without holding on to the entire block.
- Specified by:
copyRegionin interfaceBlock- Specified by:
copyRegionin interfaceValueBlock
-
getRow
-
getSingleValueBlock
Description copied from interface:BlockGets the value at the specified position as a single element block. The method must copy the data into a new block.This method is useful for operators that hold on to a single value without holding on to the entire block.
- Specified by:
getSingleValueBlockin interfaceBlock
-
getEstimatedDataSizeForStats
public long getEstimatedDataSizeForStats(int position) Description copied from interface:BlockReturns the estimated in memory data size for stats of position. Do not use it for other purpose.- Specified by:
getEstimatedDataSizeForStatsin interfaceBlock
-
isNull
-
getRowFieldsFromBlock
Returns the row fields from the specified block. The block maybe a LazyBlock, RunLengthEncodedBlock, or DictionaryBlock, but the underlying block must be a RowBlock. The returned field blocks will be the same length as the specified block, which means they are not null suppressed. -
getNullSuppressedRowFieldsFromBlock
Returns the row fields from the specified block with null rows suppressed. The block maybe a LazyBlock, RunLengthEncodedBlock, or DictionaryBlock, but the underlying block must be a RowBlock. The returned field blocks will not be the same length as the specified block if it contains null rows. -
getUnderlyingValueBlock
Description copied from interface:BlockReturns the underlying value block underlying this block.- Specified by:
getUnderlyingValueBlockin interfaceBlock- Specified by:
getUnderlyingValueBlockin interfaceValueBlock
-
getNulls
Description copied from interface:ValueBlockReturns a ByteArrayBlock specifying whether the current positions in the Block contain a NULL. Returns Optional.empty() when there are no NULLs in the Block. The returned ByteArrayBlock must not contain NULL values.- Specified by:
getNullsin interfaceValueBlock
-