File tree Expand file tree Collapse file tree
physical-expr/src/expressions Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -224,8 +224,9 @@ fn check_async_udf(body: &Arc<dyn PhysicalExpr>) -> Result<()> {
224224 . downcast_ref :: < ScalarFunctionExpr > ( )
225225 . is_some_and ( |udf| udf. fun ( ) . as_async ( ) . is_some ( ) ) )
226226 } ) ? {
227- // https://github.com/apache/datafusion/issues/22091
228- return plan_err ! ( "Async functions in lambdas aren't supported" ) ;
227+ return plan_err ! (
228+ "Async functions in lambdas aren't supported, see https://github.com/apache/datafusion/issues/22091"
229+ ) ;
229230 }
230231
231232 Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -104,4 +104,4 @@ physical_plan
104104query error
105105select array_transform([1], v -> async_abs(v));
106106----
107- DataFusion error: Error during planning: Async functions in lambdas aren't supported
107+ DataFusion error: Error during planning: Async functions in lambdas aren't supported, see https://github.com/apache/datafusion/issues/22091
You can’t perform that action at this time.
0 commit comments