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

github-bot pushed a change to branch dependabot/cargo/main/proto-5f30c81d2c
in repository https://gitbox.apache.org/repos/asf/datafusion.git


    omit a54f380aad chore(deps): bump the proto group with 2 updates
     add 82da493646 chore: add memory catalog test to handle table removal 
before schema deregistration (#17307)
     add 1158285772 chore(deps): bump actions/setup-node from 4.4.0 to 5.0.0 
(#17410)
     add 9e6e772c32 chore(deps): bump actions/stale from 9.1.0 to 10.0.0 
(#17409)
     add 12e6ae40af chore(deps): bump actions/labeler from 5.0.0 to 6.0.0 
(#17408)
     add 71d3d29719 fix: set distinct_count to Absent when merging statistics 
(#17385)
     add a68563b30a doc: Document caveats of `swap_inputs()` interface in join 
executors (#17373)
     add 2036f37dc0 Fix syntax error in DDL documentation example (#17412)
     add 002b021952 #17392 Avoid panic when 'with order' expression could not 
be converted to a logical expression (#17394)
     add 95c7c69ad9 chore(deps): bump apache-avro from 0.17.0 to 0.20.0 (#16092)
     add e6aed165a8 chore(deps): bump actions/setup-python from 5.6.0 to 6.0.0 
(#17413)
     add 03f39e5147 Test grouping by FixedSizeList (#17415)
     add cb69574c0f Add MSRV bump to 1.86.0 to upgrade guide (#17406)
     add 24e2f7fc9f re-export physical_expr_adapter (#17414)
     add a951fc9c33 Use a struct for ProjectionExpr (#17398)
     add ad0beb483e Benchmark window function with multiple partitioning 
columns (#17402)
     add e8d56e1fdd Fix PartialOrd for Window (#17393)
     add 4dc1a4fb91 Make EncryptionFactory async (#17342)
     add 3d5863b059 Use DataFusionError instead of ArrowError in FileOpenFuture 
(#17397)
     add 051269e97a fix: Remove duplicate filter from `CrossJoin` unparsing 
(#17382)
     add 268e115136 fix: set IPC alignment based on schema (#17363)
     add 6fd5685041 Memory datasource protobuf support (#17290)
     add 24f879e18b chore(deps): bump the proto group with 2 updates

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   (a54f380aad)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/proto-5f30c81d2c 
(24f879e18b)

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:
 .github/workflows/dev.yml                          |   2 +-
 .github/workflows/docs.yaml                        |   2 +-
 .github/workflows/docs_pr.yaml                     |   2 +-
 .github/workflows/labeler.yml                      |   2 +-
 .github/workflows/rust.yml                         |   2 +-
 .github/workflows/stale.yml                        |   2 +-
 Cargo.lock                                         | 207 ++++++--------
 Cargo.toml                                         |   2 +-
 .../examples/parquet_encrypted_with_kms.rs         |   6 +-
 datafusion/common/Cargo.toml                       |   2 +-
 datafusion/common/src/stats.rs                     |  47 ++++
 datafusion/core/benches/sql_planner.rs             |  27 ++
 .../src/datasource/physical_plan/arrow_file.rs     |  15 +-
 datafusion/core/src/lib.rs                         |   5 +
 datafusion/core/src/physical_planner.rs            |  20 +-
 datafusion/core/tests/catalog/memory.rs            |  14 +
 datafusion/core/tests/execution/coop.rs            |   4 +-
 datafusion/core/tests/parquet/encryption.rs        |  19 +-
 .../physical_optimizer/enforce_distribution.rs     |  15 +-
 .../physical_optimizer/filter_pushdown/util.rs     |  12 +-
 .../tests/physical_optimizer/join_selection.rs     |  24 +-
 .../physical_optimizer/partition_statistics.rs     |   8 +-
 .../physical_optimizer/projection_pushdown.rs      | 158 ++++++-----
 .../core/tests/physical_optimizer/test_utils.rs    |   8 +-
 datafusion/core/tests/sql/joins.rs                 |  44 +++
 .../src/avro_to_arrow/arrow_array_reader.rs        |   5 +-
 .../datasource-avro/src/avro_to_arrow/schema.rs    |   5 +-
 datafusion/datasource-avro/src/source.rs           |   8 +-
 datafusion/datasource-csv/src/source.rs            |   9 +-
 datafusion/datasource-json/src/source.rs           |   9 +-
 datafusion/datasource-parquet/src/file_format.rs   |  34 ++-
 datafusion/datasource-parquet/src/opener.rs        | 105 ++++---
 datafusion/datasource/src/file_scan_config.rs      |   6 +-
 datafusion/datasource/src/file_stream.rs           |  19 +-
 datafusion/execution/Cargo.toml                    |   1 +
 datafusion/execution/src/parquet_encryption.rs     |   6 +-
 datafusion/expr/src/logical_plan/plan.rs           |  82 +++++-
 .../physical-optimizer/src/aggregate_statistics.rs |   8 +-
 .../physical-optimizer/src/enforce_distribution.rs |  18 +-
 .../physical-optimizer/src/topk_aggregation.rs     |   7 +-
 datafusion/physical-plan/src/filter.rs             |  10 +-
 datafusion/physical-plan/src/joins/cross_join.rs   |   6 +
 .../physical-plan/src/joins/hash_join/exec.rs      |  15 +
 .../physical-plan/src/joins/nested_loop_join.rs    |   6 +
 .../src/joins/sort_merge_join/exec.rs              |   5 +
 datafusion/physical-plan/src/joins/utils.rs        |  53 ++--
 datafusion/physical-plan/src/projection.rs         | 305 ++++++++++++++-------
 datafusion/physical-plan/src/spill/mod.rs          |  47 +++-
 .../src/windows/bounded_window_agg_exec.rs         |   8 +-
 datafusion/proto/proto/datafusion.proto            |  10 +
 datafusion/proto/src/generated/pbjson.rs           | 200 ++++++++++++++
 datafusion/proto/src/generated/prost.rs            |  19 +-
 datafusion/proto/src/physical_plan/from_proto.rs   |  14 +
 datafusion/proto/src/physical_plan/mod.rs          | 124 ++++++++-
 datafusion/proto/src/physical_plan/to_proto.rs     |  16 ++
 .../proto/tests/cases/roundtrip_physical_plan.rs   |  31 ++-
 datafusion/sql/src/statement.rs                    |  20 +-
 datafusion/sql/src/unparser/plan.rs                |   7 -
 datafusion/sql/tests/cases/plan_to_sql.rs          |   1 +
 datafusion/sqllogictest/test_files/array.slt       |  14 +-
 datafusion/sqllogictest/test_files/order.slt       |   7 +
 docs/source/library-user-guide/upgrading.md        |  60 ++++
 docs/source/user-guide/sql/ddl.md                  |   2 +-
 63 files changed, 1439 insertions(+), 512 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to