You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/02/02 11:36:53 UTC

[arrow-rs] branch master updated (f80f1be -> 91d12ec)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git.


    from f80f1be  Refresh readme / contributing guide (#1252)
     add 91d12ec  Add `async` arrow parquet reader (#1154)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/rust.yml                |  25 +-
 parquet/Cargo.toml                        |  12 +-
 parquet/src/arrow/array_reader.rs         |  60 ++--
 parquet/src/arrow/arrow_reader.rs         |   4 +-
 parquet/src/arrow/async_reader.rs         | 482 ++++++++++++++++++++++++++++++
 parquet/src/arrow/mod.rs                  |   4 +
 parquet/src/arrow/record_reader.rs        |   2 +-
 parquet/src/arrow/record_reader/buffer.rs |   3 +-
 parquet/src/column/page.rs                |   4 +-
 parquet/src/compression.rs                |   2 +-
 parquet/src/data_type.rs                  |   3 +-
 parquet/src/encodings/decoding.rs         |   2 +-
 parquet/src/file/footer.rs                |  10 +-
 parquet/src/file/mod.rs                   |   2 +-
 parquet/src/file/reader.rs                |  12 +-
 parquet/src/file/serialized_reader.rs     |   4 +-
 parquet/src/util/test_common/page_util.rs |   6 +-
 17 files changed, 579 insertions(+), 58 deletions(-)
 create mode 100644 parquet/src/arrow/async_reader.rs