You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2021/06/07 17:12:02 UTC

[arrow] branch master updated (2820b25 -> 80fe83a)

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

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


    from 2820b25  ARROW-10959: [C++] Add scalar string join kernel
     add 80fe83a  ARROW-11843: [C++] Provide async Parquet reader

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/dataset/file_parquet.cc              |  88 ++++++
 cpp/src/arrow/dataset/file_parquet.h               |   7 +
 cpp/src/arrow/testing/future_util.h                |   7 +
 cpp/src/arrow/util/async_generator.h               |   8 +
 cpp/src/arrow/util/future.h                        |   3 +
 cpp/src/parquet/arrow/arrow_reader_writer_test.cc  |  69 ++++-
 cpp/src/parquet/arrow/reader.cc                    | 127 +++++++-
 cpp/src/parquet/arrow/reader.h                     |  16 +
 cpp/src/parquet/arrow/reader_writer_benchmark.cc   |  41 ++-
 cpp/src/parquet/encryption/test_encryption_util.cc |  24 +-
 cpp/src/parquet/encryption/test_encryption_util.h  |   5 +
 cpp/src/parquet/file_reader.cc                     | 344 +++++++++++++++------
 cpp/src/parquet/file_reader.h                      |  31 +-
 cpp/src/parquet/properties.h                       |   2 +-
 cpp/src/parquet/reader_test.cc                     |  72 +++++
 python/pyarrow/_dataset.pyx                        |   8 +-
 16 files changed, 726 insertions(+), 126 deletions(-)