This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch dependabot/cargo/main/prost-b2daf72eba
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
omit 684d06c43c chore(deps): bump the prost group across 1 directory with 3
updates
add a2bb4c90dc feat(parquet): selective null padding for list child
readers (#9848)
add 4ff867b507 chore: update workspace Rust toolchain to 1.96.1 (#10257)
add 8c7df18f05 reduce noise in flight benchmarks [tokio-threads] [# of
columns in benchmarks] (#10242)
add 7095ce437c Replace conversion of binary->string in arrow-row from
arraydata to direct construction (#10261)
add af1c24a48d minor: drive-by refactors for dicts in substring & filter
(#10264)
add 73077404cd fix: write error for dbg output of out of range timestamps
(#10130)
add c7dc6b8bae Add validated row decode benchmark (#10259)
add d96902565a fix main: parquet test compilation failure (#10266)
add 2780d1384a chore(deps): bump the prost group across 1 directory with 3
updates
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 (684d06c43c)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-b2daf72eba
(2780d1384a)
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/arrow.yml | 1 +
.github/workflows/arrow_flight.yml | 1 +
.github/workflows/audit.yml | 1 +
.github/workflows/integration.yml | 1 +
.github/workflows/miri.yaml | 1 +
.github/workflows/parquet-geospatial.yml | 1 +
.github/workflows/parquet-variant.yml | 1 +
.github/workflows/parquet.yml | 1 +
.github/workflows/parquet_derive.yml | 1 +
Cargo.lock | 4 +-
arrow-array/src/array/primitive_array.rs | 79 ++++-
arrow-array/src/array/run_array.rs | 2 +-
arrow-avro/src/reader/mod.rs | 20 +-
arrow-buffer/src/builder/boolean.rs | 136 ++++++++
arrow-flight/benches/flight.rs | 20 +-
arrow-flight/src/sql/metadata/mod.rs | 2 +-
arrow-json/src/reader/tape.rs | 2 +-
arrow-ord/src/sort.rs | 1 -
arrow-row/src/lib.rs | 2 +-
arrow-row/src/variable.rs | 7 +-
arrow-select/src/filter.rs | 18 +-
arrow-string/src/substring.rs | 80 +----
arrow/benches/lexsort.rs | 2 +-
arrow/benches/row_format.rs | 23 ++
parquet/benches/arrow_reader.rs | 34 +-
parquet/benches/arrow_reader_peak_memory.rs | 42 ++-
parquet/src/arrow/array_reader/builder.rs | 86 ++++-
parquet/src/arrow/array_reader/byte_array.rs | 20 +-
.../arrow/array_reader/byte_array_dictionary.rs | 21 +-
parquet/src/arrow/array_reader/byte_view_array.rs | 18 +-
.../src/arrow/array_reader/cached_array_reader.rs | 4 +
.../src/arrow/array_reader/fixed_len_byte_array.rs | 56 +++-
.../arrow/array_reader/fixed_size_list_array.rs | 266 ++++++++-------
parquet/src/arrow/array_reader/list_array.rs | 367 +++++++++++++++------
parquet/src/arrow/array_reader/list_view_array.rs | 21 +-
parquet/src/arrow/array_reader/map_array.rs | 15 +-
parquet/src/arrow/array_reader/mod.rs | 13 +
parquet/src/arrow/array_reader/null_array.rs | 16 +-
parquet/src/arrow/array_reader/primitive_array.rs | 27 +-
parquet/src/arrow/array_reader/struct_array.rs | 142 ++++----
parquet/src/arrow/array_reader/test_util.rs | 19 +-
parquet/src/arrow/arrow_reader/mod.rs | 8 +-
parquet/src/arrow/arrow_reader/read_plan.rs | 8 +-
parquet/src/arrow/arrow_writer/mod.rs | 12 +-
parquet/src/arrow/buffer/dictionary_buffer.rs | 7 +
parquet/src/arrow/buffer/offset_buffer.rs | 4 +
parquet/src/arrow/buffer/view_buffer.rs | 4 +
parquet/src/arrow/in_memory_row_group.rs | 2 +-
parquet/src/arrow/record_reader/buffer.rs | 15 +-
.../src/arrow/record_reader/definition_levels.rs | 99 ++++++
parquet/src/arrow/record_reader/mod.rs | 300 +++++++++++++++--
parquet/src/column/reader.rs | 27 +-
parquet/src/encryption/decrypt.rs | 2 +-
parquet/src/file/page_index/column_index.rs | 52 +--
parquet/src/util/bit_util.rs | 76 +++++
parquet/src/util/push_buffers.rs | 2 +-
parquet/tests/encryption/encryption.rs | 4 +-
rust-toolchain.toml | 2 +-
58 files changed, 1619 insertions(+), 579 deletions(-)