(ctx context.Context, req traceql.FetchSpansRequest, opts common.SearchOptions)
| 83 | } |
| 84 | |
| 85 | func (c *LocalBlock) Fetch(ctx context.Context, req traceql.FetchSpansRequest, opts common.SearchOptions) (traceql.FetchSpansResponse, error) { |
| 86 | ctx, span := tracer.Start(ctx, "LocalBlock.Fetch") |
| 87 | defer span.End() |
| 88 | return c.BackendBlock.Fetch(ctx, req, opts) |
| 89 | } |
| 90 | |
| 91 | func (c *LocalBlock) FetchSpans(ctx context.Context, req traceql.FetchSpansRequest, opts common.SearchOptions) (traceql.FetchSpansOnlyResponse, error) { |
| 92 | ctx, span := tracer.Start(ctx, "LocalBlock.FetchSpans") |