You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ne...@apache.org on 2020/06/01 20:56:23 UTC

[arrow] branch master updated (d25ccf4 -> 58d5bf5)

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

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


    from d25ccf4  ARROW-8843: [C++] Compare bitmaps in words
     add 58d5bf5  ARROW-8931: [Rust] add lexical sort support to arrow compute kernel

No new revisions were added by this update.

Summary of changes:
 rust/arrow/src/array/array.rs          |   2 +-
 rust/arrow/src/array/cast.rs           |  53 ++++
 rust/arrow/src/array/mod.rs            |  12 +
 rust/arrow/src/array/ord.rs            | 134 +++++++++
 rust/arrow/src/compute/kernels/sort.rs | 484 ++++++++++++++++++++++++++++++++-
 rust/arrow/src/compute/mod.rs          |   1 +
 6 files changed, 672 insertions(+), 14 deletions(-)
 create mode 100644 rust/arrow/src/array/cast.rs
 create mode 100644 rust/arrow/src/array/ord.rs