Apply HAVING filter for post-aggregation filtering
(mut self, condition: Expression)
| 551 | |
| 552 | /// Apply HAVING filter for post-aggregation filtering |
| 553 | pub fn apply_having(mut self, condition: Expression) -> Self { |
| 554 | self.root = LogicalNode::Having { |
| 555 | condition, |
| 556 | input: Box::new(self.root), |
| 557 | }; |
| 558 | self |
| 559 | } |
| 560 | |
| 561 | /// Apply projection to the plan |
| 562 | pub fn apply_projection(mut self, expressions: Vec<ProjectExpression>) -> Self { |
no outgoing calls
no test coverage detected