Skip to content

Commit

Permalink
Set version when rollup is called with no splits. (#4945)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinmr committed Jun 12, 2020
1 parent da8232e commit 75bc709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posting/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -972,10 +972,10 @@ func (l *List) rollup(readTs uint64, split bool) (*rollupOutput, error) {
}
}

out.newMinTs = maxCommitTs
if split {
// Check if the list (or any of it's parts if it's been previously split) have
// become too big. Split the list if that is the case.
out.newMinTs = maxCommitTs
out.recursiveSplit()
out.removeEmptySplits()
} else {
Expand Down

0 comments on commit 75bc709

Please sign in to comment.