(ctx context.Context, meta *backend.BlockMeta, req traceql.FetchTagValuesRequest, cb traceql.FetchTagValuesCallback, mcb common.MetricsCallback, opts common.SearchOptions)
| 553 | } |
| 554 | |
| 555 | func (rw *readerWriter) FetchTagValues(ctx context.Context, meta *backend.BlockMeta, req traceql.FetchTagValuesRequest, cb traceql.FetchTagValuesCallback, mcb common.MetricsCallback, opts common.SearchOptions) error { |
| 556 | block, err := encoding.OpenBlock(meta, rw.r) |
| 557 | if err != nil { |
| 558 | return err |
| 559 | } |
| 560 | |
| 561 | rw.cfg.Search.ApplyToOptions(&opts) |
| 562 | return block.FetchTagValues(ctx, req, cb, mcb, opts) |
| 563 | } |
| 564 | |
| 565 | func (rw *readerWriter) FetchTagNames(ctx context.Context, meta *backend.BlockMeta, req traceql.FetchTagsRequest, cb traceql.FetchTagsCallback, mcb common.MetricsCallback, opts common.SearchOptions) error { |
| 566 | block, err := encoding.OpenBlock(meta, rw.r) |
nothing calls this directly
no test coverage detected