lidavidm opened a new issue, #53: URL: https://github.com/apache/arrow-adbc/issues/53
We don't want to/can't futz with shared libraries when distributing packages. Instead, since drivers have an entrypoint, just expose the entrypoint in Python? e.g. `adbc_driver_sqlite` will bundle the driver and expose `adbc_driver_sqlite._entrypoint(driver_address: int) -> int` ~= `AdbcStatusCode _entrypoint(struct AdbcDriver* driver)`. Then the driver manager can just import the package and call the entrypoint. (There'll need to be some support for this on the C++ side too) That way we can more easily distribute pip-installable packages -- 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]
