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 2022/02/09 14:50:18 UTC

[arrow-datafusion] branch master updated (071f14a -> ecd0081)

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 071f14a  Update `ExecutionPlan` to know about sortedness and repartitioning optimizer pass respect the invariants (#1776)
     add ecd0081  [split/13] move rest of expr to expr_fn in datafusion-expr module (#1794)

No new revisions were added by this update.

Summary of changes:
 datafusion-expr/src/accumulator.rs        |   2 +
 datafusion-expr/src/aggregate_function.rs |   2 +
 datafusion-expr/src/built_in_function.rs  |   2 +-
 datafusion-expr/src/columnar_value.rs     |   2 +
 datafusion-expr/src/expr.rs               |  27 ++
 datafusion-expr/src/expr_fn.rs            | 392 +++++++++++++++++++++++++++-
 datafusion-expr/src/function.rs           |   2 +
 datafusion-expr/src/literal.rs            |   2 +
 datafusion-expr/src/operator.rs           |  31 +++
 datafusion-expr/src/signature.rs          |  16 +-
 datafusion-expr/src/udaf.rs               |   2 +-
 datafusion-expr/src/udf.rs                |   2 +-
 datafusion-expr/src/window_frame.rs       |   2 +-
 datafusion-expr/src/window_function.rs    |   3 +
 datafusion/src/logical_plan/expr.rs       | 414 +-----------------------------
 datafusion/src/logical_plan/operators.rs  |  29 ---
 16 files changed, 484 insertions(+), 446 deletions(-)