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 2020/03/12 21:54:12 UTC

[arrow] branch master updated (f911cf2 -> 5f016e5)

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 f911cf2  ARROW-8091: [CI][Crossbow] Fix nightly homebrew and R failures
     add 5f016e5  ARROW-1560: [C++] Kernel implementations for "match" function

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                      |   1 +
 cpp/src/arrow/array/dict_internal.h               |   2 +
 cpp/src/arrow/compute/kernels/CMakeLists.txt      |   1 +
 cpp/src/arrow/compute/kernels/match.cc            | 281 ++++++++++++++++
 cpp/src/arrow/compute/kernels/{isin.h => match.h} |  22 +-
 cpp/src/arrow/compute/kernels/match_test.cc       | 389 ++++++++++++++++++++++
 6 files changed, 689 insertions(+), 7 deletions(-)
 create mode 100644 cpp/src/arrow/compute/kernels/match.cc
 copy cpp/src/arrow/compute/kernels/{isin.h => match.h} (62%)
 create mode 100644 cpp/src/arrow/compute/kernels/match_test.cc