You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2019/09/14 22:35:10 UTC

[arrow] branch master updated (2f55ad3 -> 5fa694b)

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

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


    from 2f55ad3  ARROW-6009: [JS] Ignore NPM errors in the javascript release script
     add 5fa694b  ARROW-1741: [C++] Add DictionaryArray::CanCompareIndices

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt          |   1 +
 cpp/src/arrow/array.cc                | 108 ++------------
 cpp/src/arrow/array.h                 |   3 +
 cpp/src/arrow/array/builder_dict.cc   | 123 +---------------
 cpp/src/arrow/array/dict_internal.cc  | 263 ++++++++++++++++++++++++++++++++++
 cpp/src/arrow/array/dict_internal.h   | 192 +++++++++++++++++++++++++
 cpp/src/arrow/array_dict_test.cc      |  45 ++++++
 cpp/src/arrow/compute/kernels/hash.cc |   1 +
 cpp/src/arrow/compute/kernels/isin.cc |   1 +
 cpp/src/arrow/type.cc                 |   1 +
 cpp/src/arrow/type.h                  |   1 +
 cpp/src/arrow/util/hashing.h          | 137 ------------------
 12 files changed, 517 insertions(+), 359 deletions(-)
 create mode 100644 cpp/src/arrow/array/dict_internal.cc
 create mode 100644 cpp/src/arrow/array/dict_internal.h