fix(tsdb/cache): comment mem's early ts block
This commit is contained in:
parent
07424b7a06
commit
529af8d20b
|
@ -2691,12 +2691,14 @@ static int32_t getNextRowFromMem(void *iter, TSDBROW **ppRow, bool *pIgnoreEarli
|
||||||
switch (state->state) {
|
switch (state->state) {
|
||||||
case SMEMNEXTROW_ENTER: {
|
case SMEMNEXTROW_ENTER: {
|
||||||
if (state->pMem != NULL) {
|
if (state->pMem != NULL) {
|
||||||
|
/*
|
||||||
if (state->pMem->maxKey <= state->lastTs) {
|
if (state->pMem->maxKey <= state->lastTs) {
|
||||||
*ppRow = NULL;
|
*ppRow = NULL;
|
||||||
*pIgnoreEarlierTs = true;
|
*pIgnoreEarlierTs = true;
|
||||||
|
|
||||||
TAOS_RETURN(code);
|
TAOS_RETURN(code);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
tsdbTbDataIterOpen(state->pMem, NULL, 1, &state->iter);
|
tsdbTbDataIterOpen(state->pMem, NULL, 1, &state->iter);
|
||||||
|
|
||||||
TSDBROW *pMemRow = tsdbTbDataIterGet(&state->iter);
|
TSDBROW *pMemRow = tsdbTbDataIterGet(&state->iter);
|
||||||
|
|
Loading…
Reference in New Issue