This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/env_logger-0.11
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
discard d4d5dff736 Update env_logger requirement from 0.10 to 0.11
add 2b218be67a Simplify windows builtin functions return type (#8920)
add 38d5f75de4 Fix handling of nested leaf columns in parallel parquet
writer (#8923)
add f2e67019c3 feat: emitting partial join results in `HashJoinStream`
(#8020)
add c9935ae52e fix: common_subexpr_eliminate rule should not apply to
short-circuit expression (#8928)
add edec418924 Support GroupsAccumulator accumulator for udaf (#8892)
add 2bcfa59f07 Update env_logger requirement from 0.10 to 0.11
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 (d4d5dff736)
\
N -- N -- N refs/heads/dependabot/cargo/main/env_logger-0.11
(2bcfa59f07)
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:
datafusion-examples/Cargo.toml | 1 +
datafusion-examples/examples/advanced_udaf.rs | 220 +++++++-
datafusion/common/src/config.rs | 2 +-
.../core/src/datasource/file_format/parquet.rs | 21 +-
datafusion/core/src/physical_planner.rs | 25 +-
datafusion/core/tests/fuzz_cases/window_fuzz.rs | 41 +-
.../tests/user_defined/user_defined_aggregates.rs | 128 ++++-
datafusion/expr/src/built_in_window_function.rs | 4 +-
datafusion/expr/src/expr.rs | 48 ++
.../mod.rs => expr/src/groups_accumulator.rs} | 7 -
datafusion/expr/src/lib.rs | 2 +
datafusion/expr/src/udaf.rs | 29 +-
.../optimizer/src/common_subexpr_eliminate.rs | 17 +-
datafusion/physical-expr/src/aggregate/average.rs | 5 +-
.../physical-expr/src/aggregate/bit_and_or_xor.rs | 4 +-
.../physical-expr/src/aggregate/bool_and_or.rs | 4 +-
datafusion/physical-expr/src/aggregate/count.rs | 5 +-
.../src/aggregate/groups_accumulator/accumulate.rs | 13 +-
.../src/aggregate/groups_accumulator/adapter.rs | 3 +-
.../src/aggregate/groups_accumulator/bool_op.rs | 5 +-
.../src/aggregate/groups_accumulator/mod.rs | 138 +----
.../src/aggregate/groups_accumulator/prim_op.rs | 5 +-
datafusion/physical-expr/src/aggregate/min_max.rs | 4 +-
datafusion/physical-expr/src/aggregate/mod.rs | 3 +-
datafusion/physical-expr/src/aggregate/sum.rs | 4 +-
datafusion/physical-expr/src/expressions/mod.rs | 5 +-
datafusion/physical-expr/src/lib.rs | 4 +-
datafusion/physical-expr/src/window/cume_dist.rs | 14 +-
datafusion/physical-expr/src/window/lead_lag.rs | 1 +
datafusion/physical-expr/src/window/nth_value.rs | 1 +
datafusion/physical-expr/src/window/ntile.rs | 13 +-
datafusion/physical-expr/src/window/rank.rs | 23 +-
datafusion/physical-expr/src/window/row_number.rs | 16 +-
datafusion/physical-plan/Cargo.toml | 1 +
.../src/aggregates/group_values/mod.rs | 2 +-
.../src/aggregates/group_values/primitive.rs | 2 +-
.../src/aggregates/group_values/row.rs | 2 +-
.../physical-plan/src/aggregates/order/full.rs | 2 +-
.../physical-plan/src/aggregates/order/mod.rs | 3 +-
.../physical-plan/src/aggregates/order/partial.rs | 2 +-
.../physical-plan/src/aggregates/row_hash.rs | 3 +-
datafusion/physical-plan/src/joins/hash_join.rs | 623 ++++++++++++++-------
.../physical-plan/src/joins/nested_loop_join.rs | 18 +-
.../physical-plan/src/joins/symmetric_hash_join.rs | 131 ++++-
datafusion/physical-plan/src/joins/utils.rs | 238 +++++---
datafusion/physical-plan/src/lib.rs | 3 +
datafusion/physical-plan/src/test/exec.rs | 6 +-
datafusion/physical-plan/src/udaf.rs | 9 +
datafusion/physical-plan/src/windows/mod.rs | 42 +-
.../proto/tests/cases/roundtrip_physical_plan.rs | 3 +-
datafusion/sqllogictest/test_files/copy.slt | 54 +-
.../sqllogictest/test_files/information_schema.slt | 4 +-
.../sqllogictest/test_files/repartition_scan.slt | 8 +-
datafusion/sqllogictest/test_files/select.slt | 44 ++
datafusion/sqllogictest/test_files/window.slt | 66 +++
docs/source/user-guide/configs.md | 2 +-
56 files changed, 1511 insertions(+), 572 deletions(-)
copy datafusion/{physical-expr/src/aggregate/groups_accumulator/mod.rs =>
expr/src/groups_accumulator.rs} (97%)