This is an automated email from the ASF dual-hosted git repository.
kou pushed a change to annotated tag apache-arrow-6.0.1
in repository https://gitbox.apache.org/repos/asf/arrow.git.
*** WARNING: tag apache-arrow-6.0.1 was modified! ***
from 4fac692 (tag)
to 678922e (tag)
tagging 347a88ff9d20e2a4061eec0b455b8ea1aa8335dc (commit)
replaces apache-arrow-6.0.0
by Sutou Kouhei
on Wed Nov 10 11:04:48 2021 +0900
- Log -----------------------------------------------------------------
[Release] Apache Arrow Release 6.0.1
-----------------------------------------------------------------------
omit 2233a10 [Release] Update versions for 6.0.1
omit 72b74ba [Release] Update .deb/.rpm changelogs for 6.0.1
omit b275eda [Release] Update CHANGELOG.md for 6.0.1
add df92a26 MINOR: [Release] Fix debian:bookwarm typo in the release
verification script (#11512)
add a2a1479 ARROW-14433: [Release][APT] Skip arm64 Ubuntu 21.04
verification
add daca509 ARROW-14390: [Packaging][Ubuntu] Add support for Ubuntu 21.10
add 0319778 ARROW-13156 [R] bindings for str_count
add 88683e8 ARROW-14310: [R] Make expect_dplyr_equal() more intuitive
add 527f576 ARROW-14181: [C++][Compute] Support for dictionaries in hash
join
add 76dfc38 ARROW-14519: [C++] Properly error if joining on unsupported
type
add 6e6acd5 ARROW-14628: [Release][Python] Use python -m pytest
add 8410e34 ARROW-14583: [C++] Handle empty chunked arrays in Take, empty
datasets in GroupByNode
add 031c894 ARROW-14630: [C++] Fix aggregation over scalar key columns
add 0b1c6d0 ARROW-14623: [Packaging][Java] Upload not only .jar but also
.pom
add aa9a7a6 ARROW-14620: [Python] Missing bindings for
existing_data_behavior makes it impossible to maintain old behavior
new 83a8c93 [Release] Update CHANGELOG.md for 6.0.1
new 9a52dd4 [Release] Update .deb/.rpm changelogs for 6.0.1
new 347a88f [Release] Update versions for 6.0.1
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
annotated tag are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (4fac692)
\
N -- N -- N refs/tags/apache-arrow-6.0.1 (678922e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
CHANGELOG.md | 14 +-
ci/scripts/java_full_build.sh | 12 +-
ci/scripts/python_wheel_unix_test.sh | 2 +-
cpp/cmake_modules/ThirdpartyToolchain.cmake | 8 +
cpp/src/arrow/CMakeLists.txt | 1 +
cpp/src/arrow/compute/exec/aggregate_node.cc | 9 +-
cpp/src/arrow/compute/exec/hash_join.cc | 103 +++-
cpp/src/arrow/compute/exec/hash_join.h | 5 +-
cpp/src/arrow/compute/exec/hash_join_dict.cc | 665 +++++++++++++++++++++
cpp/src/arrow/compute/exec/hash_join_dict.h | 315 ++++++++++
cpp/src/arrow/compute/exec/hash_join_node.cc | 61 +-
cpp/src/arrow/compute/exec/hash_join_node_test.cc | 576 ++++++++++++++++++
cpp/src/arrow/compute/exec/plan_test.cc | 76 ++-
cpp/src/arrow/compute/exec/schema_util.h | 38 +-
cpp/src/arrow/compute/exec/source_node.cc | 14 +-
cpp/src/arrow/compute/exec/test_util.h | 2 -
.../arrow/compute/kernels/hash_aggregate_test.cc | 33 +-
cpp/src/arrow/compute/kernels/row_encoder.cc | 4 +-
cpp/src/arrow/compute/kernels/row_encoder.h | 6 +-
cpp/src/arrow/compute/kernels/vector_selection.cc | 9 +-
.../arrow/compute/kernels/vector_selection_test.cc | 7 +
dev/release/binary-task.rb | 2 +-
dev/release/verify-release-candidate.sh | 19 +-
dev/tasks/java-jars/github.yml | 31 +-
dev/tasks/linux-packages/Rakefile | 4 +
.../apt/{ubuntu-focal => ubuntu-impish}/Dockerfile | 2 +-
.../apache-arrow-apt-source/debian/changelog | 2 +-
.../yum/apache-arrow-release.spec.in | 2 +-
.../from | 2 +-
.../{ubuntu-hirsute => ubuntu-impish}/Dockerfile | 2 +-
.../linux-packages/apache-arrow/debian/changelog | 2 +-
.../linux-packages/apache-arrow/yum/arrow.spec.in | 2 +-
dev/tasks/linux-packages/github.linux.amd64.yml | 4 +
dev/tasks/linux-packages/package-task.rb | 10 +-
dev/tasks/tasks.yml | 27 +-
docker-compose.yml | 4 +-
python/pyarrow/_dataset.pyx | 16 +-
python/pyarrow/dataset.py | 21 +-
python/pyarrow/includes/libarrow_dataset.pxd | 9 +
python/pyarrow/tests/test_dataset.py | 49 ++
r/R/dplyr-functions.R | 13 +
r/tests/testthat/helper-expectation.R | 120 ++--
r/tests/testthat/test-Array.R | 8 +-
r/tests/testthat/test-compute-aggregate.R | 62 +-
r/tests/testthat/test-compute-sort.R | 60 +-
r/tests/testthat/test-dplyr-arrange.R | 80 +--
r/tests/testthat/test-dplyr-collapse.R | 12 +-
r/tests/testthat/test-dplyr-count.R | 32 +-
r/tests/testthat/test-dplyr-distinct.R | 32 +-
r/tests/testthat/test-dplyr-filter.R | 138 ++---
r/tests/testthat/test-dplyr-funcs-conditional.R | 100 ++--
r/tests/testthat/test-dplyr-funcs-datetime.R | 116 ++--
r/tests/testthat/test-dplyr-funcs-math.R | 98 +--
r/tests/testthat/test-dplyr-funcs-string.R | 487 ++++++++-------
r/tests/testthat/test-dplyr-funcs-type.R | 84 +--
r/tests/testthat/test-dplyr-group-by.R | 54 +-
r/tests/testthat/test-dplyr-join.R | 48 +-
r/tests/testthat/test-dplyr-mutate.R | 116 ++--
r/tests/testthat/test-dplyr-query.R | 29 +-
r/tests/testthat/test-dplyr-select.R | 72 +--
r/tests/testthat/test-dplyr-summarize.R | 280 ++++-----
r/tests/testthat/test-metadata.R | 24 +-
r/tests/testthat/test-na-omit.R | 12 +-
63 files changed, 3115 insertions(+), 1132 deletions(-)
create mode 100644 cpp/src/arrow/compute/exec/hash_join_dict.cc
create mode 100644 cpp/src/arrow/compute/exec/hash_join_dict.h
copy dev/tasks/linux-packages/apache-arrow-apt-source/apt/{ubuntu-focal =>
ubuntu-impish}/Dockerfile (98%)
copy dev/tasks/linux-packages/apache-arrow/apt/{debian-buster-arm64 =>
ubuntu-impish-arm64}/from (97%)
copy dev/tasks/linux-packages/apache-arrow/apt/{ubuntu-hirsute =>
ubuntu-impish}/Dockerfile (98%)