amoeba commented on issue #3687:
URL: https://github.com/apache/arrow-adbc/issues/3687#issuecomment-3489383696

   Hi @GeneralPancakeMSTR, this is a case of Rust having a terrible error 
message for an error that's not uncommon.
   
   The issue is that the crate versions you end up with here pull in different 
major versions of some of the arrow crates and, in Rust, types aren't 
compatible across package major versions. The ultimate fix is to get your 
dependency tree in a state where you only have one version of the arrow crates.
   
   This should do it,
   
   ```toml
   [dependencies]
   adbc_core = "0.19.0"
   adbc_datafusion = "0.19.0"
   ```
   
   Can you try that as a test?


-- 
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]

Reply via email to