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:
|
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
*
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
To Reproduce
See the DataFusion upgrade PR here
object_store0.13.0 datafusion#19728To run
cargo test --profile=ci --test core_integration -- path_partitionThe error appears to come from here:
arrow-rs/parquet/src/file/metadata/thrift/mod.rs
Line 1260 in 5695bb3
However, that came in via the thrift remodel in c94698c which has been released.
This PR looks like it could be related:
StatisticsandSizeStatisticsin Parquet metadata #9008Expected behavior
Tests should pass
Additional context
*