This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/go_modules/golang.org/x/sys-0.48.0
in repository https://gitbox.apache.org/repos/asf/arrow-go.git
omit 2e6c8b32 chore: Bump golang.org/x/sys from 0.47.0 to 0.48.0
add 1e2963d4 chore: Bump github.com/andybalholm/brotli from 1.2.3 to 1.2.4
(#1318)
add 30e27499 chore: Bump github.com/twmb/avro from 1.8.0 to 1.9.0 (#1316)
add e6615cb7 perf(internal/hashing): avoid boxing byte slices in
InsertOrGet (#1310)
add eda27cd1 perf(parquet): use typed memo insertion for fixed-width
dictionaries (#1312)
add df6bddc4 fix(arrow): support zero-length fixed-size lists (#1308)
add d577b68a fix(arrow/decimal): widen Decimal64 rescale to 64 bits (#1307)
add 7c210e36 perf(parquet): decode nullable plain values into valid runs
(#1314)
add 9e0b802a ci: use clang ASan runtime for -asan tests (#1299)
add f554e65f perf(arrow/array): append dictionary indices directly (#1313)
add ee8ecae4 chore: require Go 1.26 (#1326)
add 8f3285c2 ci: shard the benchmark workflow across parallel jobs (#958)
add de54414b chore: Bump golang.org/x/sys from 0.47.0 to 0.48.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 (2e6c8b32)
\
N -- N -- N
refs/heads/dependabot/go_modules/golang.org/x/sys-0.48.0 (de54414b)
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:
.env | 2 +-
.github/workflows/benchmark.yml | 86 +++++-
.github/workflows/lint.yml | 2 +-
.github/workflows/rc.yml | 9 +
.github/workflows/test.yml | 9 +-
.pre-commit-config.yaml | 2 +-
arrow/array/decimal128_test.go | 2 +-
arrow/array/decimal256_test.go | 2 +-
arrow/array/dictionary.go | 73 +++---
.../dictionary_append_indices_benchmark_test.go | 91 +++++++
arrow/array/dictionary_test.go | 37 +++
arrow/array/fixed_size_list_test.go | 44 ++++
arrow/array/fixedsize_binary_test.go | 2 +-
arrow/array/interval_test.go | 2 +-
arrow/array/json_reader_test.go | 9 +-
arrow/array/string_test.go | 4 +-
arrow/array/validate.go | 4 +-
arrow/cdata/cdata.go | 4 +-
arrow/cdata/cdata_test.go | 34 ++-
.../compute/internal/kernels/scalar_arithmetic.go | 8 +-
arrow/datatype_nested.go | 8 +-
arrow/datatype_nested_test.go | 14 +
arrow/decimal/decimal.go | 4 +-
arrow/decimal/decimal_test.go | 9 +-
arrow/flight/flightsql/driver/README.md | 2 +-
arrow/ipc/ipc_test.go | 36 +++
ci/docker/debian-12.dockerfile | 11 +-
ci/scripts/bench.sh | 247 +++++++++++++++--
ci/scripts/bench_adapt.py | 291 +++++++++++++++++----
ci/scripts/bench_shard.sh | 50 ++++
ci/scripts/test.sh | 45 +++-
go.mod | 4 +-
go.sum | 8 +-
internal/hashing/xxh3_memo_table.go | 2 +-
internal/hashing/xxh3_memo_table_bench_test.go | 28 ++
.../internal/encoding/encoding_benchmarks_test.go | 69 +++++
parquet/internal/encoding/encoding_test.go | 1 +
.../encoding/fixed_len_byte_array_encoder.go | 10 +-
.../plain_decoder_spaced_benchmark_test.go | 96 +++++++
.../internal/encoding/plain_decoder_spaced_test.go | 108 ++++++++
parquet/internal/encoding/plain_encoding_types.go | 83 +++++-
parquet/internal/encoding/typed_encoder.go | 7 +-
42 files changed, 1381 insertions(+), 178 deletions(-)
create mode 100644 arrow/array/dictionary_append_indices_benchmark_test.go
create mode 100644 ci/scripts/bench_shard.sh
create mode 100644
parquet/internal/encoding/plain_decoder_spaced_benchmark_test.go
create mode 100644 parquet/internal/encoding/plain_decoder_spaced_test.go