fix(query): remove invalid assert.

This commit is contained in:
Haojun Liao 2024-05-16 13:30:34 +08:00
parent 45d78aff8c
commit 4aeb3c5c90
1 changed files with 0 additions and 1 deletions

View File

@ -2224,7 +2224,6 @@ int32_t setQueryResultFromRsp(SReqResultInfo* pResultInfo, const SRetrieveTableR
} else { } else {
pResultInfo->pData = (void*)pRsp->data; pResultInfo->pData = (void*)pRsp->data;
pResultInfo->payloadLen = htonl(pRsp->compLen); pResultInfo->payloadLen = htonl(pRsp->compLen);
ASSERT(pRsp->compLen == pRsp->payloadLen);
} }
// TODO handle the compressed case // TODO handle the compressed case