This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/cargo/main/proto-5f30c81d2c
in repository https://gitbox.apache.org/repos/asf/datafusion.git


    omit 76250c18b6 chore(deps): bump the proto group with 2 updates
     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 dde595f714 chore(deps): bump korandoru/hawkeye from 6.1.1 to 6.2.0 
(#17321)
     add 4175be5bf3 chore(deps): bump the proto group with 2 updates

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   (76250c18b6)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/proto-5f30c81d2c 
(4175be5bf3)

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/dev.yml                          |    2 +-
 .github/workflows/rust.yml                         |    8 +
 Cargo.lock                                         |   24 +-
 Cargo.toml                                         |    4 +-
 benchmarks/src/bin/external_aggr.rs                |    2 +-
 datafusion-cli/Cargo.toml                          |    2 +-
 datafusion-cli/tests/cli_integration.rs            |    2 +-
 datafusion-examples/examples/custom_file_casts.rs  |    2 +-
 datafusion-examples/examples/expr_api.rs           |    4 +-
 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/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/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   |    2 +-
 .../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 ++------------------
 .../joins/{sort_merge_join => hash_join}/mod.rs    |    6 +-
 .../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 +-
 .../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        |    2 +-
 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/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 +
 83 files changed, 1315 insertions(+), 1134 deletions(-)
 rename datafusion/physical-plan/src/joins/{hash_join.rs => hash_join/exec.rs} 
(81%)
 copy datafusion/physical-plan/src/joins/{sort_merge_join => hash_join}/mod.rs 
(89%)
 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
 create mode 100644 typos.toml


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org
For additional commands, e-mail: commits-h...@datafusion.apache.org

Reply via email to