You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2022/12/09 14:43:18 UTC

[arrow-datafusion] branch dependabot/cargo/master/sqlparser-0.28 updated (7a28b4e3f -> 4924fd07a)

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

github-bot pushed a change to branch dependabot/cargo/master/sqlparser-0.28
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


 discard 7a28b4e3f Update sqlparser requirement from 0.27 to 0.28
     add d67bb5715 Fix date_part/extract functions to support now() (#4548)
     add 747e5a7bf fix: remove wrong comment about having (#4555)
     add 36c386188 remove alias (#4559)
     add 03a6a9ffc Remove the schema checking when creating `CrossJoinExec` (#4432)
     add 31bbe6c3e Fix panic in median "AggregateState is not a scalar aggregate" (#4488)
     add f2eb3b2be Minor: Fix logical conflict (#4565)
     add 8365d960f bump sqllogictest to 0.9.0 (#4547)
     add 4924fd07a Update sqlparser requirement from 0.27 to 0.28

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   (7a28b4e3f)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/sqlparser-0.28 (4924fd07a)

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-cli/Cargo.lock                          |   8 +-
 datafusion/common/src/scalar.rs                    |   6 +-
 datafusion/core/Cargo.toml                         |   2 +-
 .../core/src/physical_optimizer/join_selection.rs  |   2 +-
 .../core/src/physical_plan/joins/cross_join.rs     |  39 +-
 datafusion/core/src/physical_plan/planner.rs       |   2 +-
 datafusion/core/tests/sql/expr.rs                  |  76 +++
 .../core/tests/sqllogictests/src/insert/mod.rs     |   6 +-
 datafusion/core/tests/sqllogictests/src/main.rs    |  36 +-
 .../core/tests/sqllogictests/src/normalize.rs      |   6 +-
 .../tests/sqllogictests/test_files/aggregate.slt   | 586 ++++++++++++---------
 .../core/tests/sqllogictests/test_files/ddl.slt    |   2 +-
 .../core/tests/sqllogictests/test_files/misc.slt   |   4 +-
 datafusion/expr/src/function.rs                    |   4 +
 datafusion/physical-expr/src/aggregate/median.rs   | 238 ++++-----
 .../physical-expr/src/datetime_expressions.rs      |   2 +-
 datafusion/proto/src/physical_plan/mod.rs          |   2 +-
 datafusion/sql/src/planner.rs                      |  64 +--
 18 files changed, 591 insertions(+), 494 deletions(-)