This commit is contained in:
Hongze Cheng 2022-09-29 13:23:12 +08:00
parent f12449b1b8
commit 768ec8942a
1 changed files with 2 additions and 1 deletions

View File

@ -668,7 +668,8 @@ static int32_t tsdbCommitSttBlk(SDataFWriter *pWriter, SDiskDataBuilder *pBuilde
.minKey = pBlkInfo->minKey, .minKey = pBlkInfo->minKey,
.maxKey = pBlkInfo->maxKey, .maxKey = pBlkInfo->maxKey,
.minVer = pBlkInfo->minVer, .minVer = pBlkInfo->minVer,
.maxVer = pBlkInfo->maxVer}; .maxVer = pBlkInfo->maxVer,
.nRow = pBuilder->nRow};
// write // write
code = tsdbWriteDiskData(pWriter, pDiskData, &sttBlk.bInfo, NULL); code = tsdbWriteDiskData(pWriter, pDiskData, &sttBlk.bInfo, NULL);
TSDB_CHECK_CODE(code, lino, _exit); TSDB_CHECK_CODE(code, lino, _exit);