You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by yi...@apache.org on 2022/12/28 02:42:07 UTC

[arrow] branch master updated (6236dbac7d -> a0d1630622)

This is an automated email from the ASF dual-hosted git repository.

yibocai pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


    from 6236dbac7d ARROW-17538: [C++] Import schema when importing array stream (#15037)
     add a0d1630622 GH-15072: [C++] Move the round functionality into a separate module (#15073)

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                       |    1 +
 cpp/src/arrow/compute/kernels/CMakeLists.txt       |    1 +
 cpp/src/arrow/compute/kernels/scalar_arithmetic.cc |  723 -----------
 .../compute/kernels/scalar_arithmetic_test.cc      |  912 +-------------
 cpp/src/arrow/compute/kernels/scalar_round.cc      | 1252 ++++++++++++++++++++
 .../kernels/scalar_round_arithmetic_test.cc        | 1223 +++++++++++++++++++
 cpp/src/arrow/compute/registry.cc                  |    1 +
 cpp/src/arrow/compute/registry_internal.h          |    1 +
 8 files changed, 2484 insertions(+), 1630 deletions(-)
 create mode 100644 cpp/src/arrow/compute/kernels/scalar_round.cc
 create mode 100644 cpp/src/arrow/compute/kernels/scalar_round_arithmetic_test.cc