You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2020/12/24 16:38:39 UTC

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

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

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


    from ca685a0  ARROW-11023: [C++][CMake] Fix gRPC build issue
     add 2f5d592  ARROW-10582: [Rust] [DataFusion] Implement "repartition" operator

No new revisions were added by this update.

Summary of changes:
 rust/benchmarks/src/bin/tpch.rs                    |  23 +-
 rust/datafusion/src/dataframe.rs                   |  21 +-
 rust/datafusion/src/execution/dataframe_impl.rs    |  11 +
 rust/datafusion/src/logical_plan/builder.rs        |  10 +-
 rust/datafusion/src/logical_plan/mod.rs            |   4 +-
 rust/datafusion/src/logical_plan/plan.rs           |  44 ++-
 .../src/optimizer/hash_build_probe_order.rs        |   1 +
 .../src/optimizer/projection_push_down.rs          |   1 +
 rust/datafusion/src/optimizer/utils.rs             |  23 +-
 rust/datafusion/src/physical_plan/mod.rs           |  11 +-
 rust/datafusion/src/physical_plan/planner.rs       |  32 +-
 rust/datafusion/src/physical_plan/repartition.rs   | 335 +++++++++++++++++++++
 rust/datafusion/src/prelude.rs                     |   1 +
 13 files changed, 504 insertions(+), 13 deletions(-)
 create mode 100644 rust/datafusion/src/physical_plan/repartition.rs