Tushar7012 commented on issue #20031: URL: https://github.com/apache/datafusion/issues/20031#issuecomment-3830990990
Great question, @Jeffrey! By "invalid nested async context," I mean situations where we’re invoking an async UDF within another async UDF, which isn't allowed or supported. We could detect this by tracking the depth of nested async calls or using a flag to mark when we're already in an async execution. If we hit an invalid state, we could catch it early and show a clear error instead of letting it result in a less informative internal error. Hope this clears it up! Let me know what you think. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
