Apply DISTINCT to remove duplicates
(mut self)
| 616 | |
| 617 | /// Apply DISTINCT to remove duplicates |
| 618 | pub fn apply_distinct(mut self) -> Self { |
| 619 | self.root = LogicalNode::Distinct { |
| 620 | input: Box::new(self.root), |
| 621 | }; |
| 622 | self |
| 623 | } |
| 624 | |
| 625 | /// Apply sorting to the plan |
| 626 | pub fn apply_sort(mut self, expressions: Vec<SortExpression>) -> Self { |
no outgoing calls
no test coverage detected