Skip to content

Commit

Permalink
Remove deprecated LogicalPlan::with_new_inputs function (#12285)
Browse files Browse the repository at this point in the history
Deprecated since 35.0.0.
  • Loading branch information
findepi authored Sep 2, 2024
1 parent 447cb02 commit 4838cfb
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions datafusion/expr/src/logical_plan/plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -602,12 +602,6 @@ impl LogicalPlan {
}
}

/// Returns a copy of this `LogicalPlan` with the new inputs
#[deprecated(since = "35.0.0", note = "please use `with_new_exprs` instead")]
pub fn with_new_inputs(&self, inputs: &[LogicalPlan]) -> Result<LogicalPlan> {
self.with_new_exprs(self.expressions(), inputs.to_vec())
}

/// Recomputes schema and type information for this LogicalPlan if needed.
///
/// Some `LogicalPlan`s may need to recompute their schema if the number or
Expand Down

0 comments on commit 4838cfb

Please sign in to comment.