JYInMyHeart opened a new issue, #2847: URL: https://github.com/apache/arrow-datafusion/issues/2847
I had customized some execution plan struct. In datafusion 7.1.0 the `ExecutionPlan::exec` method is async so I can directly call some async functions in it when I Implement some methods for `ExecutionPlan`. After upgrade datafusion to 9.0.0 the `ExecutionPlan::exec` becomes sync. So how can I call an async function in `ExecutionPlan::exec` method? I have seen that `SortExec` in datafusion-core use `futures::stream::once` to wrap async calls. But `futures::stream::once` is not public for me. So how can I make it? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org