From 0463e82552c32d1fd9aae1727236edc48478b8e2 Mon Sep 17 00:00:00 2001 From: Bruce Ritchie Date: Tue, 25 Feb 2025 19:52:35 +0000 Subject: [PATCH] project_with_validation is no longer public. --- datafusion/expr/src/logical_plan/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/expr/src/logical_plan/builder.rs b/datafusion/expr/src/logical_plan/builder.rs index ac06477ba250..2bb15da21863 100644 --- a/datafusion/expr/src/logical_plan/builder.rs +++ b/datafusion/expr/src/logical_plan/builder.rs @@ -1667,7 +1667,7 @@ pub fn project( /// This function errors under any of the following conditions: /// * Two or more expressions have the same name /// * An invalid expression is used (e.g. a `sort` expression) -pub fn project_with_validation( +fn project_with_validation( plan: LogicalPlan, expr: impl IntoIterator, bool)>, ) -> Result {