This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/cargo/main/substrait-0.59.1 in repository https://gitbox.apache.org/repos/asf/datafusion.git
omit d8bfe35306 chore(deps): bump substrait from 0.58.0 to 0.59.1 add ad100fbd66 chore: replace Schema with SchemaRef in PruningExpressionBuilder (#17216) add 87b5023776 chore(deps): bump regex-syntax from 0.8.5 to 0.8.6 (#17320) add 6eb90fdf3c chore(deps): bump indexmap from 2.10.0 to 2.11.0 (#17316) add 68319c29af fix(doc): update the link of deprecation guidelines (#17328) (#17329) add 7cc54d1f2f refactor: Split `SortMergeJoin` into multiple modules (#17304) add 1756692218 feat: Track peak value in tracked consumer (#17327) add c62d67186f fix: lazy case else expression evaluation (#17311) add 913d7a810a MINOR: add missing examples to example list (#17333) add 033fc9b0a1 chore: split hash join to smaller modules (#17300) add 097e893f92 Add `cfg(feature = "avro")` attribute to Avro example in SQL API docs (#17142) add 7c85a68b3c chore(deps): bump url from 2.5.6 to 2.5.7 (#17324) add b6a8a0ec38 chore(deps): bump regex from 1.11.1 to 1.11.2 (#17325) add 1c86ec7f52 chore: fix typos (#17135) add df588449fd add a ci job for typo checking (#17339) add 931aa8ed1f chore(deps): bump clap from 4.5.45 to 4.5.46 (#17338) add 0aa82ba7c7 chore(deps): bump substrait from 0.58.0 to 0.59.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 (d8bfe35306) \ N -- N -- N refs/heads/dependabot/cargo/main/substrait-0.59.1 (0aa82ba7c7) 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: .github/workflows/rust.yml | 8 + Cargo.lock | 62 +- Cargo.toml | 6 +- README.md | 2 +- benchmarks/src/bin/external_aggr.rs | 2 +- datafusion-cli/Cargo.toml | 2 +- datafusion-cli/tests/cli_integration.rs | 6 +- .../snapshots/cli_top_memory_consum...@top2.snap | 4 +- .../cli_top_memory_consumers@top3_default.snap | 6 +- datafusion-examples/README.md | 2 + datafusion-examples/examples/custom_file_casts.rs | 2 +- datafusion-examples/examples/expr_api.rs | 4 +- .../examples/memory_pool_tracking.rs | 10 +- datafusion/catalog/src/information_schema.rs | 2 +- datafusion/common/src/test_util.rs | 4 +- datafusion/core/benches/spm.rs | 4 +- datafusion/core/src/bin/print_functions_docs.rs | 2 +- datafusion/core/src/datasource/listing/table.rs | 20 +- .../core/src/datasource/physical_plan/parquet.rs | 8 +- datafusion/core/src/physical_planner.rs | 2 +- datafusion/core/tests/dataframe/mod.rs | 6 +- datafusion/core/tests/execution/coop.rs | 12 +- datafusion/core/tests/fuzz_cases/aggregate_fuzz.rs | 2 +- datafusion/core/tests/fuzz_cases/pruning.rs | 2 +- .../core/tests/fuzz_cases/sort_query_fuzz.rs | 2 +- .../core/tests/fuzz_cases/topk_filter_pushdown.rs | 10 +- .../memory_limit_validation/sort_mem_validation.rs | 2 +- datafusion/core/tests/memory_limit/mod.rs | 2 +- .../physical_optimizer/enforce_distribution.rs | 6 +- .../physical_optimizer/filter_pushdown/mod.rs | 6 +- .../replace_with_order_preserving_variants.rs | 2 +- .../tests/physical_optimizer/window_optimize.rs | 10 +- .../user_defined/user_defined_scalar_functions.rs | 18 +- datafusion/datasource-parquet/src/opener.rs | 4 +- datafusion/datasource-parquet/src/row_filter.rs | 2 +- datafusion/datasource-parquet/src/source.rs | 2 +- datafusion/execution/src/memory_pool/pool.rs | 55 +- datafusion/expr/src/logical_plan/builder.rs | 2 +- datafusion/expr/src/logical_plan/invariants.rs | 2 +- datafusion/expr/src/logical_plan/plan.rs | 2 +- datafusion/ffi/src/catalog_provider.rs | 2 +- datafusion/ffi/src/schema_provider.rs | 2 +- datafusion/ffi/src/tests/mod.rs | 2 +- datafusion/ffi/src/udaf/mod.rs | 2 +- datafusion/ffi/src/udf/mod.rs | 2 +- datafusion/ffi/src/udwf/mod.rs | 2 +- datafusion/ffi/src/util.rs | 4 +- datafusion/functions/src/core/union_tag.rs | 2 +- datafusion/functions/src/datetime/date_trunc.rs | 2 +- datafusion/functions/src/datetime/to_timestamp.rs | 2 +- datafusion/optimizer/Cargo.toml | 2 +- datafusion/optimizer/src/analyzer/type_coercion.rs | 4 +- .../physical-expr-adapter/src/schema_rewriter.rs | 6 +- .../physical-expr-common/src/physical_expr.rs | 4 +- .../src/equivalence/properties/mod.rs | 2 +- datafusion/physical-expr/src/expressions/case.rs | 16 +- .../physical-optimizer/src/filter_pushdown.rs | 2 +- datafusion/physical-plan/benches/spill_io.rs | 2 +- datafusion/physical-plan/src/filter_pushdown.rs | 2 +- .../src/joins/{hash_join.rs => hash_join/exec.rs} | 1024 +--------- .../src/joins/hash_join/mod.rs} | 8 +- .../src/joins/hash_join/shared_bounds.rs | 296 +++ .../physical-plan/src/joins/hash_join/stream.rs | 628 ++++++ datafusion/physical-plan/src/joins/join_filter.rs | 2 +- .../physical-plan/src/joins/nested_loop_join.rs | 4 +- .../exec.rs} | 2046 +------------------- .../src/joins/sort_merge_join/metrics.rs | 96 + .../src/joins/sort_merge_join/mod.rs} | 8 +- .../src/joins/sort_merge_join/stream.rs | 2007 +++++++++++++++++++ .../physical-plan/src/joins/symmetric_hash_join.rs | 7 +- datafusion/physical-plan/src/joins/utils.rs | 123 +- datafusion/physical-plan/src/metrics/baseline.rs | 6 +- datafusion/physical-plan/src/sorts/stream.rs | 2 +- datafusion/physical-plan/src/stream.rs | 2 +- datafusion/proto/src/logical_plan/mod.rs | 2 +- datafusion/proto/src/physical_plan/mod.rs | 2 +- .../proto/tests/cases/roundtrip_physical_plan.rs | 10 +- datafusion/pruning/src/file_pruner.rs | 2 +- datafusion/pruning/src/pruning_predicate.rs | 28 +- datafusion/sql/src/expr/function.rs | 10 +- datafusion/sql/src/statement.rs | 10 +- datafusion/sql/src/utils.rs | 2 +- datafusion/sql/tests/sql_integration.rs | 4 +- datafusion/sqllogictest/Cargo.toml | 2 +- datafusion/sqllogictest/test_files/case.slt | 10 + datafusion/substrait/src/variation_const.rs | 4 +- .../tests/cases/roundtrip_logical_plan.rs | 2 +- dev/update_config_docs.sh | 2 +- .../library-user-guide/extending-operators.md | 2 +- docs/source/library-user-guide/upgrading.md | 8 +- .../source/library-user-guide/using-the-sql-api.md | 3 + docs/source/user-guide/configs.md | 2 +- docs/source/user-guide/explain-usage.md | 2 +- typos.toml | 46 + 94 files changed, 3542 insertions(+), 3239 deletions(-) rename datafusion/physical-plan/src/joins/{hash_join.rs => hash_join/exec.rs} (81%) copy datafusion/{functions-aggregate-common/src/aggregate/sum_distinct.rs => physical-plan/src/joins/hash_join/mod.rs} (86%) create mode 100644 datafusion/physical-plan/src/joins/hash_join/shared_bounds.rs create mode 100644 datafusion/physical-plan/src/joins/hash_join/stream.rs rename datafusion/physical-plan/src/joins/{sort_merge_join.rs => sort_merge_join/exec.rs} (57%) create mode 100644 datafusion/physical-plan/src/joins/sort_merge_join/metrics.rs copy datafusion/{functions-aggregate-common/src/aggregate/sum_distinct.rs => physical-plan/src/joins/sort_merge_join/mod.rs} (87%) create mode 100644 datafusion/physical-plan/src/joins/sort_merge_join/stream.rs create mode 100644 typos.toml --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org