(underlying iterator)
| 84 | } |
| 85 | |
| 86 | func newIteratorAdapter(underlying iterator) chunkenc.Iterator { |
| 87 | return &iteratorAdapter{ |
| 88 | batchSize: 1, |
| 89 | underlying: underlying, |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | // Seek implements chunkenc.Iterator. |
| 94 | func (a *iteratorAdapter) Seek(t int64) chunkenc.ValueType { |
no outgoing calls