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:02 UTC

[arrow-datafusion] branch master updated (2e535f9 -> a39a223)

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

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


    from 2e535f9  move dfschema and column (#1758)
     add a39a223  add datafusion-expr module (#1759)

No new revisions were added by this update.

Summary of changes:
 Cargo.toml                                         |   1 +
 {datafusion-common => datafusion-expr}/Cargo.toml  |  13 +-
 {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(+), 271 deletions(-)
 copy {datafusion-common => datafusion-expr}/Cargo.toml (81%)
 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