This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/cargo/main/all-other-cargo-deps-1e8a88cf4c
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard 4103019a93 chore(deps): bump the all-other-cargo-deps group across 1
directory with 2 updates
add 4a0621d2a7 fix: validate union child bounds without truncating lengths
(#10847)
add 743807150c Add `PageIndexBuilder` and `PageIndexProvider` for Parquet
page indexes (#10842)
add 292a353c8c chore(deps): bump the all-other-cargo-deps group across 1
directory with 2 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 (4103019a93)
\
N -- N -- N
refs/heads/dependabot/cargo/main/all-other-cargo-deps-1e8a88cf4c (292a353c8c)
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-array/src/array/union_array.rs | 43 +-
parquet/Cargo.toml | 5 +
parquet/benches/arrow_statistics.rs | 3 +-
parquet/examples/custom_page_index.rs | 316 ++++++++++
parquet/src/arrow/arrow_reader/mod.rs | 22 +-
parquet/src/arrow/arrow_reader/statistics.rs | 15 +-
parquet/src/arrow/async_reader/mod.rs | 14 +-
parquet/src/arrow/async_reader/store.rs | 6 +-
parquet/src/arrow/in_memory_row_group.rs | 21 +-
.../src/arrow/push_decoder/reader_builder/data.rs | 33 +-
.../src/arrow/push_decoder/reader_builder/mod.rs | 110 ++--
parquet/src/file/metadata/memory.rs | 10 +-
parquet/src/file/metadata/mod.rs | 484 ++++++---------
parquet/src/file/metadata/page_index.rs | 672 +++++++++++++++++++++
parquet/src/file/metadata/parser.rs | 147 ++---
parquet/src/file/metadata/push_decoder.rs | 9 +-
parquet/src/file/metadata/reader.rs | 29 +-
parquet/src/file/metadata/writer.rs | 38 +-
parquet/src/file/page_index/column_index.rs | 2 +-
parquet/src/file/page_index/offset_index.rs | 2 +-
parquet/src/file/properties.rs | 4 +-
parquet/src/file/serialized_reader.rs | 130 ++--
parquet/src/file/writer.rs | 19 +-
parquet/src/util/mod.rs | 10 +-
parquet/src/util/test_common/page_util.rs | 8 +-
parquet/tests/arrow_reader/io/mod.rs | 8 +-
parquet/tests/arrow_reader/row_filter/async.rs | 20 +-
parquet/tests/arrow_reader/statistics.rs | 6 +-
parquet/tests/arrow_writer/layout.rs | 29 +-
parquet/tests/encryption/encryption_util.rs | 13 +-
parquet/tests/ieee754_nan_interop.rs | 27 +-
31 files changed, 1549 insertions(+), 706 deletions(-)
create mode 100644 parquet/examples/custom_page_index.rs
create mode 100644 parquet/src/file/metadata/page_index.rs