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/08/30 23:20:34 UTC

[arrow-datafusion] branch dependabot/cargo/master/pyo3-0.17 updated (13472ef05 -> d6d90ddb7)

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

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


 discard 13472ef05 Update pyo3 requirement from 0.16 to 0.17
     add 7aed4d697 Fix propagation of optimized predicates on nested projections (#3228)
     add 3effee86f Execute LogicalPlans after building for TPCH Benchmarks (#3290)
     add a4e74c0bc support inlist for pre cast literal expression (#3270)
     add 260923de3 docs: update the Python library repository (#3297)
     add 7dedcb196 fix: speed up `ConfigOptions` creation (#3296)
     add 256ea91b1 Allow sorting by aggregated groups (#3280)
     add fb2f0db6c support for non-correlated subqueries (#3287)
     add a32c40894 `Expr` variants for boolean operations (#3275)
     add fcd2275a5 Upgrade to arrow 21 (#3225)
     add d6d90ddb7 Update pyo3 requirement from 0.16 to 0.17

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   (13472ef05)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/pyo3-0.17 (d6d90ddb7)

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/src/bin/tpch.rs                         |  36 ++--
 datafusion-cli/Cargo.toml                          |   2 +-
 datafusion-examples/Cargo.toml                     |   2 +-
 datafusion/common/Cargo.toml                       |   6 +-
 datafusion/common/src/scalar.rs                    |   5 +-
 datafusion/core/Cargo.toml                         |   4 +-
 datafusion/core/fuzz-utils/Cargo.toml              |   2 +-
 datafusion/core/src/config.rs                      |   6 +-
 datafusion/core/src/datasource/listing/helpers.rs  |   6 +
 datafusion/core/src/physical_optimizer/pruning.rs  |   2 +-
 datafusion/core/src/physical_plan/hash_join.rs     |  10 +-
 datafusion/core/src/physical_plan/hash_utils.rs    |   6 +-
 datafusion/core/src/physical_plan/planner.rs       |  24 +++
 datafusion/core/src/test/mod.rs                    |   4 +-
 datafusion/core/tests/parquet_pruning.rs           |   2 +-
 datafusion/core/tests/sql/group_by.rs              |  72 ++++++++
 datafusion/core/tests/sql/projection.rs            |  39 +++++
 datafusion/core/tests/sql/select.rs                |   4 +-
 datafusion/expr/Cargo.toml                         |   2 +-
 datafusion/expr/src/expr.rs                        |  48 ++++++
 datafusion/expr/src/expr_rewriter.rs               |  24 ++-
 datafusion/expr/src/expr_schema.rs                 |  18 +-
 datafusion/expr/src/expr_visitor.rs                |   6 +
 datafusion/expr/src/logical_plan/builder.rs        |  11 +-
 datafusion/expr/src/utils.rs                       |   6 +
 datafusion/jit/Cargo.toml                          |   2 +-
 datafusion/optimizer/Cargo.toml                    |   2 +-
 .../optimizer/src/common_subexpr_eliminate.rs      |  18 ++
 .../optimizer/src/decorrelate_scalar_subquery.rs   |  90 +++++++---
 datafusion/optimizer/src/filter_push_down.rs       |  66 +++++---
 .../optimizer/src/pre_cast_lit_in_comparison.rs    | 181 ++++++++++++++++++++-
 datafusion/optimizer/src/simplify_expressions.rs   |   6 +
 datafusion/optimizer/src/utils.rs                  |   4 +-
 datafusion/physical-expr/Cargo.toml                |   2 +-
 datafusion/physical-expr/src/aggregate/average.rs  |   3 +-
 datafusion/physical-expr/src/aggregate/min_max.rs  |  22 ++-
 datafusion/physical-expr/src/aggregate/sum.rs      |   7 +-
 datafusion/physical-expr/src/expressions/cast.rs   |  27 +--
 .../physical-expr/src/expressions/try_cast.rs      |   5 +-
 datafusion/proto/Cargo.toml                        |   2 +-
 datafusion/proto/proto/datafusion.proto            |  31 ++++
 datafusion/proto/src/from_proto.rs                 |  18 ++
 datafusion/proto/src/lib.rs                        |   4 +-
 datafusion/proto/src/to_proto.rs                   |  48 ++++++
 datafusion/row/Cargo.toml                          |   2 +-
 datafusion/sql/Cargo.toml                          |   2 +-
 datafusion/sql/src/utils.rs                        |  18 ++
 python/README.md                                   |   2 +-
 48 files changed, 766 insertions(+), 143 deletions(-)