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 2023/06/01 16:40:51 UTC

[arrow] branch main updated (d20a1d1e1d -> 3299d12efc)

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

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


    from d20a1d1e1d GH-35789: [C++] Remove check_overflow from CumulativeSumOptions (#35790)
     add 3299d12efc GH-35360: [C++] Take offset into account in ScalarHashImpl::ArrayHash() (#35814)

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/CMakeLists.txt         |   1 +
 cpp/src/arrow/scalar.cc              |  43 +++++++++++--
 cpp/src/arrow/scalar_test.cc         |  12 ++++
 cpp/src/arrow/util/hashing.cc        |  86 ++++++++++++++++++++++++++
 cpp/src/arrow/util/hashing.h         |  17 ++++++
 cpp/src/arrow/util/hashing_test.cc   | 114 +++++++++++++++++++++++++++++++++++
 python/pyarrow/tests/test_scalars.py |   9 +++
 7 files changed, 276 insertions(+), 6 deletions(-)
 create mode 100644 cpp/src/arrow/util/hashing.cc