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/15 19:07:32 UTC

[arrow] branch master updated (d55383d -> dbeed52)

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 d55383d  ARROW-12992:  [R] bindings for substr(), substring(), str_sub()
     add dbeed52  ARROW-13064: [C++] Implement select ('case when') function for fixed-width types

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/api_scalar.cc                |   8 +
 cpp/src/arrow/compute/api_scalar.h                 |  17 +
 cpp/src/arrow/compute/kernel.cc                    |  23 +-
 cpp/src/arrow/compute/kernel.h                     |   6 +-
 cpp/src/arrow/compute/kernel_test.cc               |  31 +-
 cpp/src/arrow/compute/kernels/codegen_internal.cc  |  20 +-
 cpp/src/arrow/compute/kernels/codegen_internal.h   |   3 +
 cpp/src/arrow/compute/kernels/scalar_if_else.cc    | 401 ++++++++++++++++++++-
 .../compute/kernels/scalar_if_else_benchmark.cc    |  99 ++++-
 .../arrow/compute/kernels/scalar_if_else_test.cc   | 381 +++++++++++++++++++-
 cpp/src/arrow/compute/kernels/test_util.cc         |  33 +-
 cpp/src/arrow/compute/kernels/test_util.h          |   3 +-
 docs/source/cpp/compute.rst                        |  73 ++--
 docs/source/python/api/compute.rst                 |   1 +
 14 files changed, 992 insertions(+), 107 deletions(-)