You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by bk...@apache.org on 2021/05/17 14:21:39 UTC

[arrow] branch master updated (e4952e4 -> c783db6)

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

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


    from e4952e4  ARROW-12769: [Python] Fix slicing array with "negative" length (start > stop)
     add c783db6  ARROW-12004: [C++] Result<detail::Empty> is annoying

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/exec/plan_test.cc     |   4 +-
 cpp/src/arrow/csv/reader.cc                 |  25 ++-
 cpp/src/arrow/dataset/file_base.cc          |  10 +-
 cpp/src/arrow/dataset/scanner.cc            |  16 +-
 cpp/src/arrow/filesystem/s3fs.cc            |  14 +-
 cpp/src/arrow/io/memory_test.cc             |   4 +-
 cpp/src/arrow/testing/gtest_util.cc         |   4 +-
 cpp/src/arrow/type_fwd.h                    |   6 +-
 cpp/src/arrow/util/async_generator.h        |  44 ++--
 cpp/src/arrow/util/async_generator_test.cc  |  19 +-
 cpp/src/arrow/util/functional.h             |  32 ++-
 cpp/src/arrow/util/future.cc                |   8 +-
 cpp/src/arrow/util/future.h                 | 304 ++++++++++++++++++++++------
 cpp/src/arrow/util/future_test.cc           |  69 +++----
 cpp/src/arrow/util/thread_pool.cc           |   5 -
 cpp/src/arrow/util/thread_pool.h            |  36 ++--
 cpp/src/arrow/util/thread_pool_benchmark.cc |   6 +-
 cpp/src/arrow/util/thread_pool_test.cc      |  12 +-
 cpp/src/arrow/util/type_fwd.h               |   6 +-
 19 files changed, 405 insertions(+), 219 deletions(-)