eitsupi commented on issue #3687: URL: https://github.com/apache/arrow-adbc/issues/3687#issuecomment-3491346670
Separating adbc_datafusion from this repository (so that it can be synchronized with DataFusion releases) certainly seems like the clearest solution. Until then, unfortunately, it may be necessary to explicitly state in the documentation that we need to remove the newer arrow-array and arrow-schema from the lock file using a command like the following. ```sh $ cargo add adbc_core adbc_datafusion $ cargo update -p [email protected] -p [email protected] --precise 55.2.0 ``` Currently, the other drivers in this repository besides adbc_datafusion don't depend on a specific Arrow version, so we can edit the lock file to pin it to a particular arrow version. -- 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]
