()
| 166 | } |
| 167 | |
| 168 | func (c *mergeIterator) MaxCurrentChunkTime() int64 { |
| 169 | if len(c.h) < 1 { |
| 170 | return -1 |
| 171 | } |
| 172 | |
| 173 | return c.h[0].MaxCurrentChunkTime() |
| 174 | } |
| 175 | |
| 176 | func (c *mergeIterator) Batch() promchunk.Batch { |
| 177 | return c.batches[0] |
nothing calls this directly
no test coverage detected