Merge pull request #22993 from taosdata/feat/TD-26127-audit-sql

revert dependency
This commit is contained in:
wade zhang 2023-09-21 16:38:08 +08:00 committed by GitHub
commit df76257a5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,10 +35,10 @@
if(!tDecodeIsEnd(&decoder)){ \
if(tDecodeI32(&decoder, &pReq->sqlLen) < 0) return -1; \
if(pReq->sqlLen > 0){ \
if (tDecodeBinaryAlloc(&decoder, (void **)&pReq->sql, NULL) < 0) return -1; \
} \
} \
} while (0)
// if (tDecodeBinaryAlloc(&decoder, (void **)&pReq->sql, NULL) < 0) return -1; \
#define ENCODESQL() \
do { \