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

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


    from e223858  ARROW-13324: [R] Typo in bindings for utf8_reverse and 
ascii_reverse
     add 6db88a9  ARROW-9430: [C++] Implement replace_with_mask kernel

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                       |   1 +
 cpp/src/arrow/array/array_binary.h                 |   7 +
 cpp/src/arrow/array/util.cc                        |   5 +
 cpp/src/arrow/compute/api_vector.cc                |   5 +
 cpp/src/arrow/compute/api_vector.h                 |  17 +
 cpp/src/arrow/compute/kernels/CMakeLists.txt       |   2 +
 cpp/src/arrow/compute/kernels/codegen_internal.h   |   2 +
 cpp/src/arrow/compute/kernels/test_util.h          |  22 +
 cpp/src/arrow/compute/kernels/vector_replace.cc    | 540 ++++++++++++++++
 .../compute/kernels/vector_replace_benchmark.cc    |  89 +++
 .../arrow/compute/kernels/vector_replace_test.cc   | 677 +++++++++++++++++++++
 cpp/src/arrow/compute/registry.cc                  |   1 +
 cpp/src/arrow/compute/registry_internal.h          |   1 +
 cpp/src/arrow/type_traits.h                        |   1 +
 docs/source/cpp/compute.rst                        |  22 +-
 docs/source/python/api/compute.rst                 |   8 +
 16 files changed, 1399 insertions(+), 1 deletion(-)
 create mode 100644 cpp/src/arrow/compute/kernels/vector_replace.cc
 create mode 100644 cpp/src/arrow/compute/kernels/vector_replace_benchmark.cc
 create mode 100644 cpp/src/arrow/compute/kernels/vector_replace_test.cc

Reply via email to