You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2023/06/26 20:29:20 UTC

[arrow-datafusion] branch dependabot/cargo/main/indexmap-2.0.0 updated (45cbf1826e -> 6be5320bff)

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

alamb pushed a change to branch dependabot/cargo/main/indexmap-2.0.0
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


 discard 45cbf1826e chore(deps): update indexmap requirement from 1.9.2 to 2.0.0
     add 1522e7a58e Re-export modules individually to fix rustdocs (#6757)
     add f24a724543 Order Preserving RepartitionExec Implementation (#6742)
     add 7d3cae0699 feat: add `-c option` to pass the SQL query directly as an argument on datafusion-cli (#6765)
     add 43bb879520 chore(deps): update indexmap requirement from 1.9.2 to 2.0.0
     add 6be5320bff Update datafusion-cli Cargo.lock

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   (45cbf1826e)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/indexmap-2.0.0 (6be5320bff)

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:
 datafusion-cli/Cargo.lock                          | 245 +++++++++++++++++----
 datafusion-cli/Cargo.toml                          |   6 +
 datafusion-cli/src/exec.rs                         |  29 ++-
 datafusion-cli/src/main.rs                         |  30 ++-
 datafusion-cli/tests/cli_integration.rs            |  52 +++++
 datafusion-cli/tests/data/sql.txt                  |   1 +
 datafusion/core/src/lib.rs                         |  49 ++++-
 .../repartition/distributor_channels.rs            |  13 ++
 .../core/src/physical_plan/repartition/mod.rs      | 179 ++++++++++++---
 datafusion/core/tests/fuzz_cases/mod.rs            |   1 +
 .../fuzz_cases/sort_preserving_repartition_fuzz.rs | 237 ++++++++++++++++++++
 dev/release/rat_exclude_files.txt                  |   1 +
 12 files changed, 753 insertions(+), 90 deletions(-)
 create mode 100644 datafusion-cli/tests/cli_integration.rs
 create mode 100644 datafusion-cli/tests/data/sql.txt
 create mode 100644 datafusion/core/tests/fuzz_cases/sort_preserving_repartition_fuzz.rs