Fix build
Signed-off-by: Ganesh Vernekar <ganeshvern@gmail.com>
This commit is contained in:
parent
eb9931e961
commit
59d77ff16d
|
@ -717,12 +717,16 @@ func (p *populateWithDelChunkSeriesIterator) Next() bool {
|
||||||
h histogram.SparseHistogram
|
h histogram.SparseHistogram
|
||||||
)
|
)
|
||||||
if p.currDelIter.ChunkEncoding() == chunkenc.EncSHS {
|
if p.currDelIter.ChunkEncoding() == chunkenc.EncSHS {
|
||||||
|
counterReset := false
|
||||||
|
if hc, ok := p.currChkMeta.Chunk.(*chunkenc.HistoChunk); ok {
|
||||||
|
counterReset = hc.CounterReset()
|
||||||
|
}
|
||||||
t, h = p.currDelIter.AtHistogram()
|
t, h = p.currDelIter.AtHistogram()
|
||||||
p.curr.MinTime = t
|
p.curr.MinTime = t
|
||||||
app.AppendHistogram(t, h.Copy())
|
app.AppendHistogram(t, h.Copy(), counterReset)
|
||||||
for p.currDelIter.Next() {
|
for p.currDelIter.Next() {
|
||||||
t, h = p.currDelIter.AtHistogram()
|
t, h = p.currDelIter.AtHistogram()
|
||||||
app.AppendHistogram(t, h.Copy())
|
app.AppendHistogram(t, h.Copy(), false)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
t, v = p.currDelIter.At()
|
t, v = p.currDelIter.At()
|
||||||
|
|
Loading…
Reference in New Issue