From 117107ee26af66aa7dbecc32fc6ffdc9a5e691ac Mon Sep 17 00:00:00 2001 From: obdev Date: Wed, 18 Sep 2024 09:08:17 +0000 Subject: [PATCH] placeholder for rb_select --- src/objit/include/objit/common/ob_item_type.h | 1 + src/sql/engine/expr/ob_expr_eval_functions.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/objit/include/objit/common/ob_item_type.h b/src/objit/include/objit/common/ob_item_type.h index f2cb242c7..0633ab518 100644 --- a/src/objit/include/objit/common/ob_item_type.h +++ b/src/objit/include/objit/common/ob_item_type.h @@ -936,6 +936,7 @@ typedef enum ObItemType T_FUN_SYS_RB_TO_STRING = 2046, T_FUN_SYS_RB_FROM_STRING = 2047, T_FUN_SYS_RB_ITERATE = 2048, + T_FUN_SYS_RB_SELECT = 2049, T_MAX_OP = 3000, //pseudo column, to mark the group iterator id diff --git a/src/sql/engine/expr/ob_expr_eval_functions.cpp b/src/sql/engine/expr/ob_expr_eval_functions.cpp index 4a04dd1ee..6bf73c952 100644 --- a/src/sql/engine/expr/ob_expr_eval_functions.cpp +++ b/src/sql/engine/expr/ob_expr_eval_functions.cpp @@ -1259,6 +1259,7 @@ static ObExpr::EvalFunc g_expr_eval_functions[] = { ObExprArrayContains::eval_array_contains_ObString, /* 753 */ ObExprArrayContains::eval_array_contains_array, /* 754 */ ObExprSplitPart::calc_split_part_expr, /* 755 */ + NULL, // ObExprRbSelect::eval_rb_select, /* 756 */ }; static ObExpr::EvalBatchFunc g_expr_eval_batch_functions[] = {