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/09/30 12:24:45 UTC

[arrow] branch master updated (c5fa23e -> ffb6e28)

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 c5fa23e  ARROW-9640: [C++][Gandiva] Implement round() for integers and long integers
     add ffb6e28  ARROW-10070: [C++][Compute] Implement var and std aggregate 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             |  10 +
 cpp/src/arrow/compute/api_aggregate.h              |  40 ++++
 cpp/src/arrow/compute/kernels/aggregate_basic.cc   |   2 +
 .../compute/kernels/aggregate_basic_internal.h     |   2 +
 cpp/src/arrow/compute/kernels/aggregate_test.cc    | 178 ++++++++++++++++++
 cpp/src/arrow/compute/kernels/aggregate_var_std.cc | 202 +++++++++++++++++++++
 docs/source/cpp/compute.rst                        |   4 +
 8 files changed, 439 insertions(+)
 create mode 100644 cpp/src/arrow/compute/kernels/aggregate_var_std.cc