(ctx context.Context, meta *backend.BlockMeta, req traceql.FetchSpansRequest, opts common.SearchOptions)
| 543 | } |
| 544 | |
| 545 | func (rw *readerWriter) FetchSpans(ctx context.Context, meta *backend.BlockMeta, req traceql.FetchSpansRequest, opts common.SearchOptions) (traceql.FetchSpansOnlyResponse, error) { |
| 546 | block, err := encoding.OpenBlock(meta, rw.r) |
| 547 | if err != nil { |
| 548 | return traceql.FetchSpansOnlyResponse{}, err |
| 549 | } |
| 550 | |
| 551 | rw.cfg.Search.ApplyToOptions(&opts) |
| 552 | return block.FetchSpans(ctx, req, opts) |
| 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) |
nothing calls this directly
no test coverage detected