This is an automated email from the ASF dual-hosted git repository.
Jefffrey pushed a change to branch
dependabot/rust_toolchain/rust-toolchain-1.98.0
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
from 84a98c3eed fix parquet lints
add 94464b4ba2 [Parquet] Alp criterion bench (#10662)
add b1aa94b05c fix(arrow-ipc): write 8-byte i64 length prefix for
compressed IPC buffers on wasm32 (#10989)
add 738e69ccfc bench(arrow-cast): Add decimal formatting benchmark (#10997)
add 37775f3be4 perf(arrow-buffer): Format i256 values without num-bigint
(#11000)
add 324e51193d perf: Count digits to skip precision check when parsing
decimals (#10998)
add 062ce4356d perf: speed up `FixedSizeBinary` `filter` kernel (#10993)
add dbd24cc95d perf(nullbuf::expand) non aligned counts (#10980)
add 368dec1274 perf(ipc): use Vec instead of BufferBuilder for run-ends
re-encoding (#10245) (#11005)
add b54d812d6c arrow-data: remove unnecessary & incorrect null buffer
check in `ArrayData::validate` (#10709)
add 6e25fe3a67 fix(arrow-buffer): add a fallible collect_bool (#10984)
add 0b4847a0c5 fix: Sparse UnionArray equality should ignore unselected
children (#11009)
add 065e59f835 chore(deps): bump brotli from 8.0.4 to 9.0.0 (#11015)
add 205af210f5 Merge branch 'main' into
dependabot/rust_toolchain/rust-toolchain-1.98.0
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 16 +--
arrow-buffer/src/bigint/mod.rs | 54 ++++++-
arrow-buffer/src/buffer/mutable.rs | 28 +++-
arrow-buffer/src/buffer/null.rs | 42 +++++-
arrow-cast/Cargo.toml | 4 +
arrow-cast/benches/format_decimal.rs | 111 ++++++++++++++
arrow-cast/src/parse.rs | 104 +++++++++++---
arrow-data/src/data.rs | 37 +++--
arrow-data/src/equal/union.rs | 42 ++++--
arrow-ipc/src/compression.rs | 18 ++-
arrow-ipc/src/writer.rs | 10 +-
arrow-select/src/filter.rs | 61 +++++---
arrow/tests/array_equal.rs | 104 +++++++++++++-
parquet/Cargo.toml | 9 +-
parquet/benches/alp.rs | 271 +++++++++++++++++++++++++++++++++++
15 files changed, 818 insertions(+), 93 deletions(-)
create mode 100644 arrow-cast/benches/format_decimal.rs
create mode 100644 parquet/benches/alp.rs