Uses of Class
org.apache.flink.table.runtime.operators.join.HashJoinType
-
Packages that use HashJoinType Package Description org.apache.flink.table.runtime.hashtable org.apache.flink.table.runtime.operators.join -
-
Uses of HashJoinType in org.apache.flink.table.runtime.hashtable
Constructors in org.apache.flink.table.runtime.hashtable with parameters of type HashJoinType Constructor Description BinaryHashTable(Object owner, boolean compressionEnabled, int compressionBlockSize, AbstractRowDataSerializer buildSideSerializer, AbstractRowDataSerializer probeSideSerializer, Projection<org.apache.flink.table.data.RowData,org.apache.flink.table.data.binary.BinaryRowData> buildSideProjection, Projection<org.apache.flink.table.data.RowData,org.apache.flink.table.data.binary.BinaryRowData> probeSideProjection, org.apache.flink.runtime.memory.MemoryManager memManager, long reservedMemorySize, org.apache.flink.runtime.io.disk.iomanager.IOManager ioManager, int avgRecordLen, long buildRowCount, boolean useBloomFilters, HashJoinType type, JoinCondition condFunc, boolean reverseJoin, boolean[] filterNulls, boolean tryDistinctBuildRow) -
Uses of HashJoinType in org.apache.flink.table.runtime.operators.join
Methods in org.apache.flink.table.runtime.operators.join that return HashJoinType Modifier and Type Method Description static HashJoinTypeHashJoinType. of(boolean leftIsBuild, boolean leftOuter, boolean rightOuter)static HashJoinTypeHashJoinType. of(boolean leftIsBuild, boolean leftOuter, boolean rightOuter, boolean isSemi, boolean isAnti)static HashJoinTypeHashJoinType. valueOf(String name)Returns the enum constant of this type with the specified name.static HashJoinType[]HashJoinType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.flink.table.runtime.operators.join with parameters of type HashJoinType Modifier and Type Method Description static HashJoinOperatorHashJoinOperator. newHashJoinOperator(HashJoinType type, boolean leftIsBuild, boolean compressionEnable, int compressionBlockSize, GeneratedJoinCondition condFuncCode, boolean reverseJoinFunction, boolean[] filterNullKeys, GeneratedProjection buildProjectionCode, GeneratedProjection probeProjectionCode, boolean tryDistinctBuildRow, int buildRowSize, long buildRowCount, long probeRowCount, org.apache.flink.table.types.logical.RowType keyType, SortMergeJoinFunction sortMergeJoinFunction)
-