Reserves the `AggregateUDF` (e.g. returns the `AggregateUDF` that will generate same result with this `AggregateUDF` when iterated in reverse order, and `None` if there is no such `AggregateUDF`).
(&self)
| 292 | /// generate same result with this `AggregateUDF` when iterated in reverse |
| 293 | /// order, and `None` if there is no such `AggregateUDF`). |
| 294 | pub fn reverse_udf(&self) -> ReversedUDAF { |
| 295 | self.inner.reverse_expr() |
| 296 | } |
| 297 | |
| 298 | /// Returns this aggregate function's simplification hook, if any. |
| 299 | /// |
no test coverage detected