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 df2aa384ee GH-15292: [C++] Typeclass alias is missing in
ExtensionArray (#15293)
add 345f5e18a0 GH-33559: [C++] Move select-k implementation into separate
module (#14753)
No new revisions were added by this update.
Summary of changes:
cpp/src/arrow/CMakeLists.txt | 2 +
cpp/src/arrow/compute/kernels/vector_rank.cc | 248 ++++
cpp/src/arrow/compute/kernels/vector_select_k.cc | 649 +++++++++++
cpp/src/arrow/compute/kernels/vector_sort.cc | 1190 +-------------------
.../arrow/compute/kernels/vector_sort_internal.h | 305 +++++
cpp/src/arrow/compute/registry.cc | 2 +
cpp/src/arrow/compute/registry_internal.h | 2 +
python/pyarrow/tests/test_compute.py | 3 +-
8 files changed, 1239 insertions(+), 1162 deletions(-)
create mode 100644 cpp/src/arrow/compute/kernels/vector_rank.cc
create mode 100644 cpp/src/arrow/compute/kernels/vector_select_k.cc