[TD-1870]<enhance>: optimize the memory consumption during interval query.

This commit is contained in:
Haojun Liao 2020-11-02 15:03:02 +08:00
parent 95104645c5
commit 64ab48d7ea
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,8 @@ typedef struct STableCheckInfo {
STable* pTableObj;
SCompInfo* pCompInfo;
int32_t compSize;
int32_t numOfBlocks; // number of qualified data blocks not the original blocks
int32_t chosen; // indicate which iterator should move forward
int32_t numOfBlocks:29; // number of qualified data blocks not the original blocks
int8_t chosen:2; // indicate which iterator should move forward
bool initBuf; // whether to initialize the in-memory skip list iterator or not
SSkipListIterator* iter; // mem buffer skip list iterator
SSkipListIterator* iiter; // imem buffer skip list iterator