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/15 16:18:45 UTC

[arrow] branch master updated (c30377a -> df99796)

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 c30377a  ARROW-9127: [Rust] Update thrift dependency to 0.13 (latest)
     add df99796  ARROW-9005: [Rust] [Datafusion] support sort expression

No new revisions were added by this update.

Summary of changes:
 rust/arrow/src/array/array.rs                      |  10 +
 rust/arrow/src/array/builder.rs                    |  52 ++--
 rust/arrow/src/compute/kernels/concat.rs           | 292 +++++++++++++++++++++
 rust/arrow/src/compute/kernels/mod.rs              |   1 +
 rust/arrow/src/compute/kernels/sort.rs             |  31 +--
 rust/arrow/src/compute/mod.rs                      |   1 +
 rust/datafusion/Cargo.toml                         |   2 +-
 rust/datafusion/src/execution/context.rs           |  61 ++++-
 .../src/execution/physical_plan/expressions.rs     |  20 ++
 rust/datafusion/src/execution/physical_plan/mod.rs |   1 +
 .../src/execution/physical_plan/projection.rs      |   3 +-
 .../datafusion/src/execution/physical_plan/sort.rs | 211 +++++++++++++++
 rust/datafusion/src/logicalplan.rs                 |  47 +++-
 .../src/optimizer/projection_push_down.rs          |   7 +-
 rust/datafusion/src/optimizer/resolve_columns.rs   |  16 +-
 rust/datafusion/src/optimizer/type_coercion.rs     |   5 +-
 rust/datafusion/src/sql/planner.rs                 |  23 +-
 17 files changed, 727 insertions(+), 56 deletions(-)
 create mode 100644 rust/arrow/src/compute/kernels/concat.rs
 create mode 100644 rust/datafusion/src/execution/physical_plan/sort.rs