This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/rand-0.10
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard 496e53cb41 Update rand requirement from 0.9 to 0.10
add 198846dcde Add RunEndEncoded array comparator (#9368)
add 765c5b715d feat: Support roundtrip ListView in parquet arrow writer
(#9352)
add 0c1ec0b31d fix: fix [[NULL]] array doesn't roundtrip in arrow-row bug
(#9275)
add 722dc643dc Moving invalid_utf8 tests into a separate mod (#9384)
add fcfe2b4160 [Parquet] Allow setting page size per column (#9353)
add 0cb5954603 build(deps): update pyo3 requirement from 0.27.1 to 0.28.0
(#9331)
add 54d8191920 feat: add max_row_group_bytes option to WriterProperties
(#9357)
add 55a769f4b0 Minor: Add additional test coverage for
WriterProperties::{max_row_group_row_count,max_row_group_size} (#9387)
add 64b54975d4 Replace `ArrayData` with direct Array construction (#9338)
add 0e97133d6d Update sysinfo requirement from 0.37.1 to 0.38.1 (#9383)
add bf3520d9ee fix: return error instead of panic on schema mismatch in
BatchCoalescer::push_batch (#9390)
add d37537e414 Update rand requirement from 0.9 to 0.10
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 (496e53cb41)
\
N -- N -- N refs/heads/dependabot/cargo/main/rand-0.10
(d37537e414)
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/boolean_array.rs | 20 +-
arrow-ord/src/ord.rs | 229 ++++++++++
arrow-pyarrow-integration-testing/Cargo.toml | 2 +-
arrow-pyarrow-testing/Cargo.toml | 2 +-
arrow-pyarrow/Cargo.toml | 2 +-
arrow-row/src/lib.rs | 268 +++++++++++-
arrow-row/src/variable.rs | 28 ++
arrow-select/src/coalesce.rs | 69 +++-
arrow-string/src/regexp.rs | 26 +-
arrow-string/src/substring.rs | 141 +++----
parquet/Cargo.toml | 2 +-
parquet/benches/arrow_statistics.rs | 2 +-
parquet/benches/parquet_round_trip.rs | 2 +-
parquet/benches/row_group_index_reader.rs | 2 +-
parquet/src/arrow/array_reader/builder.rs | 77 ++--
parquet/src/arrow/array_reader/list_array.rs | 2 +-
parquet/src/arrow/array_reader/list_view_array.rs | 245 +++++++++++
parquet/src/arrow/array_reader/mod.rs | 2 +
parquet/src/arrow/arrow_reader/mod.rs | 253 +-----------
parquet/src/arrow/arrow_writer/levels.rs | 139 ++++++-
parquet/src/arrow/arrow_writer/mod.rs | 481 +++++++++++++++++++++-
parquet/src/arrow/async_reader/mod.rs | 6 +-
parquet/src/arrow/async_writer/mod.rs | 2 +-
parquet/src/arrow/push_decoder/mod.rs | 2 +-
parquet/src/arrow/schema/complex.rs | 4 +
parquet/src/arrow/schema/mod.rs | 9 +-
parquet/src/bin/parquet-fromcsv.rs | 3 +-
parquet/src/bin/parquet-rewrite.rs | 3 +-
parquet/src/column/writer/mod.rs | 93 ++++-
parquet/src/file/metadata/push_decoder.rs | 2 +-
parquet/src/file/properties.rs | 195 +++++++--
parquet/src/file/writer.rs | 2 +-
parquet/tests/arrow_reader/invalid_utf8.rs | 265 ++++++++++++
parquet/tests/arrow_reader/io/mod.rs | 2 +-
parquet/tests/arrow_reader/mod.rs | 3 +-
parquet/tests/arrow_reader/predicate_cache.rs | 2 +-
parquet/tests/arrow_reader/row_filter/async.rs | 2 +-
parquet/tests/arrow_reader/statistics.rs | 4 +-
parquet/tests/arrow_writer_layout.rs | 45 ++
parquet/tests/encryption/encryption.rs | 4 +-
40 files changed, 2171 insertions(+), 471 deletions(-)
create mode 100644 parquet/src/arrow/array_reader/list_view_array.rs
create mode 100644 parquet/tests/arrow_reader/invalid_utf8.rs