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:23:01 UTC

[arrow-datafusion] branch datafusion-expr-window-ops updated (1cddd63 -> 798f3f1)

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

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


    omit 1cddd63  include window frames and operator into datafusion-expr
    omit a52f1d7  update and add version
    omit 6d4b3d5  format
    omit c655499  add datafusion-expr module
    omit 839b45c  move column, dfschema, etc. to common module
    omit 3d26ac4  move dfschema and column
    omit 1b09497  include publishing
    omit 9d9a31b  Update datafusion/Cargo.toml
    omit c63950d  Update datafusion-common/README.md
    omit 472e3d5  pyarrow
    omit 6ede97b  split datafusion-common module
     add f139ef8  #1768 Support TimeUnit::Second in hasher (#1769)
     add 31d0adf  format (#1745)
     add 40c29e5  Create built-in scalar functions programmatically (#1734)
     add fe46a1e  [split/1] split datafusion-common module (#1751)
     add d014ff2  fix: Case insensitive unquoted identifiers (#1747)
     add 2e535f9  move dfschema and column (#1758)
     add a39a223  add datafusion-expr module (#1759)
     add 798f3f1  include window frames and operator into datafusion-expr

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   (1cddd63)
            \
             N -- N -- N   refs/heads/datafusion-expr-window-ops (798f3f1)

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:
 README.md                                          | 356 +--------------------
 datafusion/src/execution/context.rs                | 167 ++++++++++
 datafusion/src/logical_plan/expr.rs                |  14 +
 datafusion/src/logical_plan/mod.rs                 |   2 +-
 datafusion/src/optimizer/simplify_expressions.rs   |  45 +--
 datafusion/src/physical_plan/hash_utils.rs         |  14 +-
 datafusion/src/sql/planner.rs                      |  18 +-
 datafusion/src/sql/utils.rs                        |   9 +
 docs/source/index.rst                              |   1 +
 docs/source/specification/quarterly_roadmap.md     |  72 +++++
 docs/source/user-guide/sql/index.rst               |   1 +
 .../source/user-guide/sql/sql_status.md            | 194 -----------
 12 files changed, 302 insertions(+), 591 deletions(-)
 create mode 100644 docs/source/specification/quarterly_roadmap.md
 copy README.md => docs/source/user-guide/sql/sql_status.md (57%)