rebatchIterator either passes spansets through directly OR rebatches them based on metadata in OtherEntries
| 1345 | // rebatchIterator either passes spansets through directly OR rebatches them based on metadata |
| 1346 | // in OtherEntries |
| 1347 | type rebatchIterator struct { |
| 1348 | iter parquetquery.Iterator |
| 1349 | at *parquetquery.IteratorResult |
| 1350 | nextSpans []*span |
| 1351 | } |
| 1352 | |
| 1353 | func newRebatchIterator(iter parquetquery.Iterator) *rebatchIterator { |
| 1354 | return &rebatchIterator{ |
nothing calls this directly
no outgoing calls
no test coverage detected