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/08/11 15:45:12 UTC

[arrow] branch master updated (0e15d26 -> a0ec4f2)

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 0e15d26  ARROW-9521: [Rust][DataFusion] Handle custom CSV file extensions
     add a0ec4f2  ARROW-9638: [C++][Compute] Implement mode kernel

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                       |   1 +
 cpp/src/arrow/compute/api_aggregate.cc             |   4 +
 cpp/src/arrow/compute/api_aggregate.h              |  17 +-
 cpp/src/arrow/compute/kernels/aggregate_basic.cc   |   5 +-
 .../compute/kernels/aggregate_basic_internal.h     |   6 +
 .../arrow/compute/kernels/aggregate_benchmark.cc   |  39 +++++
 cpp/src/arrow/compute/kernels/aggregate_mode.cc    | 179 +++++++++++++++++++++
 cpp/src/arrow/compute/kernels/aggregate_test.cc    | 115 +++++++++++--
 docs/source/cpp/compute.rst                        |   7 +-
 9 files changed, 356 insertions(+), 17 deletions(-)
 create mode 100644 cpp/src/arrow/compute/kernels/aggregate_mode.cc