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
omit 5dd5594f30 Update prost requirement in the prost group across 1
directory
add abe8a04b48 docs: More docs to `BatchCoalescer` (#7891)
add 75954173ad fix: `view_types` benchmark slice should follow by correct
len array (#7892)
add 55865d3dd3 memory tracking with memory pool (#7303)
add d7dae2c7c2 [ARROW-RS-7820][Variant] Add tests for large variant lists
(#7876)
add 4c088febe6 Fix current CI failure (#7898)
add b2583b0333 [Variant] Speedup validation (#7878)
add b16c5400ee Remove redundant is_err checks in Variant tests (#7897)
add b63463839a Add arrow-avro support for bzip2 and xz compression (#7890)
add 7c42a8378e [Variant] Define basic convenience methods for variant
pathing (#7894)
add 42b6c17930 [Variant] Reduce variant-related struct sizes (#7888)
add 387490a7a9 fix: mark `DataType::Map` as unsupported in `RowConverter`
(#7880)
add 058243a941 [Variant] Introduce parquet-variant-compute crate to
transform batches of JSON strings to and from Variants (#7884)
add 3b8ac703ec 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 (5dd5594f30)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-dfa7aae14e
(3b8ac703ec)
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:
Cargo.toml | 2 +
arrow-array/benches/view_types.rs | 12 +-
arrow-avro/Cargo.toml | 4 +-
arrow-avro/src/compression.rs | 26 ++
arrow-avro/src/reader/header.rs | 3 +-
arrow-avro/src/reader/mod.rs | 2 +
arrow-buffer/Cargo.toml | 3 +
arrow-buffer/src/buffer/immutable.rs | 14 ++
arrow-buffer/src/buffer/mutable.rs | 175 +++++++++++++-
arrow-buffer/src/bytes.rs | 122 +++++++++-
arrow-buffer/src/lib.rs | 5 +
arrow-buffer/src/pool.rs | 189 +++++++++++++++
arrow-ord/src/cmp.rs | 2 +-
arrow-row/src/lib.rs | 52 +++-
arrow-select/src/coalesce.rs | 42 +++-
.../Cargo.toml | 19 +-
parquet-variant-compute/src/from_json.rs | 181 ++++++++++++++
.../mod.rs => parquet-variant-compute/src/lib.rs | 10 +-
parquet-variant-compute/src/to_json.rs | 181 ++++++++++++++
parquet-variant-json/Cargo.toml | 4 +-
parquet-variant-json/src/from_json.rs | 2 +-
parquet-variant/Cargo.toml | 4 +
parquet-variant/benches/variant_validation.rs | 138 +++++++++++
parquet-variant/src/builder.rs | 1 -
parquet-variant/src/decoder.rs | 85 +++----
parquet-variant/src/utils.rs | 13 +-
parquet-variant/src/variant.rs | 59 +++++
parquet-variant/src/variant/list.rs | 269 +++++++++++++++++++--
parquet-variant/src/variant/metadata.rs | 127 ++++++++--
parquet-variant/src/variant/object.rs | 132 +++++++---
30 files changed, 1693 insertions(+), 185 deletions(-)
create mode 100644 arrow-buffer/src/pool.rs
copy {parquet-variant-json => parquet-variant-compute}/Cargo.toml (77%)
create mode 100644 parquet-variant-compute/src/from_json.rs
copy parquet/src/util/test_common/mod.rs => parquet-variant-compute/src/lib.rs
(86%)
create mode 100644 parquet-variant-compute/src/to_json.rs
create mode 100644 parquet-variant/benches/variant_validation.rs