You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2021/04/21 16:15:45 UTC

[arrow] branch release-4.0.0 updated (be258f2 -> 7a0cb10)

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

kszucs pushed a change to branch release-4.0.0
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from be258f2  ARROW-12485: [C++] Use mimalloc as the default memory allocator on macOS
     add 37c27d1  ARROW-10195: [C++] Add string struct extract kernel using re2
     add c71becf  ARROW-12494: [C++] ORC adapter fails to compile on GCC 4.8
     add 7a0cb10  ARROW-12495: [C++] Fix NumPyBuffer::mutable_data()

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/adapters/orc/adapter.cc              |   2 +-
 cpp/src/arrow/adapters/orc/adapter_util.cc         |   6 +-
 cpp/src/arrow/compute/api_scalar.h                 |  11 +-
 cpp/src/arrow/compute/kernels/scalar_string.cc     | 244 ++++++++++++++++++++-
 .../arrow/compute/kernels/scalar_string_test.cc    |  78 +++++++
 cpp/src/arrow/compute/kernels/test_util.cc         |   2 +-
 cpp/src/arrow/python/numpy_convert.cc              |   4 +-
 cpp/src/arrow/python/python_test.cc                |  63 ++++++
 docs/source/cpp/compute.rst                        |  15 ++
 python/pyarrow/_compute.pyx                        |  17 ++
 python/pyarrow/compute.py                          |   1 +
 python/pyarrow/includes/libarrow.pxd               |   5 +
 python/pyarrow/tests/test_compute.py               |   7 +
 13 files changed, 439 insertions(+), 16 deletions(-)