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 2020/01/14 12:24:54 UTC

[arrow] branch master updated (38bf178 -> 27dded6)

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 38bf178  ARROW-7413: [Python] Expose and test the partioning discovery
     add 27dded6  ARROW-7493: [Python] Expose sum kernel in pyarrow.compute and support ChunkedArray inputs

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/kernels/aggregate.cc      | 31 ++++++++---
 cpp/src/arrow/compute/kernels/aggregate_test.cc | 33 ++++++++++++
 cpp/src/arrow/compute/kernels/sum.h             |  1 +
 cpp/src/arrow/testing/gtest_util.cc             |  2 +-
 python/CMakeLists.txt                           |  7 ++-
 python/pyarrow/_compute.pyx                     | 68 +++++++++++++++++++++++++
 python/pyarrow/{benchmark.py => compute.py}     |  6 +--
 python/pyarrow/includes/libarrow.pxd            |  1 +
 python/pyarrow/lib.pxd                          |  2 +
 python/pyarrow/scalar.pxi                       | 21 ++++----
 python/pyarrow/tests/test_compute.py            | 38 ++++++++++++--
 python/setup.py                                 |  1 +
 12 files changed, 186 insertions(+), 25 deletions(-)
 create mode 100644 python/pyarrow/_compute.pyx
 copy python/pyarrow/{benchmark.py => compute.py} (92%)