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

[arrow-rs] branch upgrade-clap updated (d16bec4 -> f87e2f9)

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

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


 discard d16bec4  upgrade clap
     add f80f1be  Refresh readme / contributing guide (#1252)
     add 91d12ec  Add `async` arrow parquet reader (#1154)
     add 397ba66e upgrade clap
     add f87e2f9  arrow-json-integration-test to handle cases

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d16bec4)
            \
             N -- N -- N   refs/heads/upgrade-clap (f87e2f9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/rust.yml                         |  25 +-
 .../src/bin/arrow-json-integration-test.rs         |   3 +
 parquet/CONTRIBUTING.md                            |   5 +
 parquet/Cargo.toml                                 |  12 +-
 parquet/README.md                                  |  30 +-
 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 +-
 20 files changed, 590 insertions(+), 85 deletions(-)
 create mode 100644 parquet/src/arrow/async_reader.rs