You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2020/12/14 19:05:54 UTC

[arrow] branch master updated (88c0887 -> 7f3794c)

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

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


    from 88c0887  ARROW-9771: [Rust] [DataFusion] treat predicates separated by AND separately in predicate pushdown
     add 7f3794c  ARROW-10827: [Rust] Move concat from builders to a compute kernel and make it faster (2-6x)

No new revisions were added by this update.

Summary of changes:
 rust/arrow/Cargo.toml                              |    4 +
 rust/arrow/benches/concatenate_kernel.rs           |  102 ++
 rust/arrow/src/array/array_binary.rs               |   44 +-
 rust/arrow/src/array/builder.rs                    | 1301 +-------------------
 rust/arrow/src/array/transform/fixed_binary.rs     |    2 +-
 rust/arrow/src/array/transform/mod.rs              |  377 +++++-
 rust/arrow/src/compute/kernels/concat.rs           |  206 +---
 rust/arrow/src/ffi.rs                              |    2 +-
 .../datafusion/src/physical_plan/hash_aggregate.rs |    5 +-
 rust/datafusion/src/physical_plan/sort.rs          |    4 +-
 10 files changed, 574 insertions(+), 1473 deletions(-)
 create mode 100644 rust/arrow/benches/concatenate_kernel.rs