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 c043e23e31 chore(deps): bump the proto group with 2 updates 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 76250c18b6 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 (c043e23e31) \ N -- N -- N refs/heads/dependabot/cargo/main/proto-5f30c81d2c (76250c18b6) 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: README.md | 2 +- datafusion-cli/tests/cli_integration.rs | 4 +- .../snapshots/cli_top_memory_consum...@top2.snap | 4 +- .../cli_top_memory_consumers@top3_default.snap | 6 +- datafusion-examples/README.md | 2 + .../examples/memory_pool_tracking.rs | 10 +- datafusion/execution/src/memory_pool/pool.rs | 55 +- datafusion/physical-expr/src/expressions/case.rs | 14 +- .../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 +++++++++++++++++++ datafusion/sqllogictest/test_files/case.slt | 10 + 13 files changed, 2190 insertions(+), 2074 deletions(-) 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 --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org