| 包 | 描述 |
|---|---|
| ai.rapids.cudf |
| 修饰符和类型 | 方法和描述 |
|---|---|
GatherMap[] |
Table.conditionalFullJoinGatherMaps(Table rightTable, CompiledExpression condition)计算当条件表达式为真时,可用于实现两个表之间全连接结果的收集映射。
|
GatherMap[] |
Table.conditionalInnerJoinGatherMaps(Table rightTable, CompiledExpression condition)计算当条件表达式为真时,可用于实现两个表之间内连接结果的收集映射。
|
GatherMap[] |
Table.conditionalInnerJoinGatherMaps(Table rightTable, CompiledExpression condition, long outputRowCount)计算当条件表达式为真时,可用于实现两个表之间内连接结果的收集映射。
|
GatherMap |
Table.conditionalLeftAntiJoinGatherMap(Table rightTable, CompiledExpression condition)计算当条件表达式为真时,可用于实现两个表之间左反连接结果的收集映射。
|
GatherMap |
Table.conditionalLeftAntiJoinGatherMap(Table rightTable, CompiledExpression condition, long outputRowCount)计算当条件表达式为真时,可用于实现两个表之间左反连接结果的收集映射。
|
GatherMap[] |
Table.conditionalLeftJoinGatherMaps(Table rightTable, CompiledExpression condition)计算当条件表达式为真时,可用于实现两个表之间左连接结果的收集映射。
|
GatherMap[] |
Table.conditionalLeftJoinGatherMaps(Table rightTable, CompiledExpression condition, long outputRowCount)计算当条件表达式为真时,可用于实现两个表之间左连接结果的收集映射。
|
GatherMap |
Table.conditionalLeftSemiJoinGatherMap(Table rightTable, CompiledExpression condition)计算当条件表达式为真时,可用于实现两个表之间左半连接结果的收集映射。
|
GatherMap |
Table.conditionalLeftSemiJoinGatherMap(Table rightTable, CompiledExpression condition, long outputRowCount)计算当条件表达式为真时,可用于实现两个表之间左半连接结果的收集映射。
|
GatherMap[] |
Table.fullJoinGatherMaps(HashJoin rightHash)计算可用于实现两个表之间等值全连接结果的收集映射。
|
GatherMap[] |
Table.fullJoinGatherMaps(HashJoin rightHash, long outputRowCount)计算可用于实现两个表之间等值全连接结果的收集映射。
|
GatherMap[] |
Table.fullJoinGatherMaps(Table rightKeys, boolean compareNullsEqual)计算可用于实现两个表之间等值全连接结果的收集映射。
|
GatherMap[] |
Table.innerDistinctJoinGatherMaps(Table rightKeys, boolean compareNullsEqual)计算可用于实现两个表之间等值内连接结果的收集映射,其中保证右表不包含任何重复的连接键。
|
GatherMap[] |
Table.innerJoinGatherMaps(HashJoin rightHash)计算可用于实现两个表之间等值内连接结果的收集映射。
|
GatherMap[] |
Table.innerJoinGatherMaps(HashJoin rightHash, long outputRowCount)计算可用于实现两个表之间等值内连接结果的收集映射。
|
GatherMap[] |
Table.innerJoinGatherMaps(Table rightKeys, boolean compareNullsEqual)计算可用于实现两个表之间等值内连接结果的收集映射。
|
GatherMap |
Table.leftAntiJoinGatherMap(Table rightKeys, boolean compareNullsEqual)计算可用于实现两个表之间左反连接结果的收集映射。
|
GatherMap |
Table.leftDistinctJoinGatherMap(Table rightKeys, boolean compareNullsEqual)计算可用于实现两个表之间等值左连接结果的收集映射,其中保证右表不包含任何重复的连接键。
|
GatherMap[] |
Table.leftJoinGatherMaps(HashJoin rightHash)计算可用于实现两个表之间等值左连接结果的收集映射。
|
GatherMap[] |
Table.leftJoinGatherMaps(HashJoin rightHash, long outputRowCount)计算可用于实现两个表之间等值左连接结果的收集映射。
|
GatherMap[] |
Table.leftJoinGatherMaps(Table rightKeys, boolean compareNullsEqual)计算可用于实现两个表之间等值左连接结果的收集映射。
|
GatherMap |
Table.leftSemiJoinGatherMap(Table rightKeys, boolean compareNullsEqual)计算可用于实现两个表之间左半连接结果的收集映射。
|
static GatherMap[] |
Table.mixedFullJoinGatherMaps(Table leftKeys, Table rightKeys, Table leftConditional, Table rightConditional, CompiledExpression condition, NullEquality nullEquality)计算可用于实现两个表之间使用等值条件和不等值条件混合进行全连接结果的收集映射。
|
static GatherMap[] |
Table.mixedInnerJoinGatherMaps(Table leftKeys, Table rightKeys, Table leftConditional, Table rightConditional, CompiledExpression condition, NullEquality nullEquality)计算可用于实现两个表之间使用等值条件和不等值条件混合进行内连接结果的收集映射。
|
static GatherMap[] |
Table.mixedInnerJoinGatherMaps(Table leftKeys, Table rightKeys, Table leftConditional, Table rightConditional, CompiledExpression condition, NullEquality nullEquality, MixedJoinSize joinSize)计算可用于实现两个表之间使用等值条件和不等值条件混合进行内连接结果的收集映射。
|
static GatherMap |
Table.mixedLeftAntiJoinGatherMap(Table leftKeys, Table rightKeys, Table leftConditional, Table rightConditional, CompiledExpression condition, NullEquality nullEquality)计算可用于实现两个表之间使用等值条件和不等值条件混合进行左反连接结果的收集映射。
|
static GatherMap[] |
Table.mixedLeftJoinGatherMaps(Table leftKeys, Table rightKeys, Table leftConditional, Table rightConditional, CompiledExpression condition, NullEquality nullEquality)计算可用于实现两个表之间使用等值条件和不等值条件混合进行左连接结果的收集映射。
|
static GatherMap[] |
Table.mixedLeftJoinGatherMaps(Table leftKeys, Table rightKeys, Table leftConditional, Table rightConditional, CompiledExpression condition, NullEquality nullEquality, MixedJoinSize joinSize)计算可用于实现两个表之间使用等值条件和不等值条件混合进行左连接结果的收集映射。
|
static GatherMap |
Table.mixedLeftSemiJoinGatherMap(Table leftKeys, Table rightKeys, Table leftConditional, Table rightConditional, CompiledExpression condition, NullEquality nullEquality)计算可用于实现两个表之间使用等值条件和不等值条件混合进行左半连接结果的收集映射。
|
版权所有 © 2025。保留所有权利。