Apply a filter which is used for a having clause
(self, expr: impl Into<Expr>)
| 630 | |
| 631 | /// Apply a filter which is used for a having clause |
| 632 | pub fn having(self, expr: impl Into<Expr>) -> Result<Self> { |
| 633 | let expr = normalize_col(expr.into(), &self.plan)?; |
| 634 | Filter::try_new(expr, self.plan) |
| 635 | .map(LogicalPlan::Filter) |
| 636 | .map(Self::from) |
| 637 | } |
| 638 | |
| 639 | /// Make a builder for a prepare logical plan from the builder's plan |
| 640 | pub fn prepare(self, name: String, fields: Vec<FieldRef>) -> Result<Self> { |
nothing calls this directly
no test coverage detected