You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ji...@apache.org on 2022/02/08 01:37:05 UTC

[arrow-datafusion] branch expr-split updated (0d90e5b -> 4022d32)

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

jiayuliu pushed a change to branch expr-split
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git.


 discard 0d90e5b  split up expr for rewriting, visiting, and simplification
     add 2ec34cf  move column, dfschema, etc. to common module (#1760)
     add 09c67d5  include window frames and operator into datafusion-expr (#1761)
     add 82ed9c8  split up expr for rewriting, visiting, and simplification
     add 69a3ced  split out
     add d7f2b5d  fix compile err
     add 1a16d36  fix formatting
     add 4022d32  fix more test compile err

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0d90e5b)
            \
             N -- N -- N   refs/heads/expr-split (4022d32)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 datafusion-common/Cargo.toml                       |    1 +
 datafusion-common/src/error.rs                     |   11 -
 datafusion-common/src/lib.rs                       |    6 +
 {datafusion => datafusion-common}/src/pyarrow.rs   |   18 +-
 {datafusion => datafusion-common}/src/scalar.rs    | 1435 ++-------------
 datafusion-expr/Cargo.toml                         |    1 +
 datafusion-expr/src/lib.rs                         |    4 +
 .../src/operator.rs                                |   73 +-
 .../src/window_frame.rs                            |   22 +-
 datafusion/src/lib.rs                              |    3 -
 datafusion/src/logical_plan/expr.rs                |  782 +-------
 datafusion/src/logical_plan/expr_rewriter.rs       |  589 ++++++
 datafusion/src/logical_plan/expr_simplier.rs       |   95 +
 datafusion/src/logical_plan/expr_visitor.rs        |  172 ++
 datafusion/src/logical_plan/mod.rs                 |   22 +-
 datafusion/src/logical_plan/operators.rs           |   83 +-
 datafusion/src/logical_plan/window_frames.rs       |  363 +---
 datafusion/src/scalar.rs                           | 1940 +-------------------
 datafusion/tests/simplification.rs                 |    1 +
 19 files changed, 1055 insertions(+), 4566 deletions(-)
 rename {datafusion => datafusion-common}/src/pyarrow.rs (92%)
 copy {datafusion => datafusion-common}/src/scalar.rs (61%)
 copy datafusion/src/logical_plan/operators.rs => datafusion-expr/src/operator.rs (67%)
 copy datafusion/src/logical_plan/window_frames.rs => datafusion-expr/src/window_frame.rs (96%)
 create mode 100644 datafusion/src/logical_plan/expr_rewriter.rs
 create mode 100644 datafusion/src/logical_plan/expr_simplier.rs
 create mode 100644 datafusion/src/logical_plan/expr_visitor.rs