This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/cargo/main/cranelift-native-0.93.1
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
discard d1fa4143d build(deps): update cranelift-native requirement from 0.89.0
to 0.93.1
add f5d23ff58 memory limited hash join (#5490)
add 8a1cb7e3c fixed hash_join tests after passing boolean by value (#5531)
add 9878ee011 minor: fix clippy problem in new version. (#5532)
add 07b07d52f Add dbbenchmark URL to db-benchmark readme (#5503)
add 55c7c4d8e Minor: Move `ObjectStoreRegistry` to datafusion_execution
crate (#5478)
add 6a8c4a601 fix: return schema of ExtensionPlan instead of its
children's (#5514)
add 7f84503bb revert accidently deleted size code in count_distinct (#5533)
add 8c34ca4fa Add UserDefinedLogicalNodeCore (#5521)
add ac5676f74 Minor: add the concise way for matching numerics (#5537)
add f4f4d708c Add necessary features to optimizer (#5540)
add 8b5c1c729 chore: deduplicate workspace fields in Cargo.toml (#5519)
add a76800408 Prepare for 20.0.0 release [Part 1] (#5539)
add 4348c7bd5 build(deps): update cranelift-native requirement from 0.89.0
to 0.93.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 (d1fa4143d)
\
N -- N -- N
refs/heads/dependabot/cargo/main/cranelift-native-0.93.1 (4348c7bd5)
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 | 16 +
benchmarks/Cargo.toml | 10 +-
benchmarks/db-benchmark/README.md | 2 +
datafusion-cli/Cargo.lock | 49 +--
datafusion-cli/Cargo.toml | 4 +-
datafusion-examples/Cargo.toml | 19 +-
datafusion/common/Cargo.toml | 20 +-
datafusion/common/src/dfschema.rs | 2 +-
datafusion/core/Cargo.toml | 44 +--
datafusion/core/src/datasource/listing/mod.rs | 51 ++-
datafusion/core/src/datasource/mod.rs | 4 +-
datafusion/core/src/execution/runtime_env.rs | 6 +-
.../src/physical_plan/aggregates/no_grouping.rs | 2 +-
.../core/src/physical_plan/aggregates/row_hash.rs | 2 +-
datafusion/core/src/physical_plan/common.rs | 6 +
.../core/src/physical_plan/joins/cross_join.rs | 36 +-
.../core/src/physical_plan/joins/hash_join.rs | 379 ++++++++++++++-------
datafusion/core/src/physical_plan/planner.rs | 30 +-
datafusion/core/tests/memory_limit.rs | 10 +
datafusion/core/tests/user_defined_plan.rs | 34 +-
datafusion/execution/Cargo.toml | 24 +-
datafusion/execution/src/lib.rs | 1 +
.../datasource => execution/src}/object_store.rs | 40 ---
datafusion/expr/Cargo.toml | 20 +-
datafusion/expr/src/lib.rs | 2 +-
datafusion/expr/src/logical_plan/extension.rs | 141 +++++++-
datafusion/expr/src/logical_plan/mod.rs | 2 +-
datafusion/expr/src/logical_plan/plan.rs | 73 +++-
datafusion/expr/src/type_coercion/aggregates.rs | 172 ++--------
datafusion/jit/Cargo.toml | 22 +-
datafusion/optimizer/Cargo.toml | 33 +-
datafusion/optimizer/src/push_down_filter.rs | 30 +-
datafusion/optimizer/src/test/user_defined.rs | 30 +-
datafusion/physical-expr/Cargo.toml | 28 +-
.../physical-expr/src/aggregate/count_distinct.rs | 21 +-
datafusion/proto/Cargo.toml | 24 +-
datafusion/proto/src/logical_plan/mod.rs | 30 +-
datafusion/row/Cargo.toml | 22 +-
datafusion/sql/Cargo.toml | 22 +-
datafusion/sql/src/expr/arrow_cast.rs | 4 +-
datafusion/substrait/Cargo.toml | 14 +-
dev/update_datafusion_versions.py | 5 +-
parquet-test-utils/Cargo.toml | 2 +-
test-utils/Cargo.toml | 2 +-
44 files changed, 836 insertions(+), 654 deletions(-)
rename datafusion/{core/src/datasource => execution/src}/object_store.rs (87%)