Class ObjectNoExactReverseStampKernel
java.lang.Object
com.illumon.iris.db.v2.join.stamp.ObjectNoExactReverseStampKernel
- All Implemented Interfaces:
StampKernel
,Context
,SafeCloseable
,AutoCloseable
-
Method Summary
Modifier and TypeMethodDescriptionvoid
computeRedirections
(Chunk<Attributes.Values> leftStamps, Chunk<Attributes.Values> rightStamps, LongChunk<Attributes.KeyIndices> rightKeyIndices, WritableLongChunk<Attributes.KeyIndices> leftRedirections) Stamps the left-hand-side values with the corresponding right hand side.
-
Method Details
-
computeRedirections
public void computeRedirections(Chunk<Attributes.Values> leftStamps, Chunk<Attributes.Values> rightStamps, LongChunk<Attributes.KeyIndices> rightKeyIndices, WritableLongChunk<Attributes.KeyIndices> leftRedirections) Description copied from interface:StampKernel
Stamps the left-hand-side values with the corresponding right hand side. The rightKeyIndices are parallel to the stamp values in rightStamps; and used to compute a new chunk of redirections parallel to leftStamps.- Specified by:
computeRedirections
in interfaceStampKernel
- Parameters:
leftStamps
- the input lhs stamp valuesrightStamps
- the input rhs stamp valuesrightKeyIndices
- the input rhs stamp indicesleftRedirections
- the resulting redirections from the stamping operation
-