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/06/09 17:30:48 UTC

[arrow] branch master updated (39dcb43 -> 00cc41f)

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 39dcb43  ARROW-12991: [CI] Migrate Travis-CI ARM job to "arm64-graviton2" arch
     add 00cc41f  ARROW-11759: [C++] Kernel to extract datetime components (year, month, day, etc) from timestamp type

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                       |   1 +
 cpp/src/arrow/compute/api_scalar.cc                |  20 +
 cpp/src/arrow/compute/api_scalar.h                 | 183 ++++++
 cpp/src/arrow/compute/kernels/CMakeLists.txt       |   1 +
 cpp/src/arrow/compute/kernels/scalar_temporal.cc   | 631 +++++++++++++++++++++
 .../arrow/compute/kernels/scalar_temporal_test.cc  | 181 ++++++
 cpp/src/arrow/compute/registry.cc                  |   1 +
 cpp/src/arrow/compute/registry_internal.h          |   1 +
 docs/source/cpp/compute.rst                        |  52 ++
 9 files changed, 1071 insertions(+)
 create mode 100644 cpp/src/arrow/compute/kernels/scalar_temporal.cc
 create mode 100644 cpp/src/arrow/compute/kernels/scalar_temporal_test.cc