diff --git a/datafusion/physical-expr/src/planner.rs b/datafusion/physical-expr/src/planner.rs index fea73ed5da29..c658d568ec52 100644 --- a/datafusion/physical-expr/src/planner.rs +++ b/datafusion/physical-expr/src/planner.rs @@ -108,7 +108,7 @@ pub fn create_physical_expr( ) -> Result> { use datafusion_physical_expr_common::physical_expr::create_physical_expr as create_physical_expr_common; - // Temporary solution, after all the logic is moved to common, we can remove this function + // PR #10074: Temporary solution, after all the logic is moved to common, we can remove this function let res = create_physical_expr_common(e, input_dfschema, execution_props); if res.is_ok() { return res;