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

Struct commonIterator

tempodb/encoding/vparquet4/wal_block.go:1037–1041  ·  view source on GitHub ↗

commonIterator implements common.Iterator. it is returned from the AppendFile and is meant to be passed to a CreateBlock

Source from the content-addressed store, hash-verified

1035// commonIterator implements common.Iterator. it is returned from the AppendFile and is meant
1036// to be passed to a CreateBlock
1037type commonIterator struct {
1038 meta *backend.BlockMeta
1039 iter *MultiBlockIterator[parquet.Row]
1040 schema *parquet.Schema
1041}
1042
1043func newCommonIterator(meta *backend.BlockMeta, iter *MultiBlockIterator[parquet.Row], schema *parquet.Schema) *commonIterator {
1044 return &commonIterator{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected