fix(cache/reader): use int64 max instead of uint

This commit is contained in:
Minglei Jin 2023-11-06 15:34:28 +08:00
parent 31ce6453c2
commit ec908fa4d0
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ int32_t tsdbCacherowsReaderOpen(void* pVnode, int32_t type, void* pTableIdList,
p->type = type;
p->pVnode = pVnode;
p->pTsdb = p->pVnode->pTsdb;
p->info.verRange = (SVersionRange){.minVer = 0, .maxVer = UINT64_MAX};
p->info.verRange = (SVersionRange){.minVer = 0, .maxVer = INT64_MAX};
p->info.suid = suid;
p->numOfCols = numOfCols;
p->pCidList = pCidList;