This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch dependabot/cargo/main/rand-0.10.1
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard af17f4ba8b chore(deps): bump rand from 0.9.4 to 0.10.1
add d2f1611253 [Variant] Add `variant_get` access as `Variant` (#9681)
add 6ba533d09a Return PyValueError for nullable PyArrow struct imports
(#10174)
add 7d9f620cb5 Benchmarks and performance improvement for parquet boolean
reader (#10196)
add 7fb7751964 chore(deps): bump actions/cache from 5.0.5 to 6.0.0 (#10203)
add a173f012fa Improve performance of `concat_elements` ByteViewArray
concatenation (#10161)
add 8678fd6ad6 Minor: improve PageStore docs with a temp-file spilling
example (#10074)
add 4e5583273f fix: `Buffer::into_mutable` return error instead of panic
for converting owned sliced when not start at 0 and fix returned Mutable length
(#10118)
add 1d857758a1 [10125] Introduce mult-batch decode benchmarks (#10207)
add d0d3c52e61 chore(deps): bump actions/setup-python from 6.2.0 to 6.3.0
(#10210)
add 9f37683968 feat(arrow_csv): add header validation option (#10144)
add 44f377284e Fix deprecate `MutableArrayData::extend` and
`MutableArrayData::extend_nulls` in favour of fallible `try_extend` /
`try_extend_nulls` (#9710)
add b737f99245 [arrow-select] perf: Replace `ArrayData` with direct
`Array` construction in take kernels (#10176)
add 40e897a89b chore: Fix clippy::byte_char_slices (use byte strings
instead of explicit arrays) (#10225)
add 078cf60f40 nit: arrow-pyarrow: Use string interning (#10224)
add 8de5640254 feat(ipc): Supports compression level configuration (#10133)
add c1f99af1dd Support concatenation of mixed FixedSizeBinary via
`concat_elements_dyn` (#10222)
add da07bced95 chore(deps): bump the all-other-cargo-deps group across 1
directory with 16 updates (#10218)
add 05ab9790ee chore(deps): bump rand from 0.9.4 to 0.10.1
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 (af17f4ba8b)
\
N -- N -- N refs/heads/dependabot/cargo/main/rand-0.10.1
(05ab9790ee)
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/dev.yml | 2 +-
.github/workflows/integration.yml | 6 +-
.github/workflows/parquet.yml | 2 +-
Cargo.lock | 70 +--
arrow-array/src/array/binary_array.rs | 16 +-
arrow-array/src/array/fixed_size_binary_array.rs | 10 +-
arrow-array/src/array/null_array.rs | 2 +-
arrow-array/src/array/string_array.rs | 4 +-
arrow-array/src/ffi.rs | 2 +-
arrow-buffer/src/buffer/immutable.rs | 81 +++-
arrow-buffer/src/buffer/null.rs | 47 +-
arrow-cast/src/cast/list.rs | 20 +-
arrow-csv/src/reader/mod.rs | 135 ++++++
arrow-data/src/transform/boolean.rs | 7 +-
arrow-data/src/transform/fixed_binary.rs | 7 +-
arrow-data/src/transform/fixed_size_list.rs | 20 +-
arrow-data/src/transform/list.rs | 15 +-
arrow-data/src/transform/list_view.rs | 19 +-
arrow-data/src/transform/mod.rs | 78 ++-
arrow-data/src/transform/null.rs | 9 +-
arrow-data/src/transform/primitive.rs | 8 +-
arrow-data/src/transform/run.rs | 139 ++++--
arrow-data/src/transform/structure.rs | 35 +-
arrow-data/src/transform/union.rs | 38 +-
arrow-data/src/transform/utils.rs | 74 ++-
arrow-data/src/transform/variable_size.rs | 13 +-
arrow-flight/benches/flight.rs | 60 ++-
arrow-ipc/src/compression.rs | 39 +-
arrow-ipc/src/lib.rs | 2 +-
arrow-ipc/src/writer.rs | 83 +++-
arrow-pyarrow-testing/tests/pyarrow.rs | 37 +-
arrow-pyarrow/src/lib.rs | 82 +++-
arrow-select/src/concat.rs | 2 +-
arrow-select/src/filter.rs | 10 +-
arrow-select/src/interleave.rs | 6 +-
arrow-select/src/merge.rs | 20 +-
arrow-select/src/take.rs | 136 +++---
arrow-select/src/zip.rs | 16 +-
arrow-string/src/concat_elements.rs | 532 +++++++++++++++------
arrow-string/src/substring.rs | 4 +-
arrow/Cargo.toml | 5 +
arrow/benches/concatenate_elements.rs | 92 ++++
arrow/benches/mutable_array.rs | 2 +-
arrow/examples/builders.rs | 6 +-
arrow/tests/array_transform.rs | 134 +++---
arrow/tests/array_validation.rs | 4 +-
parquet-variant-compute/src/variant_get.rs | 186 +++++--
parquet-variant/src/decoder.rs | 8 +-
parquet/benches/arrow_reader.rs | 107 ++++-
.../arrow/array_reader/fixed_size_list_array.rs | 12 +-
parquet/src/arrow/array_reader/list_array.rs | 8 +-
parquet/src/arrow/array_reader/primitive_array.rs | 2 +-
parquet/src/arrow/arrow_writer/mod.rs | 74 +--
parquet/src/column/page_store.rs | 9 +-
parquet/src/file/mod.rs | 4 +-
55 files changed, 1887 insertions(+), 654 deletions(-)
create mode 100644 arrow/benches/concatenate_elements.rs