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

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


    omit 4fc68fde31 Update itertools requirement from 0.12 to 0.13
     add dbd77b4cb2 Break up contributing guide into smaller pages (#10533)
     add d2fb05ed5b PhysicalExpr Orderings with Range Information (#10504)
     add ea023e2d48 Implement unparse `ScalarVariable` to String (#10541)
     add 4e55768deb feat: Expose Parquet Schema Adapter (#10515)
     add e7858ff0ab Handle dictionary values in ScalarValue serde (#10563)
     add d4197520b5 Improve signature of get_field (#10569)
     add e6920c3386 Implement Unparse `GroupingSet` Expr --> String Support  
sql (#10555)
     add b36f5e2020 Minor: Move proxy to datafusion common (#10561)
     add bc53eb11c8 Update itertools requirement from 0.12 to 0.13

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   (4fc68fde31)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/itertools-0.13 
(bc53eb11c8)

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:
 Cargo.toml                                         |   1 +
 datafusion-cli/Cargo.lock                          |   1 +
 datafusion-examples/examples/advanced_udf.rs       |  28 +--
 datafusion-examples/examples/function_factory.rs   |  13 +-
 datafusion/common/Cargo.toml                       |   1 +
 datafusion/common/src/{utils.rs => utils/mod.rs}   |   2 +
 .../src/memory_pool => common/src/utils}/proxy.rs  |   8 +-
 datafusion/core/Cargo.toml                         |   2 +-
 .../core/src/datasource/file_format/parquet.rs     |   6 +-
 .../core/src/datasource/physical_plan/mod.rs       |  78 +++---
 .../src/datasource/physical_plan/parquet/mod.rs    |  31 ++-
 .../physical_plan/parquet/schema_adapter.rs        |  69 ++++++
 .../src/physical_optimizer/enforce_distribution.rs |   8 +-
 .../core/src/physical_optimizer/join_selection.rs  |   4 +-
 .../src/physical_optimizer/projection_pushdown.rs  |   4 -
 datafusion/core/tests/expr_api/mod.rs              |   4 +-
 .../fuzz_cases/sort_preserving_repartition_fuzz.rs |   6 +-
 datafusion/core/tests/parquet/mod.rs               |   1 +
 datafusion/core/tests/parquet/schema_adapter.rs    | 171 +++++++++++++
 .../user_defined/user_defined_scalar_functions.rs  |  15 +-
 datafusion/execution/Cargo.toml                    |   2 +-
 datafusion/execution/src/memory_pool/mod.rs        |   4 +-
 datafusion/expr/src/interval_arithmetic.rs         | 104 ++++++--
 datafusion/expr/src/lib.rs                         |   4 +-
 datafusion/expr/src/signature.rs                   |   8 -
 .../src/sort_properties.rs                         |  59 +++--
 datafusion/expr/src/udf.rs                         | 132 ++++++++--
 datafusion/functions/Cargo.toml                    |   2 +-
 datafusion/functions/src/core/mod.rs               |   6 +-
 datafusion/functions/src/datetime/date_bin.rs      |  28 ++-
 datafusion/functions/src/datetime/date_trunc.rs    |  33 ++-
 datafusion/functions/src/macros.rs                 |  36 +--
 datafusion/functions/src/math/abs.rs               |  43 ++--
 datafusion/functions/src/math/log.rs               |  46 ++--
 datafusion/functions/src/math/mod.rs               |  72 ++++--
 datafusion/functions/src/math/monotonicity.rs      | 241 ++++++++++++++++++
 datafusion/functions/src/math/pi.rs                |  10 +-
 datafusion/functions/src/math/round.rs             |  27 ++-
 datafusion/functions/src/math/trunc.rs             |  27 ++-
 datafusion/optimizer/Cargo.toml                    |   2 +-
 datafusion/physical-expr-common/src/lib.rs         |   1 -
 .../physical-expr-common/src/physical_expr.rs      |  24 +-
 datafusion/physical-expr-common/src/utils.rs       |  31 ++-
 datafusion/physical-expr/Cargo.toml                |   2 +-
 datafusion/physical-expr/src/equivalence/mod.rs    |  15 +-
 .../physical-expr/src/equivalence/ordering.rs      |  26 +-
 .../physical-expr/src/equivalence/projection.rs    |  25 +-
 .../physical-expr/src/equivalence/properties.rs    | 223 ++++++++++-------
 datafusion/physical-expr/src/expressions/binary.rs |  57 +++--
 datafusion/physical-expr/src/expressions/cast.rs   |  28 ++-
 .../physical-expr/src/expressions/literal.rs       |  11 +-
 .../physical-expr/src/expressions/negative.rs      |   9 +-
 datafusion/physical-expr/src/functions.rs          |   8 +-
 datafusion/physical-expr/src/lib.rs                |   7 -
 datafusion/physical-expr/src/scalar_function.rs    | 114 +++------
 datafusion/physical-expr/src/utils/mod.rs          |  11 +-
 datafusion/physical-plan/Cargo.toml                |   2 +-
 datafusion/physical-plan/src/aggregates/mod.rs     |   2 +-
 datafusion/physical-plan/src/filter.rs             |   5 +-
 datafusion/proto/proto/datafusion.proto            |   6 +
 datafusion/proto/src/generated/pbjson.rs           | 133 ++++++++++
 datafusion/proto/src/generated/prost.rs            |  13 +
 datafusion/proto/src/logical_plan/from_proto.rs    |  49 +++-
 datafusion/proto/src/logical_plan/to_proto.rs      |   9 +-
 datafusion/proto/src/physical_plan/from_proto.rs   |   1 -
 datafusion/proto/src/physical_plan/mod.rs          |   4 +-
 .../proto/tests/cases/roundtrip_logical_plan.rs    |  49 ++++
 .../proto/tests/cases/roundtrip_physical_plan.rs   |   2 -
 datafusion/sql/src/unparser/expr.rs                |  92 ++++++-
 datafusion/sqllogictest/test_files/order.slt       | 151 ++++++++++++
 docs/source/contributor-guide/getting_started.md   |  87 +++++++
 docs/source/contributor-guide/howtos.md            | 129 ++++++++++
 docs/source/contributor-guide/index.md             | 268 ---------------------
 docs/source/contributor-guide/testing.md           | 105 ++++++++
 docs/source/index.rst                              |   5 +-
 75 files changed, 2196 insertions(+), 847 deletions(-)
 rename datafusion/common/src/{utils.rs => utils/mod.rs} (99%)
 rename datafusion/{execution/src/memory_pool => common/src/utils}/proxy.rs 
(95%)
 create mode 100644 
datafusion/core/src/datasource/physical_plan/parquet/schema_adapter.rs
 create mode 100644 datafusion/core/tests/parquet/schema_adapter.rs
 rename datafusion/{physical-expr-common => expr}/src/sort_properties.rs (77%)
 create mode 100644 datafusion/functions/src/math/monotonicity.rs
 create mode 100644 docs/source/contributor-guide/getting_started.md
 create mode 100644 docs/source/contributor-guide/howtos.md
 create mode 100644 docs/source/contributor-guide/testing.md


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

Reply via email to