This is an automated email from the ASF dual-hosted git repository.

etseidl pushed a change to branch gh5854_thrift_remodel
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


    from b0cc25486a [thrift-remodel] Write Parquet page indexes (#8427)
     add e6355b18cd Update release instructions after `56.2.0` and 
`parquet_variant` tweaks (#8419)
     add e345d8c077 expose read plan and plan builder via mod (#8431)
     add 6bf5795b58 Avoid too many open files by using in memory buffers for 
round trip p… (#8407)
     add f7ea0aa815 Add arrow-avro Reader support for Dense Union and Union 
resolution (Part 2) (#8349)
     add e2f274930c Improve Display formatting of DataType::Timestamp (#8425)
     add 48686c82d5 Remove explicit default cfg option (#8413)
     add 0b10ad8f2e Reuse zstd compression context when writing IPC (#8405)
     add 9eabd32a47 Bump MSRV to 1.85 (#8429)
     add a8ad90dd67 [Variant]: Implement `DataType::ListView/LargeListView` 
support for `cast_to_variant` kernel (#8241)
     add fc1ef415ae Use more compact Debug formatting of Field (#8424)
     add 1fd3aaebb7 Quote `DataType::Struct` field names in `Display` 
formatting (#8291)
     add 0d32de661c Update `UnionArray` wording to 'non-negative' (#8434)
     add 510cda1408 build(deps): update bincode requirement from 1.3.3 to 2.0.1 
(#7270)
     new bd6d1da269 Merge remote-tracking branch 'origin/main' into 
gh5854_thrift_remodel

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |    5 +-
 Cargo.toml                                         |    8 +-
 arrow-arith/src/temporal.rs                        |    2 +-
 arrow-array/src/arithmetic.rs                      |    8 +-
 arrow-array/src/array/primitive_array.rs           |   30 +-
 arrow-array/src/array/union_array.rs               |    8 +-
 arrow-array/src/builder/struct_builder.rs          |    2 +-
 arrow-avro/src/codec.rs                            |   18 +
 arrow-avro/src/reader/mod.rs                       | 1607 +++++++++++++++++++-
 arrow-avro/src/reader/record.rs                    |  909 ++++++++++-
 arrow-avro/test/data/README.md                     |   57 +-
 arrow-avro/test/data/union_fields.avro             |  Bin 0 -> 3430 bytes
 arrow-buffer/src/lib.rs                            |    2 -
 arrow-cast/src/cast/decimal.rs                     |    3 +-
 arrow-cast/src/cast/mod.rs                         |   28 +-
 arrow-cast/src/cast/string.rs                      |    3 +-
 arrow-flight/src/encode.rs                         |   21 +-
 arrow-flight/src/utils.rs                          |   10 +-
 .../flight_client_scenarios/integration_test.rs    |   12 +-
 .../flight_server_scenarios/integration_test.rs    |    7 +-
 arrow-ipc/src/compression.rs                       |   73 +-
 arrow-ipc/src/reader.rs                            |   14 +-
 arrow-ipc/src/writer.rs                            |  105 +-
 arrow-json/src/lib.rs                              |    2 +-
 arrow-pyarrow-integration-testing/Cargo.toml       |    2 +-
 arrow-pyarrow-testing/Cargo.toml                   |    2 +-
 arrow-row/src/lib.rs                               |    4 +-
 arrow-schema/Cargo.toml                            |    3 +-
 arrow-schema/src/datatype.rs                       |   24 +
 arrow-schema/src/datatype_display.rs               |   26 +-
 arrow-schema/src/datatype_parse.rs                 |  246 +--
 arrow-schema/src/field.rs                          |   66 +-
 arrow-schema/src/schema.rs                         |    2 +-
 dev/release/README.md                              |    3 +
 parquet-variant-compute/Cargo.toml                 |    2 +-
 parquet-variant-compute/src/arrow_to_variant.rs    |   90 +-
 parquet-variant-compute/src/cast_to_variant.rs     |  161 +-
 parquet-variant-json/Cargo.toml                    |    6 +-
 parquet-variant/Cargo.toml                         |    2 +-
 parquet/src/arrow/arrow_reader/mod.rs              |    6 +-
 parquet/src/arrow/arrow_writer/mod.rs              |   59 +-
 parquet/tests/variant_integration.rs               |   42 +-
 42 files changed, 3333 insertions(+), 347 deletions(-)
 create mode 100644 arrow-avro/test/data/union_fields.avro

Reply via email to