[#1005 TBASE-1392]

This commit is contained in:
lihui 2019-12-24 17:43:16 +08:00
parent 56d5493072
commit 25c62de407
1 changed files with 1 additions and 1 deletions

View File

@ -4277,8 +4277,8 @@ static int32_t moveToNextBlock(SQueryRuntimeEnv *pRuntimeEnv, int32_t step, __bl
return DISK_DATA_LOADED;
} else {
pQuery->pos = (step == QUERY_ASC_FORWARD_STEP) ? 0 : pQuery->pBlock[pQuery->slot].numOfPoints - 1;
pQuery->slot = (step == QUERY_ASC_FORWARD_STEP) ? 0 : pQuery->numOfBlocks - 1;
pQuery->pos = (step == QUERY_ASC_FORWARD_STEP) ? 0 : pQuery->pBlock[pQuery->slot].numOfPoints - 1;
}
} else { // next block in the same file
int32_t fid = pQuery->fileId;