This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/rand-0.9
in repository https://gitbox.apache.org/repos/asf/datafusion.git
omit c66032b971 chore(deps): update rand requirement from 0.8 to 0.9
add 188e0d31d1 chore(deps): bump serde from 1.0.217 to 1.0.218 (#14788)
add b66beb8d50 refactor: move `DataSource` to `datafusion-datasource`
(#14671)
add f6fee40c3a chore(deps): update rand requirement from 0.8 to 0.9
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 (c66032b971)
\
N -- N -- N refs/heads/dependabot/cargo/main/rand-0.9
(f6fee40c3a)
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 | 118 ++-
benchmarks/Cargo.toml | 2 +-
datafusion-cli/src/functions.rs | 2 +-
.../examples/parquet_exec_visitor.rs | 2 +-
datafusion-examples/examples/remote_catalog.rs | 2 +-
datafusion-examples/examples/simple_udtf.rs | 2 +-
datafusion/core/Cargo.toml | 4 +
datafusion/core/benches/physical_plan.rs | 2 +-
datafusion/core/benches/sort.rs | 3 +-
datafusion/{physical-plan => core}/benches/spm.rs | 2 +-
datafusion/core/src/datasource/empty.rs | 3 +-
datafusion/core/src/datasource/listing/table.rs | 3 +-
datafusion/core/src/datasource/memory.rs | 4 +-
datafusion/core/src/datasource/mod.rs | 2 +
.../src/datasource/physical_plan/arrow_file.rs | 2 +-
.../core/src/datasource/physical_plan/avro.rs | 2 +-
.../core/src/datasource/physical_plan/csv.rs | 4 +-
.../datasource/physical_plan/file_scan_config.rs | 2 +-
.../core/src/datasource/physical_plan/json.rs | 2 +-
.../src/datasource/physical_plan/parquet/mod.rs | 4 +-
.../src/datasource/physical_plan/parquet/source.rs | 6 +-
datafusion/core/src/physical_planner.rs | 6 +-
datafusion/core/src/test/mod.rs | 2 +-
datafusion/core/src/test_util/parquet.rs | 2 +-
datafusion/core/tests/fuzz_cases/aggregate_fuzz.rs | 4 +-
datafusion/core/tests/fuzz_cases/join_fuzz.rs | 4 +-
datafusion/core/tests/fuzz_cases/merge_fuzz.rs | 2 +-
datafusion/core/tests/fuzz_cases/sort_fuzz.rs | 2 +-
.../fuzz_cases/sort_preserving_repartition_fuzz.rs | 4 +-
datafusion/core/tests/fuzz_cases/window_fuzz.rs | 4 +-
datafusion/core/tests/memory_limit/mod.rs | 4 +-
datafusion/core/tests/parquet/file_statistics.rs | 2 +-
datafusion/core/tests/parquet/page_pruning.rs | 2 +-
datafusion/core/tests/parquet/utils.rs | 2 +-
.../physical_optimizer/aggregate_statistics.rs | 4 +-
.../physical_optimizer/enforce_distribution.rs | 2 +-
.../physical_optimizer/projection_pushdown.rs | 4 +-
.../replace_with_order_preserving_variants.rs | 4 +-
.../core/tests/physical_optimizer/test_utils.rs | 4 +-
datafusion/core/tests/sql/path_partition.rs | 2 +-
.../user_defined/user_defined_table_functions.rs | 2 +-
datafusion/datasource/Cargo.toml | 2 +
.../{physical-plan => datasource}/src/memory.rs | 437 ++---------
datafusion/datasource/src/mod.rs | 2 +
.../{physical-plan => datasource}/src/source.rs | 10 +-
datafusion/physical-optimizer/Cargo.toml | 1 +
datafusion/physical-plan/Cargo.toml | 4 -
datafusion/physical-plan/src/aggregates/mod.rs | 19 +-
datafusion/physical-plan/src/empty.rs | 4 +-
datafusion/physical-plan/src/filter.rs | 1 -
datafusion/physical-plan/src/joins/hash_join.rs | 30 +-
.../physical-plan/src/joins/nested_loop_join.rs | 7 +-
.../physical-plan/src/joins/sort_merge_join.rs | 14 +-
datafusion/physical-plan/src/joins/test_utils.rs | 11 +-
datafusion/physical-plan/src/lib.rs | 2 -
datafusion/physical-plan/src/memory.rs | 874 +--------------------
datafusion/physical-plan/src/placeholder_row.rs | 9 +-
datafusion/physical-plan/src/recursive_query.rs | 12 +-
datafusion/physical-plan/src/repartition/mod.rs | 26 +-
datafusion/physical-plan/src/sorts/partial_sort.rs | 8 +-
datafusion/physical-plan/src/sorts/sort.rs | 8 +-
.../src/sorts/sort_preserving_merge.rs | 26 +-
datafusion/physical-plan/src/test.rs | 340 +++++++-
datafusion/physical-plan/src/union.rs | 11 +-
datafusion/physical-plan/src/values.rs | 7 +-
.../src/windows/bounded_window_agg_exec.rs | 4 +-
datafusion/physical-plan/src/work_table.rs | 6 +-
datafusion/proto/src/physical_plan/mod.rs | 2 +-
datafusion/substrait/src/physical_plan/producer.rs | 2 +-
69 files changed, 607 insertions(+), 1507 deletions(-)
rename datafusion/{physical-plan => core}/benches/spm.rs (98%)
copy datafusion/{physical-plan => datasource}/src/memory.rs (72%)
rename datafusion/{physical-plan => datasource}/src/source.rs (95%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]