| 42 | } |
| 43 | |
| 44 | type prometheusChunkIterator struct { |
| 45 | c chunkenc.Chunk // we need chunk, because FindAtOrAfter needs to start with fresh iterator. |
| 46 | it chunkenc.Iterator |
| 47 | } |
| 48 | |
| 49 | func (p *prometheusChunkIterator) Scan() chunkenc.ValueType { |
| 50 | return p.it.Next() |
nothing calls this directly
no outgoing calls
no test coverage detected