placeholder of func decode_trace_id

This commit is contained in:
obdev
2024-02-09 16:33:47 +00:00
committed by ob-robot
parent a87bb0ca23
commit 978db9f70d
2 changed files with 5 additions and 1 deletions

View File

@ -864,6 +864,7 @@ typedef enum ObItemType
T_FUN_SYS_TRANSACTION_ID = 1813,
T_FUN_SYS_INNER_TABLE_OPTION_PRINTER = 1814,
T_FUN_SYS_INNER_TABLE_SEQUENCE_GETTER = 1815,
T_FUN_SYS_DECODE_TRACE_ID = 1816,
T_FUN_SYS_END = 2000,
T_FUN_SYS_ALIGN_DATE4CMP = 2010,

View File

@ -1114,6 +1114,7 @@ static ObExpr::EvalFunc g_expr_eval_functions[] = {
ObExprTransactionId::eval_transaction_id, /* 671 */
NULL, //ObExprInnerTableOptionPrinter::eval_inner_table_option_printer, /* 672 */
NULL, //ObExprInnerTableSequenceGetter::eval_inner_table_sequence_getter, /* 673 */
NULL, //ObExprDecodeTraceId::calc_decode_trace_id_expr, /* 674 */
};
static ObExpr::EvalBatchFunc g_expr_eval_batch_functions[] = {
@ -1246,6 +1247,7 @@ static ObExpr::EvalBatchFunc g_expr_eval_batch_functions[] = {
ObBatchCast::implicit_batch_cast<ObDecimalIntTC, ObUIntTC>, /* 126 */
ObBatchCast::explicit_batch_cast<ObDecimalIntTC, ObNumberTC>, /* 127 */
ObBatchCast::implicit_batch_cast<ObDecimalIntTC, ObNumberTC>, /* 128 */
NULL,//ObExprDecodeTraceId::calc_decode_trace_id_expr_batch, /* 129 */
};
static ObExpr::EvalVectorFunc g_expr_eval_vector_functions[] = {
@ -1359,7 +1361,8 @@ static ObExpr::EvalVectorFunc g_expr_eval_vector_functions[] = {
ObExprExtract::calc_extract_mysql_vector, /* 107 */
ObExprRegexpReplace::eval_regexp_replace_vector, /* 108 */
ObExprInOrNotIn::eval_vector_in_without_row_fallback, /* 109 */
ObExprInOrNotIn::eval_vector_in_without_row /* 110 */
ObExprInOrNotIn::eval_vector_in_without_row, /* 110 */
NULL,//ObExprDecodeTraceId::calc_decode_trace_id_expr_vector /* 111 */
};
REG_SER_FUNC_ARRAY(OB_SFA_SQL_EXPR_EVAL,