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 7629b217a6 Update prost requirement in the prost group across 1
directory
add 8fd870b0cb Minor: Remove filter code deprecated in 2023 (try 2) (#7584)
add 06cbc337ad Change default parquet statistics truncation to be 64 bytes
(#7578)
add e2162cca49 Remove old `flight-sql-experimental` feature flag (#7551)
add e930492306 Update to parquet-format 2.11.0 (#7570)
add 67f7e990ab parquet_derive: update in working example for
ParquetRecordWriter (#7733)
add 452397f3ef Add `TimeMilli` and `TimeMicro` fields and conversions for
the record API (#7544)
add d910a1d22f feat: add constructor to efficiently upgrade dict key type
to remaining builders (#7689)
add c316974482 Stop writing statistics to Parquet page headers by default,
add option to enable (#7594)
add be338f9bda Implement Type and Array for Decimal32 and Decimal64 (#7098)
add 2754ce5e0b Add schema with only primitive arrays to `coalesce_kernel`
benchmark (#7788)
add 92ae67562c chore(deps)!: update pyo3 requirement from 0.24.1 to 0.25.1
(#7505)
add 8b4a90ef51 Add `arrow-pyarrow` crate to dev/release/README.md (#7794)
add 8d6cada9b9 [Variant] Minor: make fields in `VariantDecimal*` private,
add examples (#7770)
add 3183e03164 Remove functions from parquet crate deprecated in or before
54.0.0 (#7811)
add 674dc17b2c Add Fixed, Uuid support to arrow-avro (#7557)
add aa96097727 Perf: Add prefix compare for inlined compare and change use
of inline_value to inline it to a u128 (#7748)
add c1a57cb548 [Variant] Add negative tests for reading invalid primitive
variant values (#7779)
add 19a14dcf50 Remove deprecated temporal functions (#7813)
add a9f316bd85 Use in-memory buffer for arrow_writer benchmark (#7823)
add bf6a97aae8 make builder public under experimental (#7825)
add 024812854c 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 (7629b217a6)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-dfa7aae14e
(024812854c)
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-arith/src/numeric.rs | 40 ++
arrow-arith/src/temporal.rs | 423 +++----------
arrow-array/src/array/byte_view_array.rs | 158 ++++-
arrow-array/src/array/mod.rs | 2 +
arrow-array/src/array/primitive_array.rs | 192 +++++-
arrow-array/src/builder/buffer_builder.rs | 4 +
.../fixed_size_binary_dictionary_builder.rs | 146 ++++-
arrow-array/src/builder/mod.rs | 6 +
arrow-array/src/builder/primitive_builder.rs | 7 +-
.../src/builder/primitive_dictionary_builder.rs | 170 +++++-
arrow-array/src/cast.rs | 6 +
arrow-array/src/record_batch.rs | 4 +-
arrow-array/src/types.rs | 87 ++-
arrow-avro/src/codec.rs | 15 +
arrow-avro/src/reader/cursor.rs | 12 +
arrow-avro/src/reader/record.rs | 100 +++-
arrow-cast/src/display.rs | 2 +-
arrow-data/src/data.rs | 4 +
arrow-data/src/decimal.rs | 195 +++++-
arrow-data/src/equal/mod.rs | 2 +
arrow-data/src/transform/mod.rs | 8 +-
arrow-flight/README.md | 5 +-
arrow-flight/src/lib.rs | 2 -
arrow-integration-test/src/datatype.rs | 8 +
arrow-integration-test/src/lib.rs | 36 ++
arrow-ipc/src/convert.rs | 24 +
arrow-ord/src/cmp.rs | 22 +-
arrow-pyarrow-integration-testing/Cargo.toml | 4 +-
arrow-pyarrow/Cargo.toml | 2 +-
arrow-schema/src/datatype.rs | 52 ++
arrow-schema/src/datatype_parse.rs | 35 ++
arrow-schema/src/ffi.rs | 10 +-
arrow-schema/src/field.rs | 2 +
arrow-select/src/filter.rs | 43 +-
arrow/benches/coalesce_kernels.rs | 35 +-
dev/release/README.md | 1 +
parquet-variant/Cargo.toml | 4 +
parquet-variant/src/builder.rs | 30 +-
parquet-variant/src/decoder.rs | 227 +++----
parquet-variant/src/to_json.rs | 42 +-
parquet-variant/src/variant.rs | 41 +-
parquet-variant/src/variant/decimal.rs | 72 ++-
parquet/benches/arrow_writer.rs | 7 +-
parquet/regen.sh | 3 +-
parquet/src/arrow/array_reader/builder.rs | 4 +-
parquet/src/arrow/array_reader/mod.rs | 3 +-
parquet/src/arrow/arrow_reader/statistics.rs | 107 +++-
parquet/src/arrow/arrow_writer/mod.rs | 73 +++
parquet/src/arrow/async_reader/metadata.rs | 377 +-----------
parquet/src/arrow/async_reader/store.rs | 2 +-
parquet/src/arrow/mod.rs | 4 +-
parquet/src/arrow/schema/mod.rs | 14 +-
parquet/src/basic.rs | 24 +-
parquet/src/bin/parquet-rewrite.rs | 39 +-
parquet/src/column/writer/mod.rs | 70 ++-
parquet/src/data_type.rs | 26 -
parquet/src/file/footer.rs | 81 ---
parquet/src/file/metadata/mod.rs | 31 +-
parquet/src/file/mod.rs | 1 -
parquet/src/file/page_index/index_reader.rs | 49 +-
parquet/src/file/properties.rs | 138 +++--
parquet/src/file/statistics.rs | 99 ---
parquet/src/format.rs | 661 +++++++++++++++++++--
parquet/src/record/api.rs | 59 +-
parquet/src/schema/printer.rs | 3 +
parquet/tests/arrow_writer_layout.rs | 8 +
parquet_derive/README.md | 4 +
parquet_derive/src/lib.rs | 90 ++-
68 files changed, 2810 insertions(+), 1447 deletions(-)
delete mode 100644 parquet/src/file/footer.rs