From 6a09e40b4d019ac407d788afcec937a7df21f573 Mon Sep 17 00:00:00 2001 From: dapan1121 <72057773+dapan1121@users.noreply.github.com> Date: Fri, 10 Nov 2023 15:04:29 +0800 Subject: [PATCH] Update ttime.c --- source/common/src/ttime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/ttime.c b/source/common/src/ttime.c index ec2202f299..a701c88a24 100644 --- a/source/common/src/ttime.c +++ b/source/common/src/ttime.c @@ -1905,7 +1905,7 @@ int32_t taosChar2Ts(const char* format, SArray** formats, const char* tsStr, int snprintf(errMsg, errMsgLen, "timestamp format error: %s -> %s", tsStr, format); code = TSDB_CODE_FUNC_TO_TIMESTAMP_FAILED_TS_ERR; } else if (code == -3) { - snprintf(errMsg, errMsgLen, "not supported currently"); + snprintf(errMsg, errMsgLen, "timestamp format not supported"); code = TSDB_CODE_FUNC_TO_TIMESTAMP_FAILED_NOT_SUPPORTED; } return code;