Placeholder for GIS expr: _ST_GEOHASH and _ST_MAKEPOINT

This commit is contained in:
obdev
2024-02-10 04:16:21 +00:00
committed by ob-robot
parent b75f71181a
commit 053d3c0182
2 changed files with 4 additions and 0 deletions

View File

@ -847,6 +847,8 @@ typedef enum ObItemType
T_FUN_SYS_XML_CONCAT = 1732, T_FUN_SYS_XML_CONCAT = 1732,
T_FUN_SYS_XML_FOREST = 1733, T_FUN_SYS_XML_FOREST = 1733,
T_FUN_SYS_XML_EXISTSNODE = 1734, T_FUN_SYS_XML_EXISTSNODE = 1734,
T_FUN_SYS_PRIV_ST_GEOHASH = 1735,
T_FUN_SYS_PRIV_ST_MAKEPOINT = 1736,
///< @note add new oracle only function type before this line ///< @note add new oracle only function type before this line
T_FUN_SYS_TABLET_AUTOINC_NEXTVAL = 1801, // add only for heap table T_FUN_SYS_TABLET_AUTOINC_NEXTVAL = 1801, // add only for heap table

View File

@ -1120,6 +1120,8 @@ static ObExpr::EvalFunc g_expr_eval_functions[] = {
ObExprIs::json_is_false, /* 676 */ ObExprIs::json_is_false, /* 676 */
NULL, //ObExprCurrentRole::eval_current_role /* 677 */ NULL, //ObExprCurrentRole::eval_current_role /* 677 */
ObExprMod::mod_decimalint, /* 678 */ ObExprMod::mod_decimalint, /* 678 */
NULL, // ObExprPrivSTGeoHash::eval_priv_st_geohash, /* 679 */
NULL, // ObExprPrivSTMakePoint::eval_priv_st_makepoint, /* 680 */
}; };
static ObExpr::EvalBatchFunc g_expr_eval_batch_functions[] = { static ObExpr::EvalBatchFunc g_expr_eval_batch_functions[] = {