fix: more space is required for a row

This commit is contained in:
slzhou 2023-12-20 08:10:45 +08:00
parent 1aa94a8b3d
commit f3847a00c6
1 changed files with 1 additions and 1 deletions

View File

@ -3222,7 +3222,7 @@ _error:
static int32_t saveBlockRowToBuf(STableMergeScanInfo* pInfo, SSDataBlock* pBlock, int32_t rowIdx, int32_t* pPageId, int32_t* pOffset, int32_t* pLength) {
SDiskbasedBuf* pResultBuf = pInfo->tmsSortRowIdInfo.pExtSrcRowsBuf;
int32_t rowBytes = blockDataGetRowSize(pBlock);
int32_t rowBytes = blockDataGetRowSize(pBlock) + taosArrayGetSize(pBlock->pDataBlock);
SFilePage* pFilePage = NULL;