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

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


 discard 5c617d9049 chore(deps): bump indexmap from 2.11.1 to 2.11.3
     add e14322da19 feat: Simplify CASE WHEN true THEN expr to expr (#17450)
     add 0a1a1b6a1b chore(deps): bump taiki-e/install-action from 2.61.5 to 
2.61.6 (#17586)
     add c61ac33bdf feat: add "unicode_expressions" feature to datafusion 
dev-dependency (#17584)
     add 49d49fd92d fix: Remove duplicate expressions in dynamicFilter when 
PartitionMode is CollectLeft` (#17551)
     add 10f41887fa chore: replace deprecated UnionExec API (#17588)
     add 9efabf9d35 minor: fix compilation issue for extended tests due to 
missing parquet encryption flag (#17579)
     add 1a53ba0d20 Update release readme (#17591)
     add 0181c7906b feat: add `sql` feature to make sql planning optional 
(#17332)
     add 260d1b1b90 chore(deps): bump indexmap from 2.11.1 to 2.11.3

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   (5c617d9049)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/indexmap-2.11.3 
(260d1b1b90)

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/audit.yml                        |   2 +-
 .github/workflows/rust.yml                         |   8 +-
 Cargo.lock                                         |   2 +
 Cargo.toml                                         |   6 +-
 README.md                                          |   1 +
 datafusion-cli/Cargo.toml                          |   3 +-
 datafusion/common/Cargo.toml                       |   4 +-
 datafusion/common/src/column.rs                    |  16 +-
 datafusion/common/src/config.rs                    |   4 +-
 datafusion/common/src/error.rs                     |   6 +
 datafusion/common/src/parsers.rs                   |   8 +-
 datafusion/common/src/spans.rs                     |   2 +
 datafusion/common/src/table_reference.rs           |  27 ++--
 datafusion/common/src/utils/mod.rs                 |  62 +++++++-
 datafusion/core/Cargo.toml                         |  17 +-
 datafusion/core/src/dataframe/mod.rs               |   6 +-
 datafusion/core/src/execution/context/mod.rs       |   3 +
 datafusion/core/src/execution/session_state.rs     |  96 ++++++++---
 datafusion/core/src/lib.rs                         |   3 +
 datafusion/core/src/physical_planner.rs            |   5 +-
 datafusion/core/src/test_util/mod.rs               |   1 +
 datafusion/core/tests/dataframe/mod.rs             |   5 +-
 datafusion/core/tests/expr_api/mod.rs              |   2 +-
 .../physical_optimizer/enforce_distribution.rs     |   6 +-
 .../physical_optimizer/filter_pushdown/mod.rs      | 177 +++++++++++++++++++++
 .../physical_optimizer/partition_statistics.rs     |   3 +-
 .../physical_optimizer/projection_pushdown.rs      |   3 +-
 .../core/tests/physical_optimizer/test_utils.rs    |   3 +-
 datafusion/datasource-parquet/src/opener.rs        |   1 +
 datafusion/execution/Cargo.toml                    |   7 +-
 datafusion/expr/Cargo.toml                         |   7 +-
 datafusion/expr/src/expr.rs                        | 154 +++++++++++++++++-
 datafusion/expr/src/expr_fn.rs                     |   5 +-
 datafusion/expr/src/lib.rs                         |   3 +
 datafusion/expr/src/logical_plan/ddl.rs            |   3 +
 datafusion/expr/src/planner.rs                     |  25 +--
 datafusion/expr/src/utils.rs                       |   3 +
 datafusion/expr/src/window_frame.rs                |  21 ++-
 datafusion/functions-nested/Cargo.toml             |   7 +-
 datafusion/functions-nested/src/planner.rs         |  18 +--
 .../src/simplify_expressions/expr_simplifier.rs    |  80 ++++++++++
 datafusion/physical-expr-common/Cargo.toml         |   2 +-
 datafusion/physical-expr/Cargo.toml                |   2 +-
 datafusion/physical-optimizer/Cargo.toml           |   2 +-
 datafusion/physical-plan/Cargo.toml                |   2 +-
 .../physical-plan/src/joins/hash_join/exec.rs      |   1 +
 .../src/joins/hash_join/shared_bounds.rs           |  30 +++-
 .../physical-plan/src/joins/hash_join/stream.rs    |  16 +-
 datafusion/physical-plan/src/repartition/mod.rs    |  18 +--
 datafusion/physical-plan/src/union.rs              |   9 +-
 datafusion/proto/Cargo.toml                        |   6 +-
 datafusion/proto/src/physical_plan/mod.rs          |   3 +-
 .../proto/tests/cases/roundtrip_physical_plan.rs   |   5 +-
 datafusion/sql/Cargo.toml                          |   4 +-
 datafusion/sql/src/expr/function.rs                |  10 +-
 datafusion/sqllogictest/test_files/projection.slt  |   2 +-
 datafusion/sqllogictest/test_files/select.slt      |   6 +-
 datafusion/substrait/Cargo.toml                    |   4 +-
 datafusion/wasmtest/Cargo.toml                     |   4 +-
 dev/release/README.md                              |   1 +
 60 files changed, 773 insertions(+), 169 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org
For additional commands, e-mail: commits-h...@datafusion.apache.org

Reply via email to