Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump parquet minor version #684

Merged
merged 1 commit into from
Oct 31, 2024
Merged

Commits on Oct 31, 2024

  1. fix: bump parquet minor version

    We met compile error with parquet 53.0. This API was added in 53.1:
    https://github.com/apache/arrow-rs/blob/master/CHANGELOG-old.md#5310-2024-10-02
    ```
    error[E0432]: unresolved import `parquet::file::metadata::ParquetMetaDataReader`
      --> crates/iceberg/src/arrow/reader.rs:38:48
       |
    38 | use parquet::file::metadata::{ParquetMetaData, ParquetMetaDataReader};
       |                                                ^^^^^^^^^^^^^^^^^^^^^
       |                                                |
       |                                                no `ParquetMetaDataReader` in `file::metadata`
       |                                                help: a similar name exists in the module: `ParquetMetaDataWriter`
    
    ```
    
    Signed-off-by: xxchan <[email protected]>
    xxchan committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    a0ee85b View commit details
    Browse the repository at this point in the history