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/06/16 18:20:40 UTC

[arrow] branch master updated (99a68d4 -> 57ecc73)

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 99a68d4  ARROW-10115: [C++] Add CSV option to treat quoted strings as always non-null
     add 57ecc73  ARROW-12709: [C++] Add binary_join_element_wise

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                 |  23 +-
 cpp/src/arrow/compute/kernels/scalar_compare.cc    |  16 +-
 .../arrow/compute/kernels/scalar_compare_test.cc   | 184 ++++++++--------
 cpp/src/arrow/compute/kernels/scalar_string.cc     | 239 ++++++++++++++++++++-
 .../compute/kernels/scalar_string_benchmark.cc     |  43 ++++
 .../arrow/compute/kernels/scalar_string_test.cc    | 119 ++++++++++
 docs/source/cpp/compute.rst                        |  22 +-
 docs/source/python/api/compute.rst                 |  21 +-
 python/pyarrow/_compute.pyx                        |  31 +++
 python/pyarrow/compute.py                          |   1 +
 python/pyarrow/includes/libarrow.pxd               |  16 ++
 python/pyarrow/tests/test_compute.py               |  52 ++++-
 13 files changed, 643 insertions(+), 132 deletions(-)