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

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


 discard e1c0fa36c6 chore(deps): bump the arrow-parquet group with 7 updates
     add 47462ed7c6 chore(deps): bump rust_decimal from 1.37.2 to 1.38.0 
(#17564)
     add 8b19ce83da chore(deps): bump semver from 1.0.26 to 1.0.27 (#17566)
     add e711f147e4 Generalize struct-to-struct casting with CastOptions and 
SchemaAdapter integration (#17468)
     add 7b45934b10 Add `TableProvider::scan_with_args`  (#17336)
     add b122a1643a fix: prevent UnionExec panic with empty inputs (#17449)
     add 7d08c27532 Use taiki-e/install-action and binstall in CI (#17573)
     add 3f22f8c802 Trying cargo machete to prune unused deps. (#17545)
     add 685f5d6c07 fix error message typo (#17570)
     add 62f214fede fix: ignore non-existent columns when adding filter 
equivalence info in `FileScanConfig` (#17546)
     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 b16797a90b chore(deps): bump the arrow-parquet group with 7 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   (e1c0fa36c6)
            \
             N -- N -- N   
refs/heads/dependabot/cargo/main/arrow-parquet-0f9d8047f9 (b16797a90b)

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                        |   4 +-
 .github/workflows/rust.yml                         |  14 +-
 Cargo.lock                                         | 160 +------
 Cargo.toml                                         |   6 +-
 README.md                                          |   1 +
 benchmarks/Cargo.toml                              |   1 -
 datafusion-cli/Cargo.toml                          |   5 +-
 datafusion/catalog/Cargo.toml                      |   1 -
 datafusion/catalog/src/table.rs                    | 139 ++++++
 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/lib.rs                       |   1 +
 datafusion/common/src/nested_struct.rs             | 481 ++++++++++++++++++---
 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                         |  19 +-
 datafusion/core/src/dataframe/mod.rs               |   6 +-
 datafusion/core/src/datasource/listing/table.rs    |  36 +-
 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            |  18 +-
 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     |   4 +-
 .../physical_optimizer/filter_pushdown/mod.rs      | 177 ++++++++
 .../physical_optimizer/partition_statistics.rs     |   2 +-
 .../physical_optimizer/projection_pushdown.rs      |   2 +-
 .../core/tests/physical_optimizer/test_utils.rs    |   2 +-
 datafusion/datasource-avro/Cargo.toml              |   6 -
 datafusion/datasource-csv/Cargo.toml               |   2 -
 datafusion/datasource-json/Cargo.toml              |   3 -
 datafusion/datasource-parquet/Cargo.toml           |   7 +-
 datafusion/datasource-parquet/src/opener.rs        |  12 +
 datafusion/datasource-parquet/src/source.rs        |   3 +
 datafusion/datasource/Cargo.toml                   |   2 -
 datafusion/datasource/src/file_scan_config.rs      |  73 +++-
 datafusion/datasource/src/schema_adapter.rs        |  36 +-
 datafusion/datasource/src/test_util.rs             |  12 +
 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/ffi/Cargo.toml                          |   2 +-
 datafusion/functions-nested/Cargo.toml             |   7 +-
 datafusion/functions-nested/src/planner.rs         |  18 +-
 .../src/simplify_expressions/expr_simplifier.rs    |  80 ++++
 datafusion/physical-expr-adapter/Cargo.toml        |   2 -
 datafusion/physical-expr-common/Cargo.toml         |   2 +-
 datafusion/physical-expr/Cargo.toml                |   3 +-
 datafusion/physical-optimizer/Cargo.toml           |   4 +-
 datafusion/physical-plan/Cargo.toml                |   3 +-
 .../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    |  16 +-
 datafusion/physical-plan/src/union.rs              | 126 +++++-
 datafusion/proto-common/Cargo.toml                 |   3 +-
 datafusion/proto/Cargo.toml                        |   6 +-
 datafusion/proto/src/physical_plan/mod.rs          |   2 +-
 .../proto/tests/cases/roundtrip_physical_plan.rs   |   4 +-
 datafusion/pruning/Cargo.toml                      |   1 -
 datafusion/session/Cargo.toml                      |  10 -
 datafusion/spark/Cargo.toml                        |   2 -
 datafusion/sql/Cargo.toml                          |   4 +-
 datafusion/sql/src/expr/function.rs                |  10 +-
 datafusion/sql/src/expr/substring.rs               |   3 +-
 datafusion/sql/tests/sql_integration.rs            |   4 +-
 datafusion/sqllogictest/Cargo.toml                 |   2 +-
 datafusion/sqllogictest/test_files/projection.slt  |   2 +-
 datafusion/sqllogictest/test_files/select.slt      |   6 +-
 datafusion/substrait/Cargo.toml                    |   4 +-
 datafusion/wasmtest/Cargo.toml                     |   7 +-
 dev/release/README.md                              |   1 +
 84 files changed, 1652 insertions(+), 431 deletions(-)


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

Reply via email to