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

github-bot pushed a change to branch 
dependabot/cargo/arrow-pyarrow-integration-testing/main/pyo3-0.25.1
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


 discard 9790e96d41 Update pyo3 requirement in 
/arrow-pyarrow-integration-testing
     add f5f09eaa71 Finish implementing Variant::Object and Variant::List 
(#7666)
     add e1ade7b036 chore: fix a typo in `ExtensionType::supports_data_type` 
docs (#7682)
     add a19fc628b9 Add `BatchCoalescer::push_filtered_batch` and docs (#7652)
     add e6c93c02fd Add `RecordBatch::schema_metadata_mut` and 
`Field::metadata_mut` (#7664)
     add 3837ac01dc arrow-row: Add support for REE (#7649)
     add f37b1149db Document REE row format and add some more tests (#7680)
     add ed25bbaf9d Implement Array Decoding in arrow-avro (#7559)
     add 56ac4dc242 Initial Builder API for Creating Variant Values (#7653)
     add 6227419d22 Speedup `interleave_views` (4-7x faster) (#7695)
     add 20c1c34cce Make variant iterators safely infallible (#7704)
     add fe65b8d937 [Variant] Add variant docs and examples (#7661)
     add ecd2905cc2 arrow-data: Add REE support for `build_extend` and 
`build_extend_nulls` (#7671)
     add 75008eb580 feat: add min max aggregate support for FixedSizeBinary 
(#7675)
     add 7276819d0d Split out variant code into several new sub-modules (#7717)
     add 1bed04c1e0 Optimize coalesce kernel for StringView (10-50% faster) 
(#7650)
     add fbaf7cea2d Support write to buffer api for SerializedFileWriter (#7714)
     add 469c7ee177 Define a "arrow-pyrarrow" crate to implement the "pyarrow" 
feature. (#7694)
     add 6294420803 Update pyo3 requirement in 
/arrow-pyarrow-integration-testing

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   (9790e96d41)
            \
             N -- N -- N   
refs/heads/dependabot/cargo/arrow-pyarrow-integration-testing/main/pyo3-0.25.1 
(6294420803)

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:
 .github/workflows/integration.yml                |   3 +-
 .github/workflows/rust.yml                       |   6 +-
 Cargo.toml                                       |   2 +
 arrow-arith/src/aggregate.rs                     |  47 ++
 arrow-array/src/array/byte_view_array.rs         |  26 +
 arrow-array/src/record_batch.rs                  |  24 +
 arrow-avro/src/reader/record.rs                  | 123 +++-
 arrow-data/src/transform/mod.rs                  |  28 +-
 arrow-data/src/transform/run.rs                  | 655 +++++++++++++++++++
 {arrow-arith => arrow-pyarrow}/Cargo.toml        |  12 +-
 arrow/src/pyarrow.rs => arrow-pyarrow/src/lib.rs |  18 +-
 {arrow => arrow-pyarrow}/tests/pyarrow.rs        |   8 +-
 arrow-row/src/lib.rs                             |  98 ++-
 arrow-row/src/run.rs                             | 779 +++++++++++++++++++++++
 arrow-schema/src/datatype.rs                     |   1 +
 arrow-schema/src/extension/mod.rs                |   2 +-
 arrow-schema/src/field.rs                        |   6 +
 arrow-select/src/coalesce.rs                     | 574 ++++++++++++-----
 arrow-select/src/coalesce/byte_view.rs           | 442 +++++++++++++
 arrow-select/src/coalesce/generic.rs             |  76 +++
 arrow-select/src/interleave.rs                   | 266 +++++++-
 arrow/Cargo.toml                                 |   8 +-
 arrow/benches/coalesce_kernels.rs                |   7 +-
 arrow/benches/interleave_kernels.rs              |   3 +
 arrow/src/lib.rs                                 |   2 +-
 parquet-variant/Cargo.toml                       |   4 +-
 parquet-variant/src/builder.rs                   | 739 +++++++++++++++++++++
 parquet-variant/src/decoder.rs                   | 186 +++++-
 parquet-variant/src/lib.rs                       |   2 +
 parquet-variant/src/utils.rs                     |  50 +-
 parquet-variant/src/variant.rs                   | 740 ++++-----------------
 parquet-variant/src/variant/list.rs              | 297 +++++++++
 parquet-variant/src/variant/metadata.rs          | 287 +++++++++
 parquet-variant/src/variant/object.rs            | 311 +++++++++
 parquet-variant/tests/variant_interop.rs         | 190 ++++--
 parquet/src/arrow/arrow_writer/mod.rs            |  16 +-
 parquet/src/file/writer.rs                       |  19 +-
 37 files changed, 5157 insertions(+), 900 deletions(-)
 create mode 100644 arrow-data/src/transform/run.rs
 copy {arrow-arith => arrow-pyarrow}/Cargo.toml (82%)
 rename arrow/src/pyarrow.rs => arrow-pyarrow/src/lib.rs (98%)
 rename {arrow => arrow-pyarrow}/tests/pyarrow.rs (95%)
 create mode 100644 arrow-row/src/run.rs
 create mode 100644 arrow-select/src/coalesce/byte_view.rs
 create mode 100644 arrow-select/src/coalesce/generic.rs
 create mode 100644 parquet-variant/src/builder.rs
 create mode 100644 parquet-variant/src/variant/list.rs
 create mode 100644 parquet-variant/src/variant/metadata.rs
 create mode 100644 parquet-variant/src/variant/object.rs

Reply via email to