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/07/09 19:40:33 UTC

[arrow] branch master updated (557a7c6 -> b172284)

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 557a7c6  ARROW-13169: [C++][Compute] Fix array offset support in GrouperFastImpl
     add b172284  ARROW-13238: [C++][Compute][Dataset] Use an ExecPlan for dataset scans

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/exec.cc              |   5 +-
 cpp/src/arrow/compute/exec.h               |   6 +
 cpp/src/arrow/compute/exec/exec_plan.cc    | 242 ++++++++-------
 cpp/src/arrow/compute/exec/exec_plan.h     |  41 +--
 cpp/src/arrow/compute/exec/plan_test.cc    |  77 +++--
 cpp/src/arrow/compute/exec/test_util.cc    |  11 +-
 cpp/src/arrow/compute/exec_test.cc         |   2 +-
 cpp/src/arrow/dataset/file_parquet_test.cc |  10 +-
 cpp/src/arrow/dataset/scanner.cc           | 467 +++++++++++++++--------------
 cpp/src/arrow/dataset/scanner_test.cc      | 165 +++-------
 cpp/src/arrow/testing/future_util.h        |  34 ++-
 cpp/src/arrow/testing/matchers.h           | 137 ++++++---
 cpp/src/arrow/util/async_generator.h       |  17 +-
 cpp/src/arrow/util/future.cc               |   4 +-
 cpp/src/arrow/util/future.h                | 279 +++++++----------
 cpp/src/arrow/util/future_test.cc          |  76 ++++-
 cpp/src/arrow/util/thread_pool.h           |  24 +-
 dev/archery/archery/lang/cpp.py            |   5 +-
 18 files changed, 869 insertions(+), 733 deletions(-)