-
I have implemented an additional object_store HDFS for using datafusion. After I learnt that deltalake version 0.17..0 is currently working only with datafusion 35.0.0, I am running now into the following error:
Is this caused that the object store is not one of the supported S3, gcp, .. etc? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think you may need to check the version of Rust you are using. IIRC for the |
Beta Was this translation helpful? Give feedback.
I think you may need to check the version of Rust you are using. IIRC for the
impl Trait
syntax to be allowed in a traits return type you must at least be on1.75
and we use that for internal traits. Which of course implies that our rust version bounds are not correct, since this should also be reflected in the MSRV within our cargo.toml files.