This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/master/tokio-1.50.0
in repository https://gitbox.apache.org/repos/asf/auron.git
omit 81ba7069 Bump tokio from 1.49.0 to 1.50.0
add e96a0060 [AURON #2064] PR title check (#2066)
add f4ef0442 [AURON #2052] NPE fix in `AuronUniffleShuffleReader` (#2053)
add 72232d57 [AURON #1848] Introduce native protobuf deserializer (#2069)
add ceb1a2b7 Bump tokio from 1.49.0 to 1.50.0
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 (81ba7069)
\
N -- N -- N refs/heads/dependabot/cargo/master/tokio-1.50.0
(ceb1a2b7)
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:
.../workflows/{style.yml => pr-title-check.yml} | 58 +-
Cargo.lock | 26 +-
Cargo.toml | 2 +
native-engine/datafusion-ext-plans/Cargo.toml | 3 +
.../src/flink}/mod.rs | 2 +-
.../mod.rs => flink/serde/flink_deserializer.rs} | 19 +-
.../src/flink/serde}/mod.rs | 7 +-
.../src/flink/serde/pb_deserializer.rs | 2151 ++++++++++++++++++++
.../src/flink/serde/shared_array_builder.rs | 85 +
.../src/flink/serde/shared_list_array_builder.rs | 147 ++
.../src/flink/serde/shared_map_array_builder.rs | 243 +++
.../src/flink/serde/shared_struct_array_builder.rs | 143 ++
native-engine/datafusion-ext-plans/src/lib.rs | 9 +
.../uniffle/AuronUniffleShuffleReader.scala | 80 +-
14 files changed, 2894 insertions(+), 81 deletions(-)
copy .github/workflows/{style.yml => pr-title-check.yml} (50%)
copy native-engine/{datafusion-ext-functions/src/brickhouse =>
datafusion-ext-plans/src/flink}/mod.rs (97%)
copy native-engine/datafusion-ext-plans/src/{joins/bhj/mod.rs =>
flink/serde/flink_deserializer.rs} (58%)
copy native-engine/{datafusion-ext-functions/src/brickhouse =>
datafusion-ext-plans/src/flink/serde}/mod.rs (80%)
create mode 100644
native-engine/datafusion-ext-plans/src/flink/serde/pb_deserializer.rs
create mode 100644
native-engine/datafusion-ext-plans/src/flink/serde/shared_array_builder.rs
create mode 100644
native-engine/datafusion-ext-plans/src/flink/serde/shared_list_array_builder.rs
create mode 100644
native-engine/datafusion-ext-plans/src/flink/serde/shared_map_array_builder.rs
create mode 100644
native-engine/datafusion-ext-plans/src/flink/serde/shared_struct_array_builder.rs