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 2020/03/03 14:56:04 UTC

[arrow] branch master updated (de786b7 -> c057bff)

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 de786b7  ARROW-7992: [C++] Fix MSVC warning (#6525)
     add c057bff  ARROW-7890: [C++] Add Future implementation

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt             |   1 +
 cpp/src/arrow/flight/flight_benchmark.cc |   4 +-
 cpp/src/arrow/testing/gtest_util.h       |  13 +
 cpp/src/arrow/util/CMakeLists.txt        |   6 +-
 cpp/src/arrow/util/future.cc             | 298 +++++++++++++
 cpp/src/arrow/util/future.h              | 411 ++++++++++++++++++
 cpp/src/arrow/util/future_iterator.h     |  75 ++++
 cpp/src/arrow/util/future_test.cc        | 714 +++++++++++++++++++++++++++++++
 cpp/src/arrow/util/iterator_test.cc      |  14 -
 cpp/src/arrow/util/memory.cc             |   9 +-
 cpp/src/arrow/util/parallel.h            |  55 +--
 cpp/src/arrow/util/thread_pool.h         |  58 +--
 cpp/src/arrow/util/thread_pool_test.cc   |  21 +-
 cpp/src/parquet/arrow/reader.cc          |   6 +-
 cpp/src/plasma/client.cc                 |   4 +-
 15 files changed, 1578 insertions(+), 111 deletions(-)
 create mode 100644 cpp/src/arrow/util/future.cc
 create mode 100644 cpp/src/arrow/util/future.h
 create mode 100644 cpp/src/arrow/util/future_iterator.h
 create mode 100644 cpp/src/arrow/util/future_test.cc