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 2023/06/04 05:24:54 UTC

[arrow-datafusion] branch add-greatest-least updated (8f6812626c -> 15bc806f0f)

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

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


 discard 8f6812626c fix coerce tests
 discard 6a4a04dbb0 coerce rules
 discard f8996c29fe add more unit tests
 discard 3ff0dd47c5 fix issue
 discard 74fb1fa8ad [built-in function] add greatest and least
     add 5ddcbc42c1 Resolve contradictory requirements by conversion of ordering sensitive aggregators (#6482)
     add 815413c4a4 fix: ignore panics if racing against catalog/schema changes (#6536)
     add 15bc806f0f [built-in function] add greatest and least

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   (8f6812626c)
            \
             N -- N -- N   refs/heads/add-greatest-least (15bc806f0f)

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/core/src/catalog/information_schema.rs  |  71 +++--
 datafusion/core/src/execution/context.rs           |   5 +-
 .../core/src/physical_plan/aggregates/mod.rs       | 338 +++++++++++++++------
 .../tests/sqllogictests/test_files/aggregate.slt   |   4 +-
 .../tests/sqllogictests/test_files/explain.slt     |   2 +-
 .../tests/sqllogictests/test_files/groupby.slt     | 205 +++++++++++++
 .../physical-expr/src/aggregate/first_last.rs      |  14 +-
 datafusion/physical-expr/src/aggregate/mod.rs      |  11 +
 datafusion/physical-expr/src/lib.rs                |   6 +-
 datafusion/physical-expr/src/sort_expr.rs          |   5 +-
 datafusion/physical-expr/src/type_coercion.rs      |   5 +-
 datafusion/physical-expr/src/utils.rs              |  38 +++
 datafusion/physical-expr/src/window/aggregate.rs   |   6 +-
 datafusion/physical-expr/src/window/built_in.rs    |   4 +-
 .../physical-expr/src/window/sliding_aggregate.rs  |   6 +-
 datafusion/physical-expr/src/window/window_expr.rs |  13 -
 16 files changed, 575 insertions(+), 158 deletions(-)