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/08/26 17:12:02 UTC

[arrow] branch master updated (64bef2a -> ee5a86a)

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 64bef2a  ARROW-13696: [Python] Support for MapType with Fields
     add ee5a86a  ARROW-12959: [C++][R] Option for is_null(NaN) to evaluate to true

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/api_scalar.cc                |  12 +-
 cpp/src/arrow/compute/api_scalar.h                 |  13 +-
 cpp/src/arrow/compute/exec/expression.cc           |   4 +-
 cpp/src/arrow/compute/exec/expression.h            |   2 +-
 cpp/src/arrow/compute/kernels/scalar_validity.cc   |  82 +++++-
 .../arrow/compute/kernels/scalar_validity_test.cc  | 276 ++++++++++-----------
 docs/source/cpp/compute.rst                        | 113 +++++----
 python/pyarrow/_compute.pyx                        |  12 +
 python/pyarrow/_dataset.pyx                        |   8 +-
 python/pyarrow/array.pxi                           |  14 +-
 python/pyarrow/compute.py                          |   5 +-
 python/pyarrow/includes/libarrow.pxd               |   5 +
 python/pyarrow/table.pxi                           |  18 +-
 python/pyarrow/tests/test_compute.py               |  10 +-
 r/R/arrow-datum.R                                  |   8 +-
 r/R/dplyr-functions.R                              |   9 +-
 r/R/expression.R                                   |   8 +-
 r/src/compute.cpp                                  |   9 +
 18 files changed, 361 insertions(+), 247 deletions(-)