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

[arrow-datafusion] branch dependabot/cargo/master/sqlparser-0.28 updated (cfa013750 -> 5499f44e4)

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 cfa013750 Update sqlparser requirement from 0.27 to 0.28
     add d9a47d681 fix `push_down_projection` push redundant columns. (#4487)
     add bfd41a3ff refactor: make Ctes a struct to also store data types provided by prepare stmt (#4520)
     add 0d63c68a2 Add get_window_frame in window_expr, show frame info in window_agg_exec (#4508)
     add 19cddf5d5 shouldn't add `outer_query_schema`. (#4527)
     add cedb05aed `date_part` support fractions of second (#4385)
     add 61a6c89dc Avoid reading the entire file in ChunkedStore (#4525)
     add 5f742841b refactor: remove redundant `build_join_schema()` (#4538)
     add 4c1f60c6a MINOR: add some comments about intended use of ChunkedStore (#4541)
     add fbadebb89 Fix querying and defining  table / view names with period (#4530)
     add 8547fd8a5 Support type coercion for timestamp and utf8 (#4312)
     add 15a7d5b2f fix: remove TODOs linked to arrow#3147 (#4540)
     add 1a55d64a4 fix planner generate replicated subquery_alias. (#4484)
     add 4538912db feat: support prepare statement (#4490)
     add 5499f44e4 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   (cfa013750)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/sqlparser-0.28 (5499f44e4)

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/q11.txt                  |    2 +-
 benchmarks/expected-plans/q13.txt                  |   23 +-
 benchmarks/expected-plans/q15.txt                  |    7 +-
 benchmarks/expected-plans/q2.txt                   |    4 +-
 benchmarks/src/tpch.rs                             |    6 +-
 datafusion-cli/Cargo.lock                          |    1 +
 datafusion/common/src/dfschema.rs                  |    2 +-
 datafusion/common/src/lib.rs                       |    2 +-
 datafusion/common/src/scalar.rs                    |   12 +-
 datafusion/common/src/table_reference.rs           |   90 +-
 datafusion/core/src/catalog/listing_schema.rs      |    8 +-
 datafusion/core/src/datasource/listing/helpers.rs  |    3 +-
 datafusion/core/src/datasource/listing/url.rs      |   12 +-
 datafusion/core/src/datasource/view.rs             |    6 +-
 datafusion/core/src/execution/context.rs           |   28 +-
 .../core/src/physical_plan/file_format/avro.rs     |   26 +-
 .../src/physical_plan/file_format/chunked_store.rs |  103 +-
 .../core/src/physical_plan/file_format/csv.rs      |   85 +-
 .../physical_plan/file_format/delimited_stream.rs  |   65 +-
 .../core/src/physical_plan/file_format/json.rs     |  127 +--
 datafusion/core/src/physical_plan/planner.rs       |   11 +
 .../src/physical_plan/windows/window_agg_exec.rs   |    9 +-
 datafusion/core/tests/sql/errors.rs                |    7 +-
 datafusion/core/tests/sql/explain_analyze.rs       |    9 +-
 datafusion/core/tests/sql/expr.rs                  |   32 +-
 datafusion/core/tests/sql/joins.rs                 |   17 +-
 datafusion/core/tests/sql/predicates.rs            |   21 +-
 datafusion/core/tests/sql/subqueries.rs            |    8 +-
 datafusion/core/tests/sql/window.rs                |   42 +-
 .../core/tests/sqllogictests/src/insert/mod.rs     |   28 +-
 datafusion/core/tests/sqllogictests/src/main.rs    |   12 +-
 .../core/tests/sqllogictests/test_files/ddl.slt    |  186 ++++
 .../core/tests/sqllogictests/test_files/insert.slt |   50 -
 .../tests/sqllogictests/test_files/prepare.slt     |   83 ++
 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/function.rs                    |    2 +-
 datafusion/expr/src/logical_plan/builder.rs        |   50 +-
 datafusion/expr/src/logical_plan/mod.rs            |    2 +-
 datafusion/expr/src/logical_plan/plan.rs           |   63 +-
 datafusion/expr/src/type_coercion/binary.rs        |   26 +
 datafusion/expr/src/utils.rs                       |   14 +-
 .../optimizer/src/common_subexpr_eliminate.rs      |    3 +-
 datafusion/optimizer/src/eliminate_cross_join.rs   |   29 +-
 datafusion/optimizer/src/lib.rs                    |    2 +-
 datafusion/optimizer/src/optimizer.rs              |    4 +-
 ...ection_push_down.rs => push_down_projection.rs} |   42 +-
 .../src/simplify_expressions/expr_simplifier.rs    |    3 +-
 .../src/aggregate/approx_percentile_cont.rs        |    4 +-
 .../physical-expr/src/aggregate/array_agg.rs       |    3 +-
 .../src/aggregate/array_agg_distinct.rs            |    3 +-
 .../physical-expr/src/aggregate/count_distinct.rs  |    8 +-
 datafusion/physical-expr/src/aggregate/median.rs   |    3 +-
 .../physical-expr/src/aggregate/sum_distinct.rs    |    3 +-
 .../physical-expr/src/datetime_expressions.rs      |   91 +-
 datafusion/physical-expr/src/window/aggregate.rs   |    4 +
 datafusion/physical-expr/src/window/built_in.rs    |    4 +
 datafusion/physical-expr/src/window/window_expr.rs |    4 +
 datafusion/proto/proto/datafusion.proto            |   43 +-
 datafusion/proto/src/from_proto.rs                 |   45 +-
 datafusion/proto/src/generated/pbjson.rs           |  829 ++++++++++++--
 datafusion/proto/src/generated/prost.rs            |   72 +-
 datafusion/proto/src/logical_plan.rs               |   69 +-
 datafusion/proto/src/to_proto.rs                   |   37 +-
 datafusion/sql/Cargo.toml                          |    1 +
 datafusion/sql/src/planner.rs                      | 1136 ++++++++++++++------
 datafusion/sql/src/utils.rs                        |   12 +
 69 files changed, 2911 insertions(+), 846 deletions(-)
 create mode 100644 datafusion/core/tests/sqllogictests/test_files/ddl.slt
 delete mode 100644 datafusion/core/tests/sqllogictests/test_files/insert.slt
 create mode 100644 datafusion/core/tests/sqllogictests/test_files/prepare.slt
 rename datafusion/optimizer/src/{projection_push_down.rs => push_down_projection.rs} (97%)