This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/sysinfo-0.38.0
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard 20dbb06884 chore(deps): update sysinfo requirement from 0.37.1 to
0.38.0
add c10fe77540 Add tests and fixes for schema resolution bug (#9237)
add 40f69b47e2 Support casting negative scale decimals to numeric (#9207)
add 6505d2a354 Revert "Seal Array trait (#9092)", mark `Array` as `unsafe`
(#9234)
add 22cf1ba998 Factor out json reader's static make_decoder args to a
struct (#9271)
add 4cd2d1487c AvroError enum for arrow-avro crate (#8759)
add fe126d0ddb make_decoder accepts borrowed DataType instead of owned
(#9270)
add fab8e75eff Add BinaryFormatSupport and Row Encoder to `arrow-avro`
Writer (#9171)
add d0ed407895 Move extension type construction logic out of Field (#9266)
add a49af1de85 fix: [9018]Fixed RunArray slice offsets(row, cast, eq)
(#9213)
add 5234006c23 Upgrade to object store 0.13.1 (#9256)
add bf48c82f43 chore(deps): update sysinfo requirement from 0.37.1 to
0.38.0
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 (20dbb06884)
\
N -- N -- N refs/heads/dependabot/cargo/main/sysinfo-0.38.0
(bf48c82f43)
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 | 5 +-
arrow-array/src/array/byte_array.rs | 5 +-
arrow-array/src/array/byte_view_array.rs | 5 +-
arrow-array/src/array/dictionary_array.rs | 9 +-
arrow-array/src/array/fixed_size_binary_array.rs | 5 +-
arrow-array/src/array/fixed_size_list_array.rs | 5 +-
arrow-array/src/array/list_array.rs | 5 +-
arrow-array/src/array/list_view_array.rs | 5 +-
arrow-array/src/array/map_array.rs | 5 +-
arrow-array/src/array/mod.rs | 25 +-
arrow-array/src/array/null_array.rs | 5 +-
arrow-array/src/array/primitive_array.rs | 5 +-
arrow-array/src/array/run_array.rs | 121 ++-
arrow-array/src/array/struct_array.rs | 5 +-
arrow-array/src/array/union_array.rs | 5 +-
arrow-avro/Cargo.toml | 8 +-
arrow-avro/benches/encoder.rs | 87 ++
arrow-avro/src/codec.rs | 118 ++-
arrow-avro/src/compression.rs | 29 +-
arrow-avro/src/errors.rs | 148 +++
arrow-avro/src/lib.rs | 3 +
arrow-avro/src/reader/block.rs | 10 +-
arrow-avro/src/reader/cursor.rs | 51 +-
arrow-avro/src/reader/header.rs | 22 +-
arrow-avro/src/reader/mod.rs | 114 ++-
arrow-avro/src/reader/record.rs | 276 +++---
arrow-avro/src/writer/encoder.rs | 761 ++++++++++----
arrow-avro/src/writer/format.rs | 109 +-
arrow-avro/src/writer/mod.rs | 1042 ++++++++++++++++++--
arrow-avro/test/data/bad-varint-bug.avro.gz | Bin 0 -> 254 bytes
arrow-buffer/src/buffer/run.rs | 13 +-
arrow-cast/src/cast/decimal.rs | 98 +-
arrow-cast/src/cast/mod.rs | 167 ++++
arrow-cast/src/cast/run_array.rs | 16 +-
arrow-data/src/equal/run.rs | 166 +++-
arrow-json/src/reader/list_array.rs | 21 +-
arrow-json/src/reader/map_array.rs | 29 +-
arrow-json/src/reader/mod.rs | 88 +-
arrow-json/src/reader/primitive_array.rs | 4 +-
arrow-json/src/reader/struct_array.rs | 53 +-
arrow-json/src/reader/timestamp_array.rs | 4 +-
arrow-row/src/lib.rs | 8 +-
arrow-row/src/run.rs | 21 +-
arrow-schema/src/extension/canonical/bool8.rs | 2 +-
.../src/extension/canonical/fixed_shape_tensor.rs | 2 +-
arrow-schema/src/extension/canonical/json.rs | 2 +-
arrow-schema/src/extension/canonical/opaque.rs | 2 +-
.../extension/canonical/timestamp_with_offset.rs | 2 +-
arrow-schema/src/extension/canonical/uuid.rs | 2 +-
.../extension/canonical/variable_shape_tensor.rs | 2 +-
arrow-schema/src/extension/mod.rs | 43 +
arrow-schema/src/field.rs | 20 +-
parquet/Cargo.toml | 4 +-
parquet/src/arrow/async_reader/store.rs | 10 +-
parquet/src/arrow/async_writer/store.rs | 3 +-
parquet/src/arrow/schema/virtual_type.rs | 4 +-
parquet/tests/encryption/encryption_async.rs | 2 +-
57 files changed, 2935 insertions(+), 846 deletions(-)
create mode 100644 arrow-avro/benches/encoder.rs
create mode 100644 arrow-avro/src/errors.rs
create mode 100644 arrow-avro/test/data/bad-varint-bug.avro.gz