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/08 20:46:38 UTC

[arrow-datafusion] branch dependabot/cargo/master/sqllogictest-0.9.0 updated (eb4b807a6 -> f3b932cbd)

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

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


 discard eb4b807a6 Update sqllogictest requirement from 0.8.0 to 0.9.0
     add 1a55d64a4 fix planner generate replicated subquery_alias. (#4484)
     add 4538912db feat: support prepare statement (#4490)
     add 9d30479fe Add tests for coercion of timestamps to strings (#4545)
     add 5caf6d785 MINOR: move sqllogictest to dev-dependencies (#4544)
     add f3b932cbd Update sqllogictest requirement from 0.8.0 to 0.9.0

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   (eb4b807a6)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/sqllogictest-0.9.0 (f3b932cbd)

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:
 benchmarks/expected-plans/q13.txt                  |  23 +-
 datafusion-cli/Cargo.lock                          | 176 ++------
 datafusion/core/Cargo.toml                         |   2 +-
 datafusion/core/src/datasource/listing/helpers.rs  |   3 +-
 datafusion/core/src/physical_plan/planner.rs       |  11 +
 datafusion/core/tests/sql/explain_analyze.rs       |   3 +-
 datafusion/core/tests/sql/joins.rs                 |   2 +
 datafusion/core/tests/sql/window.rs                |  38 +-
 .../tests/sqllogictests/test_files/prepare.slt     |  83 ++++
 .../tests/sqllogictests/test_files/timestamps.slt  |  66 +++
 datafusion/expr/src/expr.rs                        |  11 +
 datafusion/expr/src/expr_rewriter.rs               |   1 +
 datafusion/expr/src/expr_schema.rs                 |   4 +-
 datafusion/expr/src/expr_visitor.rs                |   3 +-
 datafusion/expr/src/logical_plan/builder.rs        |  32 +-
 datafusion/expr/src/logical_plan/mod.rs            |   2 +-
 datafusion/expr/src/logical_plan/plan.rs           |  49 ++-
 datafusion/expr/src/utils.rs                       |  14 +-
 .../optimizer/src/common_subexpr_eliminate.rs      |   3 +-
 datafusion/optimizer/src/push_down_projection.rs   |   3 +-
 .../src/simplify_expressions/expr_simplifier.rs    |   3 +-
 datafusion/proto/proto/datafusion.proto            |  14 +
 datafusion/proto/src/from_proto.rs                 |  12 +-
 datafusion/proto/src/generated/pbjson.rs           | 261 ++++++++++++
 datafusion/proto/src/generated/prost.rs            |  24 +-
 datafusion/proto/src/logical_plan.rs               |  42 +-
 datafusion/proto/src/to_proto.rs                   |   5 +-
 datafusion/sql/Cargo.toml                          |   1 +
 datafusion/sql/src/planner.rs                      | 466 +++++++++++++++++----
 datafusion/sql/src/utils.rs                        |   4 +
 30 files changed, 1078 insertions(+), 283 deletions(-)
 create mode 100644 datafusion/core/tests/sqllogictests/test_files/prepare.slt
 create mode 100644 datafusion/core/tests/sqllogictests/test_files/timestamps.slt