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/11 16:52:32 UTC

[arrow] branch master updated (22506b9 -> 046a30b)

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 22506b9  ARROW-12670: [C++] Fix extract_regex output after non-matching values
     add 046a30b  ARROW-11928: [C++] Execution engine API

No new revisions were added by this update.

Summary of changes:
 ci/appveyor-cpp-build.bat                 |   1 +
 ci/scripts/cpp_build.sh                   |   1 +
 cpp/CMakeLists.txt                        |   4 +
 cpp/src/arrow/CMakeLists.txt              |   4 +
 cpp/src/arrow/compute/exec/CMakeLists.txt |   2 +
 cpp/src/arrow/compute/exec/exec_plan.cc   | 218 ++++++++++++++++
 cpp/src/arrow/compute/exec/exec_plan.h    | 246 ++++++++++++++++++
 cpp/src/arrow/compute/exec/plan_test.cc   | 402 ++++++++++++++++++++++++++++++
 cpp/src/arrow/compute/exec/test_util.cc   | 400 +++++++++++++++++++++++++++++
 cpp/src/arrow/compute/exec/test_util.h    |  70 ++++++
 cpp/src/arrow/compute/type_fwd.h          |   1 +
 cpp/src/arrow/type_fwd.h                  |   1 +
 cpp/src/arrow/util/iterator_test.cc       |   1 +
 13 files changed, 1351 insertions(+)
 create mode 100644 cpp/src/arrow/compute/exec/exec_plan.cc
 create mode 100644 cpp/src/arrow/compute/exec/exec_plan.h
 create mode 100644 cpp/src/arrow/compute/exec/plan_test.cc
 create mode 100644 cpp/src/arrow/compute/exec/test_util.cc
 create mode 100644 cpp/src/arrow/compute/exec/test_util.h