提交 181c71ee 编写于 作者: S shenglian zhou

(query,insert,other):add subscription to data length

上级 45ed799a
......@@ -2781,6 +2781,7 @@ int tscProcessRetrieveRspFromNode(SSqlObj *pSql) {
tscSetResRawPtr(pRes, pQueryInfo, pRes->dataConverted);
}
int32_t subDataLen = 0;
if (pSql->pSubscription != NULL) {
int32_t numOfCols = pQueryInfo->fieldsInfo.numOfOutput;
......@@ -2799,6 +2800,7 @@ int tscProcessRetrieveRspFromNode(SSqlObj *pSql) {
p += sizeof(TSKEY);
tscUpdateSubscriptionProgress(pSql->pSubscription, uid, key);
}
subDataLen = sizeof(int32_t) + numOfTables * sizeof(STableIdInfo);
}
pRes->row = 0;
......@@ -2806,13 +2808,11 @@ int tscProcessRetrieveRspFromNode(SSqlObj *pSql) {
pRes->completed, pRes->qId);
int32_t numOfCols = pQueryInfo->fieldsInfo.numOfOutput;
int32_t rowBytes = 0;
for (int i = 0; i < numOfCols; ++i) {
SInternalField* internalField = tscFieldInfoGetInternalField(&pQueryInfo->fieldsInfo, i);
rowBytes += internalField->field.bytes;
}
int32_t origSize = rowBytes * pRes->numOfRows;
int32_t compSize = htonl(pRetrieve->compLen) + numOfCols * sizeof(int32_t);
TAOS_FIELD *pField = tscFieldInfoGetField(&pQueryInfo->fieldsInfo, numOfCols - 1);
int16_t offset = tscFieldInfoGetOffset(pQueryInfo, numOfCols - 1);
int32_t rowBytes = offset + pField->bytes;
int32_t origSize = rowBytes * pRes->numOfRows + subDataLen;
int32_t compSize = htonl(pRetrieve->compLen) + numOfCols * sizeof(int32_t) + subDataLen;
int32_t dataLen = (pRetrieve->compressed) ? compSize : origSize;
if (pRetrieve->extend == 1) {
STLV* tlv = (STLV*)(pRetrieve->data + dataLen);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册