You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2021/03/24 11:50:59 UTC

[arrow] branch master updated (8e43f23 -> 61d7cd3)

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

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


    from 8e43f23  ARROW-11497: [Python] Provide parquet enable compliant nested type flag for python binding
     add 61d7cd3  ARROW-11883: [C++] Add ConcatMap, MergeMap, and an async-reentrant version of Map

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/csv/reader.cc                   |  15 +-
 cpp/src/arrow/testing/future_util.h           |   6 +-
 cpp/src/arrow/testing/gtest_util.cc           |  47 ++
 cpp/src/arrow/testing/gtest_util.h            |  14 +
 cpp/src/arrow/type_fwd.h                      |   6 +
 cpp/src/arrow/util/CMakeLists.txt             |   2 +
 cpp/src/arrow/{result.cc => util/algorithm.h} |  21 +-
 cpp/src/arrow/util/async_generator.h          | 523 ++++++++++++--
 cpp/src/arrow/util/async_generator_test.cc    | 943 ++++++++++++++++++++++++++
 cpp/src/arrow/util/future.h                   |   1 +
 cpp/src/arrow/util/iterator.h                 |  36 +-
 cpp/src/arrow/util/iterator_test.cc           | 631 +----------------
 cpp/src/arrow/util/stl_util_test.cc           |  76 +++
 cpp/src/arrow/util/task_group.h               |   1 +
 cpp/src/arrow/util/test_common.cc             |  67 ++
 cpp/src/arrow/util/test_common.h              |  74 ++
 cpp/src/arrow/util/type_fwd.h                 |   2 -
 cpp/src/arrow/util/vector.h                   |  52 ++
 18 files changed, 1811 insertions(+), 706 deletions(-)
 copy cpp/src/arrow/{result.cc => util/algorithm.h} (71%)
 create mode 100644 cpp/src/arrow/util/async_generator_test.cc
 create mode 100644 cpp/src/arrow/util/test_common.cc
 create mode 100644 cpp/src/arrow/util/test_common.h