fix(tsdb/del): continue committing fileset if more del left
This commit is contained in:
parent
1bce96ea27
commit
7bfb4e0f88
|
@ -189,6 +189,10 @@ static int32_t tsdbCommitTombData(SCommitter2 *committer) {
|
|||
committer->ctx->maxKey = committer->ctx->maxKey + 1;
|
||||
}
|
||||
|
||||
if (record->ekey > committer->ctx->maxKey) {
|
||||
committer->ctx->nextKey = committer->ctx->maxKey;
|
||||
}
|
||||
|
||||
record->skey = TMAX(record->skey, committer->ctx->minKey);
|
||||
record->ekey = TMIN(record->ekey, committer->ctx->maxKey);
|
||||
|
||||
|
|
Loading…
Reference in New Issue