Apply sorting to the plan
(mut self, expressions: Vec<SortExpression>)
| 624 | |
| 625 | /// Apply sorting to the plan |
| 626 | pub fn apply_sort(mut self, expressions: Vec<SortExpression>) -> Self { |
| 627 | self.root = LogicalNode::Sort { |
| 628 | expressions, |
| 629 | input: Box::new(self.root), |
| 630 | }; |
| 631 | self |
| 632 | } |
| 633 | |
| 634 | /// Apply limit to the plan |
| 635 | pub fn apply_limit(mut self, count: usize, offset: Option<usize>) -> Self { |
no outgoing calls
no test coverage detected