fix(query): enable the assert.

This commit is contained in:
Haojun Liao 2024-05-16 19:04:37 +08:00
parent 92b247e5b4
commit 76a296ca52
1 changed files with 1 additions and 1 deletions

View File

@ -2217,7 +2217,7 @@ int32_t setQueryResultFromRsp(SReqResultInfo* pResultInfo, const SRetrieveTableR
int32_t len = tsDecompressString((void*)pRsp->data, htonl(pRsp->compLen), 1, pResultInfo->decompressBuf, payloadLen, int32_t len = tsDecompressString((void*)pRsp->data, htonl(pRsp->compLen), 1, pResultInfo->decompressBuf, payloadLen,
ONE_STAGE_COMP, NULL, 0); ONE_STAGE_COMP, NULL, 0);
// ASSERT(len == payloadLen); ASSERT(len == payloadLen);
pResultInfo->pData = pResultInfo->decompressBuf; pResultInfo->pData = pResultInfo->decompressBuf;
pResultInfo->payloadLen = payloadLen; pResultInfo->payloadLen = payloadLen;