lidavidm commented on issue #2671: URL: https://github.com/apache/arrow-adbc/issues/2671#issuecomment-2777502379
Thanks for filing this. The struggle is that this gets into the weeds of binding- and database-specific functionality. IMO, being able to support UDFs in the SQLite driver would not be too hard...but being able to support *Python* UDFs is another level of complexity. There's also the challenge that ADBC mostly tries to be a generic API and this is very much a non-generic feature. IMO, I wouldn't be against trying to support this, but it's a question of maintainer/contributor availability. I can see two ways: - Maybe we can "steal" the SQLite connection out of the Python standard library object somehow. Then we could provide an API to wrap an existing connection in the ADBC API. - We offer SQLite driver specific UDF functionality and the Python ADBC SQLite package has to use them to implement Python UDFs. -- 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]
