From f3ed6ba9057c371fb255c255dd54a3bcdf325c25 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Mon, 9 May 2022 20:41:00 +0800 Subject: [PATCH] refactor:fix error in schemaless --- source/client/src/clientSml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/src/clientSml.c b/source/client/src/clientSml.c index b251827bd1..6f6d32ee39 100644 --- a/source/client/src/clientSml.c +++ b/source/client/src/clientSml.c @@ -1676,7 +1676,7 @@ static int32_t smlInsertData(SSmlHandle* info) { static void smlPrintStatisticInfo(SSmlHandle *info){ uError("SML:0x%"PRIx64" smlInsertLines result, code:%d,lineNum:%d,stable num:%d,ctable num:%d,create stable num:%d \ - parse cost:%"PRIx64",schema cost:%"PRIx64",bind cost:%"PRIx64",rpc cost:%"PRIx64",total cost:%"PRIx64"", info->id, info->cost.code, + parse cost:%"PRId64",schema cost:%"PRId64",bind cost:%"PRId64",rpc cost:%"PRId64",total cost:%"PRId64"", info->id, info->cost.code, info->cost.lineNum, info->cost.numOfSTables, info->cost.numOfCTables, info->cost.numOfCreateSTables, info->cost.schemaTime-info->cost.parseTime, info->cost.insertBindTime-info->cost.schemaTime, info->cost.insertRpcTime-info->cost.insertBindTime, info->cost.endTime-info->cost.insertRpcTime, -- GitLab