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/08/19 13:28:41 UTC

[arrow] branch master updated (41fa221 -> 5abe72f)

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 41fa221  ARROW-9792: [Rust] [DataFusion] Aggregate expression functions should not return result
     add 5abe72f  ARROW-9788: [Rust] [DataFusion] Rename SelectionExec to FilterExec

No new revisions were added by this update.

Summary of changes:
 rust/datafusion/README.md                          |   2 +-
 rust/datafusion/src/execution/context.rs           |   4 +-
 rust/datafusion/src/execution/dataframe_impl.rs    |   8 +-
 .../src/execution/physical_plan/expressions.rs     |  25 +++-
 .../physical_plan/{selection.rs => filter.rs}      |  93 ++++++++-------
 rust/datafusion/src/execution/physical_plan/mod.rs |   2 +-
 .../src/execution/physical_plan/planner.rs         |  15 ++-
 rust/datafusion/src/lib.rs                         |   2 +-
 rust/datafusion/src/logicalplan.rs                 |  30 ++---
 rust/datafusion/src/optimizer/filter_push_down.rs  | 126 ++++++++++-----------
 .../src/optimizer/projection_push_down.rs          |   4 +-
 rust/datafusion/src/optimizer/type_coercion.rs     |   6 +-
 rust/datafusion/src/optimizer/utils.rs             |   8 +-
 rust/datafusion/src/sql/planner.rs                 |  28 ++---
 rust/datafusion/tests/sql.rs                       |   2 +-
 15 files changed, 198 insertions(+), 157 deletions(-)
 rename rust/datafusion/src/execution/physical_plan/{selection.rs => filter.rs} (61%)