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/11/21 19:45:39 UTC

[arrow] branch master updated (34ffc93 -> 208b258)

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 34ffc93  ARROW-9555: [Rust] [DataFusion] Implement physical node for inner join
     add 208b258  ARROW-10585: [Rust] [DataFusion] Add join support to DataFrame and LogicalPlan

No new revisions were added by this update.

Summary of changes:
 rust/datafusion/src/dataframe.rs                   | 29 +++++++++++++-
 rust/datafusion/src/execution/dataframe_impl.rs    | 40 ++++++++++++++++++-
 rust/datafusion/src/logical_plan/builder.rs        | 45 +++++++++++++++++++++-
 rust/datafusion/src/logical_plan/mod.rs            |  4 +-
 rust/datafusion/src/logical_plan/plan.rs           | 29 ++++++++++++++
 .../src/optimizer/projection_push_down.rs          |  1 +
 rust/datafusion/src/optimizer/utils.rs             | 14 +++++++
 .../src/physical_plan/distinct_expressions.rs      |  2 +-
 rust/datafusion/src/physical_plan/hash_join.rs     | 44 +++++++++++++++++----
 rust/datafusion/src/physical_plan/hash_utils.rs    | 19 ++++++---
 rust/datafusion/src/physical_plan/planner.rs       | 23 +++++++++++
 rust/datafusion/src/prelude.rs                     |  2 +-
 12 files changed, 233 insertions(+), 19 deletions(-)