This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/hashbrown-0.15.1
in repository https://gitbox.apache.org/repos/asf/datafusion.git
omit 6dae95c239 Update hashbrown requirement from 0.14.5 to 0.15.1
add 003813ae30 Optimize Statistics::projection (#13225)
add 48b8c13396 fix: Fix stddev indeterministically producing NAN (#13248)
add e43466a79c Migrate invoke_no_args to invoke_batch (#13246)
add e8520ab719 fix bugs explain with non-correlated query (#13210)
add 7c6f891b4b Introduce `full_qualified_col` option for the unparser
dialect (#13241)
add cc43766104 Implement `Eq`, `PartialEq`, `Hash` for `dyn PhysicalExpr`
(#13005)
add f2344d25ca feat: Add `Time`/`Interval`/`Decimal`/`Utf8View` in
aggregate fuzz testing (#13226)
add 4f823711d4 chore: Prepare 43.0.0 release (#13254)
add ddd9f88d8f Update hashbrown requirement from 0.14.5 to 0.15.1
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 (6dae95c239)
\
N -- N -- N refs/heads/dependabot/cargo/main/hashbrown-0.15.1
(ddd9f88d8f)
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 | 50 +-
datafusion-cli/Cargo.lock | 369 +++++++++++---
datafusion-cli/Cargo.toml | 4 +-
datafusion/common/src/display/mod.rs | 7 +-
datafusion/common/src/stats.rs | 78 ++-
datafusion/core/src/datasource/listing/table.rs | 12 +-
datafusion/core/src/physical_planner.rs | 8 +-
datafusion/core/tests/fuzz_cases/aggregate_fuzz.rs | 47 +-
.../aggregation_fuzzer/data_generator.rs | 173 ++++++-
datafusion/core/tests/sql/path_partition.rs | 3 +-
.../user_defined/user_defined_scalar_functions.rs | 10 +-
datafusion/expr/src/udf.rs | 14 +-
.../src/min_max/min_max_bytes.rs | 4 +
datafusion/functions-aggregate/src/variance.rs | 33 ++
datafusion/functions-nested/src/make_array.rs | 10 +-
datafusion/functions/src/core/version.rs | 15 +-
datafusion/functions/src/math/pi.rs | 11 +-
datafusion/functions/src/math/random.rs | 15 +-
datafusion/functions/src/string/uuid.rs | 15 +-
.../physical-expr-common/src/physical_expr.rs | 84 ++--
datafusion/physical-expr-common/src/sort_expr.rs | 4 -
datafusion/physical-expr/src/equivalence/class.rs | 7 +-
datafusion/physical-expr/src/expressions/binary.rs | 42 +-
datafusion/physical-expr/src/expressions/case.rs | 40 +-
datafusion/physical-expr/src/expressions/cast.rs | 43 +-
datafusion/physical-expr/src/expressions/column.rs | 19 +-
.../physical-expr/src/expressions/in_list.rs | 32 +-
.../physical-expr/src/expressions/is_not_null.rs | 31 +-
.../physical-expr/src/expressions/is_null.rs | 35 +-
datafusion/physical-expr/src/expressions/like.rs | 45 +-
.../physical-expr/src/expressions/literal.rs | 18 +-
.../physical-expr/src/expressions/negative.rs | 40 +-
datafusion/physical-expr/src/expressions/no_op.rs | 17 +-
datafusion/physical-expr/src/expressions/not.rs | 33 +-
.../physical-expr/src/expressions/try_cast.rs | 33 +-
.../src/expressions/unknown_column.rs | 13 +-
datafusion/physical-expr/src/physical_expr.rs | 2 -
datafusion/physical-expr/src/scalar_function.rs | 26 +-
datafusion/physical-expr/src/utils/mod.rs | 2 +-
datafusion/physical-plan/src/explain.rs | 1 -
datafusion/proto/proto/datafusion.proto | 1 +
datafusion/proto/src/generated/pbjson.rs | 13 +
datafusion/proto/src/generated/prost.rs | 4 +-
datafusion/proto/src/logical_plan/from_proto.rs | 3 +-
datafusion/proto/src/logical_plan/to_proto.rs | 4 +
.../proto/tests/cases/roundtrip_physical_plan.rs | 30 +-
datafusion/sql/src/unparser/dialect.rs | 23 +
datafusion/sql/src/unparser/expr.rs | 10 +-
datafusion/sql/tests/cases/plan_to_sql.rs | 38 +-
datafusion/sqllogictest/test_files/explain.slt | 25 +
datafusion/sqllogictest/test_files/group_by.slt | 1 +
datafusion/sqllogictest/test_files/joins.slt | 4 +-
datafusion/sqllogictest/test_files/prepare.slt | 2 +
datafusion/sqllogictest/test_files/update.slt | 9 +-
dev/changelog/43.0.0.md | 545 +++++++++++++++++++++
dev/release/create-tarball.sh | 5 -
docs/source/user-guide/configs.md | 2 +-
test-utils/src/array_gen/decimal.rs | 79 +++
test-utils/src/array_gen/mod.rs | 3 +
test-utils/src/array_gen/primitive.rs | 90 +---
test-utils/src/array_gen/random_data.rs | 102 ++++
test-utils/src/array_gen/string.rs | 28 +-
62 files changed, 1845 insertions(+), 621 deletions(-)
create mode 100644 dev/changelog/43.0.0.md
create mode 100644 test-utils/src/array_gen/decimal.rs
create mode 100644 test-utils/src/array_gen/random_data.rs
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]