MCPcopy
hub / github.com/grafana/tempo / bridgeIterator

Struct bridgeIterator

tempodb/encoding/vparquet5/block_traceql.go:1213–1220  ·  view source on GitHub ↗

bridgeIterator creates a bridge between one iterator pass and the next

Source from the content-addressed store, hash-verified

1211
1212// bridgeIterator creates a bridge between one iterator pass and the next
1213type bridgeIterator struct {
1214 iter parquetquery.Iterator
1215 cb traceql.SecondPassFn
1216
1217 nextSpans []*span
1218 nextSpansIdx int
1219 at *parquetquery.IteratorResult
1220}
1221
1222func newBridgeIterator(iter parquetquery.Iterator, cb traceql.SecondPassFn) *bridgeIterator {
1223 return &bridgeIterator{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected