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 2021/06/13 11:13:11 UTC

[arrow-datafusion] branch master updated (519698a -> 738f13b)

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-datafusion.git.


    from 519698a  Refactor hash aggregates's planner building code (#539)
     add 738f13b  turn on clippy rule for needless borrow (#545)

No new revisions were added by this update.

Summary of changes:
 .../rust/core/src/execution_plans/query_stage.rs   |  2 +-
 .../rust/core/src/serde/logical_plan/to_proto.rs   |  4 +-
 ballista/rust/executor/src/flight_service.rs       |  2 +-
 ballista/rust/scheduler/src/state/mod.rs           |  2 +-
 benchmarks/src/bin/tpch.rs                         | 16 +++---
 datafusion/benches/aggregate_query_sql.rs          |  2 +-
 datafusion/benches/filter_query_sql.rs             |  2 +-
 datafusion/benches/math_query_sql.rs               |  2 +-
 datafusion/benches/sort_limit_query_sql.rs         |  2 +-
 datafusion/src/datasource/csv.rs                   |  2 +-
 datafusion/src/datasource/json.rs                  |  2 +-
 datafusion/src/execution/context.rs                |  8 +--
 datafusion/src/execution/dataframe_impl.rs         |  2 +-
 datafusion/src/lib.rs                              |  2 +-
 datafusion/src/logical_plan/dfschema.rs            |  4 +-
 datafusion/src/logical_plan/plan.rs                | 32 +++++------
 datafusion/src/optimizer/filter_push_down.rs       | 20 +++----
 datafusion/src/optimizer/projection_push_down.rs   | 14 ++---
 datafusion/src/optimizer/simplify_expressions.rs   |  4 +-
 datafusion/src/physical_optimizer/pruning.rs       | 15 +++--
 datafusion/src/physical_plan/aggregates.rs         |  2 +-
 datafusion/src/physical_plan/expressions/case.rs   |  2 +-
 .../src/physical_plan/expressions/row_number.rs    |  2 +-
 datafusion/src/physical_plan/filter.rs             |  2 +-
 datafusion/src/physical_plan/functions.rs          |  6 +-
 datafusion/src/physical_plan/hash_aggregate.rs     |  8 +--
 datafusion/src/physical_plan/hash_join.rs          | 24 +++-----
 datafusion/src/physical_plan/planner.rs            | 26 ++++-----
 datafusion/src/physical_plan/projection.rs         |  2 +-
 datafusion/src/physical_plan/repartition.rs        |  2 +-
 .../src/physical_plan/sort_preserving_merge.rs     |  2 +-
 datafusion/src/physical_plan/string_expressions.rs |  6 +-
 datafusion/src/physical_plan/type_coercion.rs      |  6 +-
 datafusion/src/physical_plan/windows.rs            |  6 +-
 datafusion/src/sql/planner.rs                      | 66 +++++++++++-----------
 datafusion/src/sql/utils.rs                        |  4 +-
 datafusion/tests/sql.rs                            | 28 ++++-----
 37 files changed, 160 insertions(+), 173 deletions(-)