()
| 350 | func (Aggregate) __scalarExpression() {} |
| 351 | |
| 352 | func (a Aggregate) impliedType() StaticType { |
| 353 | if a.op == aggregateCount || a.e == nil { |
| 354 | return TypeInt |
| 355 | } |
| 356 | |
| 357 | return a.e.impliedType() |
| 358 | } |
| 359 | |
| 360 | func (a Aggregate) extractConditions(request *FetchSpansRequest) { |
| 361 | request.AllConditions = false |
nothing calls this directly
no test coverage detected