rebatchIterator either passes spansets through directly OR rebatches them based on metadata in OtherEntries
| 1284 | // rebatchIterator either passes spansets through directly OR rebatches them based on metadata |
| 1285 | // in OtherEntries |
| 1286 | type rebatchIterator struct { |
| 1287 | iter parquetquery.Iterator |
| 1288 | at *parquetquery.IteratorResult |
| 1289 | nextSpans []*span |
| 1290 | } |
| 1291 | |
| 1292 | func newRebatchIterator(iter parquetquery.Iterator) *rebatchIterator { |
| 1293 | return &rebatchIterator{ |
nothing calls this directly
no outgoing calls
no test coverage detected