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

Struct bridgeIterator

tempodb/encoding/vparquet4/block_traceql.go:1152–1159  ·  view source on GitHub ↗

bridgeIterator creates a bridge between one iterator pass and the next

Source from the content-addressed store, hash-verified

1150
1151// bridgeIterator creates a bridge between one iterator pass and the next
1152type bridgeIterator struct {
1153 iter parquetquery.Iterator
1154 cb traceql.SecondPassFn
1155
1156 nextSpans []*span
1157 nextSpansIdx int
1158 at *parquetquery.IteratorResult
1159}
1160
1161func newBridgeIterator(iter parquetquery.Iterator, cb traceql.SecondPassFn) *bridgeIterator {
1162 return &bridgeIterator{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected