()
| 183 | } |
| 184 | |
| 185 | func (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 | |
| 199 | func (p Pipeline) extractConditions(req *FetchSpansRequest) { |
| 200 | forceSecondPass := false |
nothing calls this directly
no test coverage detected