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/24 18:17:43 UTC

[arrow] branch master updated (2f5d592 -> 8fa68b0)

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 2f5d592  ARROW-10582: [Rust] [DataFusion] Implement "repartition" operator
     add 8fa68b0  ARROW-10540: [Rust] Extended filter kernel to all types and improved performance

No new revisions were added by this update.

Summary of changes:
 rust/arrow/Cargo.toml                              |    4 +
 rust/arrow/benches/filter_kernels.rs               |  158 +--
 .../{concatenate_kernel.rs => mutable_array.rs}    |   69 +-
 rust/arrow/src/array/transform/boolean.rs          |    4 +-
 rust/arrow/src/array/transform/fixed_binary.rs     |    6 +-
 rust/arrow/src/array/transform/list.rs             |   32 +-
 rust/arrow/src/array/transform/mod.rs              |  164 ++-
 rust/arrow/src/array/transform/primitive.rs        |    7 +-
 rust/arrow/src/array/transform/utils.rs            |   15 +
 rust/arrow/src/array/transform/variable_size.rs    |   42 +-
 rust/arrow/src/compute/kernels/filter.rs           | 1065 +++++---------------
 rust/arrow/src/util/bit_chunk_iterator.rs          |    6 +
 12 files changed, 535 insertions(+), 1037 deletions(-)
 copy rust/arrow/benches/{concatenate_kernel.rs => mutable_array.rs} (52%)