master占位partitionname expr

This commit is contained in:
lucky-sinx
2024-11-19 09:45:28 +00:00
committed by ob-robot
parent bcf23dc3e0
commit 2c2c90dd04
2 changed files with 9 additions and 0 deletions

View File

@ -959,6 +959,11 @@ typedef enum ObItemType
T_FUN_SYS_RB_ITERATE = 2048,
T_FUN_SYS_RB_SELECT = 2049,
T_FUN_TOKENIZE = 2050,
T_FUN_SYS_CALC_SUB_PARTITION_ID = 2051,
T_FUN_SYS_CALC_PARTITION_NAME = 2052,
T_FUN_SYS_CALC_SUB_PARTITION_NAME = 2053,
T_FUN_SYS_CALC_PARTITION_IDX = 2054,
T_FUN_SYS_CALC_SUB_PARTITION_IDX = 2055,
T_MAX_OP = 3000,
//pseudo column, to mark the group iterator id

View File

@ -1299,6 +1299,10 @@ static ObExpr::EvalFunc g_expr_eval_functions[] = {
NULL, // ObExprArrayConcat::eval_array_concat, /* 784 */
NULL, // ObExprArrayDifference::eval_array_difference, /* 785 */
NULL, // ObExprArrayMap::eval_array_first, /* 786 */
NULL, // ObExprCalcPartitionName::get_partition_name, /* 787 */
NULL, // ObExprCalcSubPartitionName::get_sub_partition_name, /* 788 */
NULL, // ObExprCalcPartitionIdx::get_partition_idx, /* 789 */
NULL, // ObExprCalcSubPartitionIdx::get_sub_partition_idx, /* 790 */
};
static ObExpr::EvalBatchFunc g_expr_eval_batch_functions[] = {