You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by bk...@apache.org on 2019/12/11 19:50:02 UTC

[arrow] branch master updated (68903ac -> 1accdc9)

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

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


    from 68903ac  PARQUET-1715:[C++] Add the Parquet code samples to CI + Refactor Parquet Encryption Samples
     add 1accdc9  ARROW-7210: [C++][R] Allow Numeric <-> Temporal Scalar casts

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                    |   1 +
 cpp/src/arrow/compare.cc                        |  26 +-
 cpp/src/arrow/compute/kernels/aggregate_test.cc |  18 +-
 cpp/src/arrow/compute/kernels/cast.cc           |  45 ++--
 cpp/src/arrow/compute/kernels/compare_test.cc   |   3 +-
 cpp/src/arrow/compute/kernels/mean.cc           |   3 +-
 cpp/src/arrow/compute/kernels/sum.cc            |   6 +-
 cpp/src/arrow/compute/test_util.h               |   4 +-
 cpp/src/arrow/dataset/file_parquet.cc           |   8 +-
 cpp/src/arrow/dataset/filter.cc                 |  15 +-
 cpp/src/arrow/dataset/filter.h                  |   2 +-
 cpp/src/arrow/dataset/filter_test.cc            |  17 +-
 cpp/src/arrow/scalar.cc                         | 149 +++++------
 cpp/src/arrow/scalar.h                          | 332 +++++++++++++-----------
 cpp/src/arrow/scalar_test.cc                    | 135 +++++-----
 cpp/src/arrow/type_fwd.h                        |  35 ++-
 cpp/src/arrow/util/CMakeLists.txt               |   1 +
 cpp/src/arrow/util/compare.h                    |   1 -
 cpp/src/arrow/util/{optional.h => time.cc}      |  32 ++-
 cpp/src/arrow/util/time.h                       |  57 ++++
 cpp/src/arrow/util/time_test.cc                 |  63 +++++
 r/tests/testthat/test-dataset.R                 |  21 +-
 r/tests/testthat/test-dplyr.R                   |  12 +
 23 files changed, 575 insertions(+), 411 deletions(-)
 copy cpp/src/arrow/util/{optional.h => time.cc} (54%)
 create mode 100644 cpp/src/arrow/util/time.h
 create mode 100644 cpp/src/arrow/util/time_test.cc