[td-225] fix compiler error on mac.

This commit is contained in:
Haojun Liao 2021-05-26 15:11:37 +08:00
parent 010ac0e84c
commit 9406b3a414
1 changed files with 1 additions and 1 deletions

View File

@ -649,7 +649,7 @@ int32_t tscToSQLCmd(SSqlObj* pSql, struct SSqlInfo* pInfo) {
for (int32_t i = 0; 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, pQueryInfo)) != TSDB_CODE_SUCCESS) {
return code;
}