fix(tsdb): return if get data.

This commit is contained in:
Haojun Liao 2024-08-20 09:14:50 +08:00
parent a760ede4ae
commit 051763e71f
1 changed files with 2 additions and 0 deletions

View File

@ -1807,9 +1807,11 @@ static int32_t nextRowFromSttBlocks(SSttBlockReader* pSttBlockReader, STableBloc
if (!hasBeenDropped(pScanInfo->delSkyline, &pScanInfo->sttBlockDelIndex, key, ver, order, pVerRange,
pSttBlockReader->numOfPks > 0)) {
pScanInfo->sttKeyInfo.status = STT_FILE_HAS_DATA;
return code;
}
} else {
pScanInfo->sttKeyInfo.status = STT_FILE_HAS_DATA;
return code;
}
}