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/07 15:21:48 UTC

[arrow-datafusion] branch datafusion-common-scalar updated (a2d2f85 -> 685c079)

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

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


 discard a2d2f85  move column, dfschema, etc. to common module
     add a39a223  add datafusion-expr module (#1759)
     add 685c079  move column, dfschema, etc. to common module

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   (a2d2f85)
            \
             N -- N -- N   refs/heads/datafusion-common-scalar (685c079)

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:
 Cargo.toml                                         |   1 +
 {datafusion-common => datafusion-expr}/Cargo.toml  |  14 +-
 {datafusion-common => datafusion-expr}/README.md   |   4 +-
 datafusion-expr/src/aggregate_function.rs          |  93 ++++++++++
 .../rust/client => datafusion-expr}/src/lib.rs     |   8 +-
 datafusion-expr/src/window_function.rs             | 204 +++++++++++++++++++++
 datafusion/Cargo.toml                              |   1 +
 datafusion/src/physical_plan/aggregates.rs         |  76 +-------
 datafusion/src/physical_plan/window_functions.rs   | 186 +------------------
 9 files changed, 315 insertions(+), 272 deletions(-)
 copy {datafusion-common => datafusion-expr}/Cargo.toml (79%)
 copy {datafusion-common => datafusion-expr}/README.md (89%)
 create mode 100644 datafusion-expr/src/aggregate_function.rs
 copy {ballista/rust/client => datafusion-expr}/src/lib.rs (83%)
 create mode 100644 datafusion-expr/src/window_function.rs