This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.
from 6a127eb ARROW-7039: [Python] Fix pa.table/record_batch typecheck to
work without pandas
add 4530fc5 ARROW-6881: [Rust] Remove "array_ops" in favor of the
"compute" sub-module
No new revisions were added by this update.
Summary of changes:
rust/arrow/benches/arithmetic_kernels.rs | 3 +-
rust/arrow/src/compute/array_ops.rs | 436 ---------------------
rust/arrow/src/compute/kernels/aggregate.rs | 142 +++++++
rust/arrow/src/compute/kernels/filter.rs | 146 +++++++
rust/arrow/src/compute/kernels/limit.rs | 202 ++++++++++
rust/arrow/src/compute/kernels/mod.rs | 3 +
rust/arrow/src/compute/mod.rs | 5 +-
.../src/execution/physical_plan/limit.rs | 2 +-
8 files changed, 499 insertions(+), 440 deletions(-)
delete mode 100644 rust/arrow/src/compute/array_ops.rs
create mode 100644 rust/arrow/src/compute/kernels/aggregate.rs
create mode 100644 rust/arrow/src/compute/kernels/filter.rs
create mode 100644 rust/arrow/src/compute/kernels/limit.rs