Merge pull request #24173 from taosdata/fix/TD-27974

fix(tsdb/cache): plus 1 to nCols to load stt data
This commit is contained in:
Hongze Cheng 2023-12-22 09:43:20 +08:00 committed by GitHub
commit 46211258b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1875,7 +1875,7 @@ static int32_t lastIterOpen(SFSLastIter *iter, STFileSet *pFileSet, STsdb *pTsdb
.backward = 1,
.pSttFileBlockIterArray = pr->pLDataIterArray,
.pCols = aCols,
.numOfCols = nCols,
.numOfCols = nCols + 1,
.loadTombFn = loadSttTomb,
.pReader = pr,
.idstr = pr->idstr,