Merge pull request from GitHub pr276

This commit is contained in:
Aristoeu
2021-08-16 14:34:36 +08:00
committed by wangzelin.wzl
parent 74cb839ffe
commit 67e7063c4e
9 changed files with 680 additions and 3 deletions

View File

@ -580,7 +580,7 @@ typedef enum ObItemType {
T_FUN_SYS_UTC_DATE = 1594,
T_FUN_SYS_TIME_FORMAT = 1595,
///< @note add new oracle only function type before this line
T_FUN_SYS_CONVERT_TZ = 1596,
T_FUN_SYS_END = 2000,
T_MAX_OP = 3000,

View File

@ -320,6 +320,7 @@ const char* get_type_name(int type)
case T_FUN_SYS_TIME_TO_SEC : return "T_FUN_SYS_TIME_TO_SEC";
case T_FUN_SYS_SEC_TO_TIME : return "T_FUN_SYS_SEC_TO_TIME";
case T_FUN_SYS_INTERVAL : return "T_FUN_SYS_INTERVAL";
case T_FUN_SYS_CONVERT_TZ : return "T_FUN_SYS_CONVERT_TZ";
case T_FUN_UDF : return "T_FUN_UDF";
case T_FUN_SYS_SUBTIME : return "T_FUN_SYS_SUBTIME";
case T_FUN_SYS_SQRT : return "T_FUN_SYS_SQRT";