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/11/23 12:58:18 UTC

[arrow] branch master updated (6cea669 -> 9fadd56)

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 6cea669  ARROW-10680: [Rust] [DataFusion] Add partial support for TPC-H query 12
     add 9fadd56  ARROW-10143: [C++] Rewrite Array(Range)Equals

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt                       |   1 +
 cpp/src/arrow/array/diff_test.cc                   | 102 ++-
 cpp/src/arrow/compare.cc                           | 988 ++++++++-------------
 cpp/src/arrow/compare.h                            |  25 +-
 cpp/src/arrow/compare_benchmark.cc                 | 164 ++++
 .../arrow/compute/kernels/aggregate_benchmark.cc   |   2 +-
 cpp/src/arrow/compute/kernels/aggregate_test.cc    |   1 +
 cpp/src/arrow/ipc/feather_test.cc                  |   6 +-
 cpp/src/arrow/testing/random.cc                    |  65 ++
 cpp/src/arrow/testing/random.h                     |  29 +
 cpp/src/arrow/util/bit_run_reader.cc               |   2 +-
 cpp/src/arrow/util/bit_run_reader.h                |  10 +-
 cpp/src/arrow/util/bit_util.h                      |   2 +-
 cpp/src/arrow/util/bit_util_test.cc                | 141 +++
 cpp/src/arrow/util/bitmap.h                        |   4 +-
 cpp/src/arrow/util/bitmap_generate.h               |   1 -
 cpp/src/arrow/util/bitmap_ops.cc                   |  20 +
 cpp/src/arrow/util/bitmap_ops.h                    |  11 +
 cpp/src/arrow/util/bitmap_reader.h                 |  71 ++
 cpp/src/arrow/util/decimal.cc                      |   2 +-
 20 files changed, 980 insertions(+), 667 deletions(-)
 create mode 100644 cpp/src/arrow/compare_benchmark.cc