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

Method impliedType

pkg/traceql/ast.go:185–197  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

183}
184
185func (p Pipeline) impliedType() StaticType {
186 if len(p.Elements) == 0 {
187 return TypeSpanset
188 }
189
190 finalItem := p.Elements[len(p.Elements)-1]
191 aggregate, ok := finalItem.(Aggregate)
192 if ok {
193 return aggregate.impliedType()
194 }
195
196 return TypeSpanset
197}
198
199func (p Pipeline) extractConditions(req *FetchSpansRequest) {
200 forceSecondPass := false

Callers

nothing calls this directly

Calls 1

impliedTypeMethod · 0.65

Tested by

no test coverage detected