This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/go_modules/go/modernc.org/sqlite-1.29.9
in repository https://gitbox.apache.org/repos/asf/arrow.git
discard 280ec8f4e1 MINOR: [Go] Bump modernc.org/sqlite from 1.29.6 to 1.29.9
in /go
add 3a54e68c69 MINOR: [Dev] Add zanmato1984 and ZhangHuiGui in
collaborators list (#41544)
add 52321377cc GH-40997: [C++] Get null_bit_id according to
are_cols_in_encoding_order in NullUpdateColumnToRow_avx2 (#40998)
add b719408f4a GH-40560: [Python] RunEndEncodedArray.from_arrays: bugfix
for Array arguments (#40560) (#41093)
add c79b6a593e GH-41566: [CI][Packaging] macOS wheel for Catalina fails to
build on macOS arm64 (#41567)
add 03f8ae754e GH-41540: [R] Simplify arrow_eval() logic and bindings
environments (#41537)
add 9cf0ee722b GH-41562: [C++][Parquet] Decoding: Fix num_value handling
in ByteStreamSplitDecoder (#41565)
add 51689a040c GH-41545: [C++][Parquet] Fix
DeltaLengthByteArrayEncoder::EstimatedDataEncodedSize (#41546)
add 53859262ea GH-41431: [C++][Parquet][Dataset] Fix repeated scan on
encrypted dataset (#41550)
add d83af8f749 GH-38770: [C++][Python] RecordBatch.filter() segfaults if
passed a ChunkedArray (#40971)
add e21952f969 GH-40750: [C++][Python] Map child Array constructed from
keys and items shouldn't have offset (#40871)
add f462ec7e6b MINOR: [Go] Bump golang.org/x/sys from 0.19.0 to 0.20.0 in
/go (#41554)
add f672027654 MINOR: [Go] Bump google.golang.org/protobuf from 1.34.0 to
1.34.1 in /go (#41553)
add 2b1b7ef41b MINOR: [Go] Bump modernc.org/sqlite from 1.29.6 to 1.29.9
in /go
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch 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 (280ec8f4e1)
\
N -- N -- N
refs/heads/dependabot/go_modules/go/modernc.org/sqlite-1.29.9 (2b1b7ef41b)
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.
No new revisions were added by this update.
Summary of changes:
.asf.yaml | 2 +
cpp/src/arrow/array/array_list_test.cc | 16 ++-
cpp/src/arrow/array/array_nested.cc | 2 +-
cpp/src/arrow/compute/CMakeLists.txt | 3 +-
.../kernels/vector_selection_filter_internal.cc | 26 +++--
cpp/src/arrow/compute/row/compare_internal.cc | 41 ++++---
cpp/src/arrow/compute/row/compare_internal.h | 25 +++--
cpp/src/arrow/compute/row/compare_internal_avx2.cc | 20 ++--
cpp/src/arrow/compute/row/grouper_test.cc | 68 ++++++++++++
cpp/src/arrow/compute/row/row_internal.cc | 3 +-
.../arrow/dataset/file_parquet_encryption_test.cc | 25 +++--
cpp/src/parquet/encoding.cc | 40 ++++---
cpp/src/parquet/encoding.h | 5 +
cpp/src/parquet/encoding_test.cc | 13 ++-
cpp/src/parquet/file_reader.cc | 83 +++++++-------
cpp/src/parquet/metadata.cc | 8 ++
cpp/src/parquet/metadata.h | 2 +
dev/tasks/tasks.yml | 2 +-
go/go.mod | 4 +-
go/go.sum | 8 +-
python/pyarrow/array.pxi | 2 +-
python/pyarrow/tests/test_array.py | 35 ++++++
python/pyarrow/tests/test_compute.py | 5 +
r/R/dplyr-arrange.R | 8 ++
r/R/dplyr-eval.R | 17 +--
r/R/dplyr-filter.R | 54 +++-------
r/R/dplyr-funcs-agg.R | 26 ++---
r/R/dplyr-funcs.R | 119 +++++----------------
r/R/dplyr-mutate.R | 2 +-
r/R/dplyr-summarize.R | 2 +-
r/R/udf.R | 7 +-
r/man/register_binding.Rd | 45 +-------
r/tests/testthat/test-dataset-dplyr.R | 2 +-
r/tests/testthat/test-dplyr-filter.R | 9 +-
r/tests/testthat/test-dplyr-funcs.R | 30 ++----
r/tests/testthat/test-dplyr-summarize.R | 28 ++---
r/tests/testthat/test-udf.R | 14 +--
r/vignettes/developers/writing_bindings.Rmd | 7 +-
38 files changed, 424 insertions(+), 384 deletions(-)
create mode 100644 cpp/src/arrow/compute/row/grouper_test.cc