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
discard 5d069f66a2 chore(deps): bump the proto group with 2 updates add fe7023d5c9 chore(deps): bump sqllogictest from 0.28.3 to 0.28.4 (#17500) add 5bb476f014 chore(deps): bump tempfile from 3.21.0 to 3.22.0 (#17499) add 9398af39d7 refactor: Move `SMJ` tests into own file (#17495) add ab108a50d7 move MinAggregator and MaxAggregator to functions-aggregate-common (#17492) add bb7fbe5941 Update datafusion-testing pin to update expected output for extended tests (#17490) add a1709b6ead update physical-plan to use datafusion-functions-aggregate-common for Min/MaxAccumulator (#17502) add a281b251a2 Always use 'indent' format for explain verbose (#17481) add 14a7adec05 Fix ambiguous column names in substrait conversion as a result of literals having the same name during conversion. (#17299) add 30efc4dde7 Fix NULL Arithmetic Handling for Numerical Operators in Type Coercion (#17418) add 48cb9f3e4a fix: correct typos in CONTRIBUTING.md (#17507) add 351675ddc2 Prepare for Merge Queue (#17183) add 6e2eedaa70 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 (5d069f66a2) \ N -- N -- N refs/heads/dependabot/cargo/main/proto-5f30c81d2c (6e2eedaa70) 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: .asf.yaml | 31 +- .github/workflows/audit.yml | 6 +- .github/workflows/dependencies.yml | 3 + .github/workflows/dev.yml | 7 +- .github/workflows/large_files.yml | 12 +- .github/workflows/rust.yml | 3 + Cargo.lock | 12 +- datafusion-cli/CONTRIBUTING.md | 4 +- datafusion-testing | 2 +- datafusion/datasource-parquet/Cargo.toml | 2 +- datafusion/datasource-parquet/src/metadata.rs | 2 +- datafusion/expr-common/src/type_coercion/binary.rs | 19 +- .../functions-aggregate-common/src/min_max.rs | 448 +++- datafusion/functions-aggregate/src/min_max.rs | 450 +--- datafusion/physical-plan/Cargo.toml | 4 +- .../physical-plan/src/joins/hash_join/exec.rs | 2 +- .../src/joins/sort_merge_join/exec.rs | 2705 ------------------- .../physical-plan/src/joins/sort_merge_join/mod.rs | 3 + .../src/joins/sort_merge_join/tests.rs | 2715 ++++++++++++++++++++ datafusion/sql/src/statement.rs | 7 +- datafusion/sqllogictest/Cargo.toml | 2 +- datafusion/sqllogictest/test_files/explain.slt | 92 + datafusion/sqllogictest/test_files/operator.slt | 9 + datafusion/substrait/Cargo.toml | 1 + .../src/logical_plan/consumer/rel/project_rel.rs | 15 +- .../substrait/tests/cases/consumer_integration.rs | 40 +- datafusion/substrait/tests/cases/logical_plans.rs | 41 + ...mbiguate_literals_with_same_name.substrait.json | 287 +++ 28 files changed, 3730 insertions(+), 3194 deletions(-) create mode 100644 datafusion/physical-plan/src/joins/sort_merge_join/tests.rs create mode 100644 datafusion/substrait/tests/testdata/test_plans/disambiguate_literals_with_same_name.substrait.json --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org