Merge branch 'feature/compressData' of https://github.com/taosdata/TDengine into feature/compressData

This commit is contained in:
yihaoDeng 2024-03-11 02:43:10 +00:00
parent 193c9e7aa7
commit 33f4be969a
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
#define ENCODESQL() \
do { \
if (tEncodeI32(&encoder, pReq->sqlLen) < 0) return -1; \
if (pReq->sqlLen > 0) { \
if (pReq->sqlLen > 0) { \
if (tEncodeBinary(&encoder, pReq->sql, pReq->sqlLen) < 0) return -1; \
} \
} while (0)