Apply limit to the plan
(mut self, count: usize, offset: Option<usize>)
| 633 | |
| 634 | /// Apply limit to the plan |
| 635 | pub fn apply_limit(mut self, count: usize, offset: Option<usize>) -> Self { |
| 636 | self.root = LogicalNode::Limit { |
| 637 | count, |
| 638 | offset, |
| 639 | input: Box::new(self.root), |
| 640 | }; |
| 641 | self |
| 642 | } |
| 643 | |
| 644 | /// Apply union operation |
| 645 | pub fn apply_union(self, right: LogicalPlan, all: bool) -> Self { |
no outgoing calls
no test coverage detected