From 33f4be969a806baced2ce564e1f8cb4954cda4da Mon Sep 17 00:00:00 2001 From: yihaoDeng Date: Mon, 11 Mar 2024 02:43:10 +0000 Subject: [PATCH] Merge branch 'feature/compressData' of https://github.com/taosdata/TDengine into feature/compressData --- source/common/src/tmsg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tmsg.c b/source/common/src/tmsg.c index a66638a9e0..2b024668bb 100644 --- a/source/common/src/tmsg.c +++ b/source/common/src/tmsg.c @@ -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)