fix:length error in data block

This commit is contained in:
wangmm0220 2023-01-29 14:08:56 +08:00
parent d96cdff8f3
commit d7e15881f5
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ int rawBlockBindData(SQuery* query, STableMeta* pTableMeta, void* data, SVCreate
tColDataAddValueByDataBlock(pCol, pColSchema->type, pColSchema->bytes, numOfRows, offset, pData);
fields += sizeof(int8_t) + sizeof(int32_t);
pStart += colLength[c];
pStart += htonl(colLength[c]);
}
end: