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

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


    omit 96e3febf4f chore(deps): bump arrow from 54.1.0 to 54.2.0
     add 2fce1ef322 perf: Drop RowConverter from GroupOrderingPartial (#14566)
     add b09c09a727 Speedup `to_hex` (~2x faster) (#14686)
     add d79160b0d1 chore(deps): bump tempfile from 3.16.0 to 3.17.0 (#14713)
     add 42eabb97f9 bug: improve schema checking for `insert into` cases 
(#14572)
     add 580e622d73 Early exit on column normalisation to improve DataFrame 
performance (#14636)
     add 54228d7aff Add example for `LogicalPlanBuilder::insert_into` (#14663)
     add 8b45d2d72f optimize performance of the repeat function (up to 50% 
faster) (#14697)
     add ece45554af `AggregateUDFImpl::schema_name` and 
`AggregateUDFImpl::display_name` for customizable name (#14695)
     add ee2dc833b0 Add an example of boundary analysis simple expressions. 
(#14688)
     add 3ee51cb792 chore(deps): bump arrow-ipc from 54.1.0 to 54.2.0 (#14719)
     add 1c882796f3 chore(deps): bump arrow from 54.1.0 to 54.2.0

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   (96e3febf4f)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/arrow-54.2.0 
(1c882796f3)

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.lock                                         |   4 +-
 Cargo.toml                                         |   2 +-
 datafusion-examples/examples/advanced_udaf.rs      |  10 +-
 datafusion-examples/examples/expr_api.rs           |  74 ++++++-
 datafusion/common/src/dfschema.rs                  |  49 +++--
 datafusion/core/src/dataframe/mod.rs               |   5 +-
 datafusion/core/src/datasource/listing/table.rs    |  23 +--
 datafusion/core/src/datasource/memory.rs           |  23 +--
 datafusion/core/src/physical_planner.rs            |  16 +-
 datafusion/core/tests/dataframe/mod.rs             |  78 +++++++-
 datafusion/core/tests/execution/logical_plan.rs    |  14 +-
 datafusion/expr/src/expr.rs                        | 120 +++++-------
 datafusion/expr/src/expr_fn.rs                     |   8 +-
 datafusion/expr/src/expr_schema.rs                 |   9 +-
 datafusion/expr/src/logical_plan/builder.rs        |  43 +++-
 datafusion/expr/src/tree_node.rs                   |  20 +-
 datafusion/expr/src/udaf.rs                        | 104 +++++++++-
 datafusion/functions-nested/src/planner.rs         |  45 +++--
 datafusion/functions/Cargo.toml                    |   5 +
 .../functions/benches/{upper.rs => to_hex.rs}      |  38 ++--
 datafusion/functions/src/string/repeat.rs          |  23 ++-
 datafusion/functions/src/string/to_hex.rs          |  39 ++--
 .../optimizer/src/analyzer/count_wildcard_rule.rs  |   7 +-
 .../src/analyzer/resolve_grouping_function.rs      |   3 +-
 datafusion/optimizer/src/analyzer/type_coercion.rs |  17 +-
 .../optimizer/src/single_distinct_to_groupby.rs    |  18 +-
 datafusion/physical-plan/Cargo.toml                |   4 +
 .../physical-plan/benches/partial_ordering.rs      |  77 ++++++++
 .../physical-plan/src/aggregates/order/partial.rs  | 217 ++++++++++++++++-----
 datafusion/proto/src/logical_plan/to_proto.rs      |  17 +-
 datafusion/sql/src/unparser/expr.rs                |  15 +-
 .../test_files/aggregate_skip_partial.slt          |   3 +-
 datafusion/sqllogictest/test_files/insert.slt      |  14 +-
 .../sqllogictest/test_files/insert_to_external.slt |  12 +-
 datafusion/substrait/src/logical_plan/producer.rs  |  16 +-
 35 files changed, 849 insertions(+), 323 deletions(-)
 copy datafusion/functions/benches/{upper.rs => to_hex.rs} (57%)
 create mode 100644 datafusion/physical-plan/benches/partial_ordering.rs


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

Reply via email to