Return the `AggregateUDF` used by this `AggregateFunctionExpr`
(&self)
| 647 | impl AggregateFunctionExpr { |
| 648 | /// Return the `AggregateUDF` used by this `AggregateFunctionExpr` |
| 649 | pub fn fun(&self) -> &AggregateUDF { |
| 650 | &self.fun |
| 651 | } |
| 652 | |
| 653 | /// expressions that are passed to the Accumulator. |
| 654 | /// Single-column aggregations such as `sum` return a single value, others (e.g. `cov`) return many. |
no outgoing calls
no test coverage detected