This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/native/main/jni-0.22.4
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
omit ee110b492 chore(deps): bump jni from 0.21.1 to 0.22.4 in /native
add 6853af65a chore(deps): bump rustls-webpki from 0.103.9 to 0.103.10 in
/native (#3751)
add 325d2c636 chore(deps): bump github/codeql-action from 4.32.6 to 4.33.0
(#3742)
add a1922eec8 chore(deps): bump cc in /native in the all-other-cargo-deps
group (#3743)
add aee298dd9 feat: add sort_array benchmark (#3758)
add 34d50a7a7 chore: extract shuffle module into separate crate (#3749)
add c9bc02fc5 chore(deps): bump jni from 0.21.1 to 0.22.4 in /native
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 (ee110b492)
\
N -- N -- N refs/heads/dependabot/cargo/native/main/jni-0.22.4
(c9bc02fc5)
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/codeql.yml | 4 +-
native/Cargo.lock | 40 +++++--
native/Cargo.toml | 5 +-
.../user-guide/index.md => native/common/README.md | 14 +--
native/common/src/lib.rs | 3 +
.../{core/src/execution => common/src}/tracing.rs | 21 ++--
.../src/execution/mod.rs => common/src/utils.rs} | 39 +++----
native/core/Cargo.toml | 16 +--
native/core/src/execution/mod.rs | 2 +-
native/core/src/execution/tracing.rs | 126 +--------------------
native/core/src/execution/utils.rs | 21 +---
.../index.md => native/jni-bridge/README.md | 14 +--
native/{common => shuffle}/Cargo.toml | 38 ++++++-
.../index.md => native/shuffle/README.md | 14 +--
native/{core => shuffle}/benches/row_columnar.rs | 6 +-
native/{core => shuffle}/benches/shuffle_writer.rs | 6 +-
.../src/execution/shuffle => shuffle/src}/codec.rs | 2 +-
.../shuffle => shuffle/src}/comet_partitioning.rs | 2 +-
.../shuffle/mod.rs => shuffle/src/lib.rs} | 10 +-
.../execution/shuffle => shuffle/src}/metrics.rs | 20 ++--
.../shuffle => shuffle/src}/partitioners/mod.rs | 8 +-
.../src}/partitioners/multi_partition.rs | 14 +--
.../partitioners/partitioned_batch_iterator.rs | 0
.../src}/partitioners/single_partition.rs | 8 +-
.../shuffle => shuffle/src}/shuffle_writer.rs | 12 +-
.../shuffle => shuffle/src}/spark_unsafe/list.rs | 14 +--
.../shuffle => shuffle/src}/spark_unsafe/map.rs | 6 +-
.../shuffle => shuffle/src}/spark_unsafe/mod.rs | 0
.../shuffle => shuffle/src}/spark_unsafe/row.rs | 20 ++--
.../src}/writers/buf_batch_writer.rs | 2 +-
.../shuffle => shuffle/src}/writers/mod.rs | 4 +-
.../src}/writers/partition_writer.rs | 8 +-
.../benchmark/CometArrayExpressionBenchmark.scala | 108 ++++++++++++++++++
33 files changed, 291 insertions(+), 316 deletions(-)
copy docs/source/user-guide/index.md => native/common/README.md (74%)
copy native/{core/src/execution => common/src}/tracing.rs (88%)
copy native/{core/src/execution/mod.rs => common/src/utils.rs} (59%)
copy docs/source/user-guide/index.md => native/jni-bridge/README.md (74%)
copy native/{common => shuffle}/Cargo.toml (54%)
copy docs/source/user-guide/index.md => native/shuffle/README.md (72%)
rename native/{core => shuffle}/benches/row_columnar.rs (99%)
rename native/{core => shuffle}/benches/shuffle_writer.rs (99%)
rename native/{core/src/execution/shuffle => shuffle/src}/codec.rs (99%)
rename native/{core/src/execution/shuffle =>
shuffle/src}/comet_partitioning.rs (98%)
rename native/{core/src/execution/shuffle/mod.rs => shuffle/src/lib.rs} (88%)
rename native/{core/src/execution/shuffle => shuffle/src}/metrics.rs (84%)
rename native/{core/src/execution/shuffle => shuffle/src}/partitioners/mod.rs
(83%)
rename native/{core/src/execution/shuffle =>
shuffle/src}/partitioners/multi_partition.rs (98%)
rename native/{core/src/execution/shuffle =>
shuffle/src}/partitioners/partitioned_batch_iterator.rs (100%)
rename native/{core/src/execution/shuffle =>
shuffle/src}/partitioners/single_partition.rs (96%)
rename native/{core/src/execution/shuffle => shuffle/src}/shuffle_writer.rs
(98%)
rename native/{core/src/execution/shuffle => shuffle/src}/spark_unsafe/list.rs
(98%)
rename native/{core/src/execution/shuffle => shuffle/src}/spark_unsafe/map.rs
(97%)
rename native/{core/src/execution/shuffle => shuffle/src}/spark_unsafe/mod.rs
(100%)
rename native/{core/src/execution/shuffle => shuffle/src}/spark_unsafe/row.rs
(99%)
rename native/{core/src/execution/shuffle =>
shuffle/src}/writers/buf_batch_writer.rs (99%)
rename native/{core/src/execution/shuffle => shuffle/src}/writers/mod.rs (89%)
rename native/{core/src/execution/shuffle =>
shuffle/src}/writers/partition_writer.rs (94%)
create mode 100644
spark/src/test/scala/org/apache/spark/sql/benchmark/CometArrayExpressionBenchmark.scala
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]