You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2021/01/19 17:35:29 UTC

[arrow] branch master updated (127961a -> 0e5d646)

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

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


    from 127961a  ARROW-10489: [C++] Add Intel C++ compiler options for different warning levels
     add 0e5d646  ARROW-9128: [C++] Implement string space trimming kernels: trim, ltrim, and rtrim

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/api_scalar.h                 |   7 +
 cpp/src/arrow/compute/kernels/codegen_internal.h   |  29 ++
 cpp/src/arrow/compute/kernels/scalar_string.cc     | 431 +++++++++++++++++++--
 .../compute/kernels/scalar_string_benchmark.cc     |  23 ++
 .../arrow/compute/kernels/scalar_string_test.cc    |  60 +++
 cpp/src/arrow/util/utf8.h                          |  67 ++++
 cpp/src/arrow/util/utf8_util_test.cc               |  58 +++
 docs/source/cpp/compute.rst                        |  47 +++
 python/pyarrow/_compute.pyx                        |  17 +
 python/pyarrow/compute.py                          |   1 +
 python/pyarrow/includes/libarrow.pxd               |   5 +
 python/pyarrow/tests/test_compute.py               |  18 +
 12 files changed, 731 insertions(+), 32 deletions(-)