This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/go_modules/modernc.org/sqlite-1.38.2 in repository https://gitbox.apache.org/repos/asf/arrow-go.git
discard cdf81349 chore: Bump modernc.org/sqlite from 1.29.6 to 1.38.2 add 994f0ab0 chore: Bump github.com/stretchr/testify from 1.10.0 to 1.11.0 (#482) add 32115946 Implement RLE dictionary decoder using generics (#477) add 38846e04 chore: Bump google.golang.org/protobuf from 1.36.7 to 1.36.8 (#481) add b52fd68f chore: Bump modernc.org/sqlite from 1.29.6 to 1.38.2 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 (cdf81349) \ N -- N -- N refs/heads/dependabot/go_modules/modernc.org/sqlite-1.38.2 (b52fd68f) 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: go.mod | 4 +- go.sum | 8 +- parquet/file/column_reader_test.go | 82 ++ parquet/internal/encoding/byte_array_decoder.go | 2 +- parquet/internal/encoding/decoder.go | 42 +- parquet/internal/encoding/typed_encoder.go | 58 +- parquet/internal/utils/bit_reader.go | 104 +- parquet/internal/utils/dictionary.go | 71 +- parquet/internal/utils/physical_types.tmpldata | 52 - parquet/internal/utils/rle.go | 198 +-- parquet/internal/utils/typed_rle_dict.gen.go | 1377 --------------------- parquet/internal/utils/typed_rle_dict.gen.go.tmpl | 220 ---- parquet/internal/utils/typed_rle_dict.go | 230 ++++ 13 files changed, 482 insertions(+), 1966 deletions(-) delete mode 100644 parquet/internal/utils/physical_types.tmpldata delete mode 100644 parquet/internal/utils/typed_rle_dict.gen.go delete mode 100644 parquet/internal/utils/typed_rle_dict.gen.go.tmpl create mode 100644 parquet/internal/utils/typed_rle_dict.go