Closed
Description
Describe the bug
Arrow-schema of the latest version requires the feature serde
to be explicitly set https://github.com/apache/arrow-rs/blob/54.2.0/arrow-schema/Cargo.toml#L49
This PR #14597 have removed the line
datafusion/datafusion/core/Cargo.toml
Line 77 in 3f900ac
To Reproduce
No response
Expected behavior
Serde feature works in datafusion 46, as it worked in version 45.
Additional context
As a hotfix I added to my project
[dependencies]
arrow-schema = { version = "*", features = ["serde"] }
and everything compiled again.