(mut self, order_bys: Vec<PhysicalSortExpr>)
| 353 | } |
| 354 | |
| 355 | pub fn order_by(mut self, order_bys: Vec<PhysicalSortExpr>) -> Self { |
| 356 | self.order_bys = order_bys; |
| 357 | self |
| 358 | } |
| 359 | |
| 360 | pub fn reversed(mut self) -> Self { |
| 361 | self.is_reversed = true; |
no outgoing calls