Updated mergeUnsigned by running "go generate ./tsdb/engine/tsm1".

pull/9278/head
Hans P. Bieker 2018-01-04 19:35:01 +01:00
parent 7a273ccdb5
commit a85306c53e
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ func (k *tsmKeyIterator) mergeUnsigned() {
// we need to dedup as there may be duplicate points now
for i := 1; !dedup && i < len(k.blocks); i++ {
dedup = k.blocks[i].partiallyRead() ||
k.blocks[i].minTime <= k.blocks[i-1].maxTime ||
k.blocks[i].overlapsTimeRange(k.blocks[i-1].minTime, k.blocks[i-1].maxTime) ||
len(k.blocks[i].tombstones) > 0
}