rebatchIterator either passes spansets through directly OR rebatches them based on metadata in OtherEntries
| 1120 | // rebatchIterator either passes spansets through directly OR rebatches them based on metadata |
| 1121 | // in OtherEntries |
| 1122 | type rebatchIterator struct { |
| 1123 | iter parquetquery.Iterator |
| 1124 | at *parquetquery.IteratorResult |
| 1125 | nextSpans []*span |
| 1126 | } |
| 1127 | |
| 1128 | func newRebatchIterator(iter parquetquery.Iterator) *rebatchIterator { |
| 1129 | return &rebatchIterator{ |
nothing calls this directly
no outgoing calls
no test coverage detected