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 288fe28f04 Update prost requirement in the prost group across 1
directory
add 58b897b5f9 Move arrow-pyarrow tests that require `pyarrow` to be
installed into `arrow-pyarrow-testing` crate (#7742)
add c26d154b10 [Variant] Remove dead code, add comments (#7861)
add 213d3be785 [Variant] List and object builders have no effect until
finalized (#7865)
add 3126dad034 [Variant] Remove superflous validate call and rename
methods (#7871)
add 38a7a1a6f1 benchmark: Add StringViewArray gc benchmark with not null
cases (#7877)
add 6f3376398f Fix union slice logical_nulls length (#7855)
add 85ba9af29a 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 (288fe28f04)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-dfa7aae14e
(85ba9af29a)
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/integration.yml | 5 +-
.github/workflows/rust.yml | 5 +-
Cargo.toml | 3 +
arrow-array/benches/view_types.rs | 61 ++-
arrow-array/src/array/union_array.rs | 43 +-
arrow-pyarrow-testing/Cargo.toml | 51 ++
.../mod.rs => arrow-pyarrow-testing/src/lib.rs | 7 +-
.../tests/pyarrow.rs | 22 +
parquet-variant/benches/variant_builder.rs | 2 +-
parquet-variant/src/builder.rs | 609 ++++++++++++++++-----
parquet-variant/src/decoder.rs | 23 +-
parquet-variant/src/from_json.rs | 4 +-
parquet-variant/src/lib.rs | 8 +-
parquet-variant/src/variant.rs | 45 +-
parquet-variant/src/variant/list.rs | 63 ++-
parquet-variant/src/variant/metadata.rs | 24 +-
parquet-variant/src/variant/object.rs | 43 +-
parquet-variant/tests/test_json_to_variant.rs | 2 +-
parquet-variant/tests/variant_interop.rs | 4 +-
19 files changed, 767 insertions(+), 257 deletions(-)
create mode 100644 arrow-pyarrow-testing/Cargo.toml
copy arrow-buffer/src/util/mod.rs => arrow-pyarrow-testing/src/lib.rs (82%)
rename {arrow-pyarrow => arrow-pyarrow-testing}/tests/pyarrow.rs (83%)