Returns the ORDER BY expressions for the aggregate function.
(&self)
| 743 | |
| 744 | /// Returns the ORDER BY expressions for the aggregate function. |
| 745 | pub fn order_bys(&self) -> &[PhysicalSortExpr] { |
| 746 | if self.order_sensitivity().is_insensitive() { |
| 747 | &[] |
| 748 | } else { |
| 749 | &self.order_bys |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | /// Indicates whether aggregator can produce the correct result with any |
| 754 | /// arbitrary input ordering. By default, we assume that aggregate expressions |
no test coverage detected