[td-225]fix compiler error.

This commit is contained in:
Haojun Liao 2021-04-25 21:58:47 +08:00
parent 68a9a1fc96
commit c9c71a8520
1 changed files with 1 additions and 1 deletions

View File

@ -630,7 +630,7 @@ int32_t tscToSQLCmd(SSqlObj* pSql, struct SSqlInfo* pInfo) {
assert(pCmd->numOfClause == size);
for (int32_t i = pCmd->clauseIndex; i < size; ++i) {
SSqlNode* pSqlNode = taosArrayGetP(pInfo->list, i);
tscTrace("%p start to parse %dth subclause, total:%"PRId64, pSql, i, size);
tscTrace("%p start to parse %dth subclause, total:%"PRIu64, pSql, i, size);
if ((code = validateSqlNode(pSql, pSqlNode, i)) != TSDB_CODE_SUCCESS) {
return code;
}