Skip to content

Commit

Permalink
Fix compialtion on main
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Aug 22, 2024
1 parent beb3d5a commit c7e6b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/expr/src/logical_plan/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ impl LogicalPlanBuilder {
/// Apply a filter which is used for a having clause
pub fn having(self, expr: impl Into<Expr>) -> Result<Self> {
let expr = normalize_col(expr.into(), &self.plan)?;
Filter::try_new_with_having(expr, Arc::new(self.plan))
Filter::try_new_with_having(expr, self.plan)
.map(LogicalPlan::Filter)
.map(Self::from)
}
Expand Down

0 comments on commit c7e6b17

Please sign in to comment.