This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/prost-dfa7aae14e
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard c6d09e801b Update prost requirement in the prost group across 1
directory
add ecd2905cc2 arrow-data: Add REE support for `build_extend` and
`build_extend_nulls` (#7671)
add 75008eb580 feat: add min max aggregate support for FixedSizeBinary
(#7675)
add 7276819d0d Split out variant code into several new sub-modules (#7717)
add 1bed04c1e0 Optimize coalesce kernel for StringView (10-50% faster)
(#7650)
add 44815f3a0d Update prost requirement in the prost group across 1
directory
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 (c6d09e801b)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-dfa7aae14e
(44815f3a0d)
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:
arrow-arith/src/aggregate.rs | 47 ++
arrow-array/src/array/byte_view_array.rs | 26 +
arrow-data/src/transform/mod.rs | 28 +-
arrow-data/src/transform/run.rs | 655 ++++++++++++++++++++
arrow-select/src/coalesce.rs | 519 +++++++++++-----
arrow-select/src/coalesce/byte_view.rs | 442 ++++++++++++++
arrow-select/src/coalesce/generic.rs | 76 +++
arrow-select/src/interleave.rs | 210 ++++++-
parquet-variant/src/decoder.rs | 182 +++++-
parquet-variant/src/variant.rs | 997 +------------------------------
parquet-variant/src/variant/list.rs | 297 +++++++++
parquet-variant/src/variant/metadata.rs | 287 +++++++++
parquet-variant/src/variant/object.rs | 311 ++++++++++
13 files changed, 2924 insertions(+), 1153 deletions(-)
create mode 100644 arrow-data/src/transform/run.rs
create mode 100644 arrow-select/src/coalesce/byte_view.rs
create mode 100644 arrow-select/src/coalesce/generic.rs
create mode 100644 parquet-variant/src/variant/list.rs
create mode 100644 parquet-variant/src/variant/metadata.rs
create mode 100644 parquet-variant/src/variant/object.rs