-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Labels
Description
Describe the bug
While testing the unreleased arrow version with the latest DataFusion, some of the tests begin failing like this when reading some parquet files
Error: ParquetError(ArrowError("Parquet argument error: Parquet error: Required field type_ is missing"))
To Reproduce
See the DataFusion upgrade PR here
To run
cargo test --profile=ci --test core_integration -- path_partition---- sql::path_partition::parquet_distinct_partition_col stdout ----
Error: ParquetError(ArrowError("Parquet argument error: Parquet error: Required field type_ is missing"))
The error appears to come from here:
arrow-rs/parquet/src/file/metadata/thrift/mod.rs
Line 1260 in 5695bb3
| return Err(general_err!("Required field type_ is missing")); |
However, that came in via the thrift remodel in c94698c which has been released.
This PR looks like it could be related:
Expected behavior
Tests should pass
Additional context
*