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.0
in repository https://gitbox.apache.org/repos/asf/arrow-go.git
discard cf58dcc chore: Bump modernc.org/sqlite from 1.29.6 to 1.38.0
add c542dd6 feat: expose Payload.WritePayload to allow serializing into
IPC format (#421)
add 8fdb534 feat(parquet/variant): Parse JSON into variant (#426)
add ef87656 chore: Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to
2.3.0 (#427)
add f2ebc45 refactor(parquet/internal/encoding): Refactor parquet logic
to use generics (#428)
add 3a64d23 feat(arrrow/compute/expr): support substrait timestamp and
decimal properly (#418)
add 63e31de chore: Bump modernc.org/sqlite from 1.29.6 to 1.38.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 (cf58dcc)
\
N -- N -- N
refs/heads/dependabot/go_modules/modernc.org/sqlite-1.38.0 (63e31de)
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:
arrow/array/dictionary.go | 26 +-
arrow/compute/exprs/builders.go | 6 +-
arrow/compute/exprs/builders_test.go | 2 +-
arrow/compute/exprs/exec.go | 41 +-
arrow/compute/exprs/exec_test.go | 147 +-
arrow/compute/exprs/field_refs.go | 2 +-
arrow/compute/exprs/types.go | 73 +-
arrow/compute/internal/kernels/vector_hash.go | 8 +-
arrow/compute/utils.go | 52 +-
arrow/compute/utils_internal_test.go | 77 +
arrow/decimal/decimal.go | 106 +
arrow/extensions/variant.go | 36 +
arrow/extensions/variant_test.go | 350 ++-
arrow/ipc/file_writer.go | 6 +
arrow/ipc/writer_test.go | 25 +
go.mod | 21 +-
go.sum | 48 +-
internal/hashing/hash_funcs.go | 34 +
internal/hashing/types.tmpldata | 42 -
internal/hashing/xxh3_memo_table.gen.go | 2915 --------------------
internal/hashing/xxh3_memo_table.gen.go.tmpl | 358 ---
internal/hashing/xxh3_memo_table.go | 26 +-
internal/hashing/xxh3_memo_table_types.go | 290 ++
internal/utils/endians_default.go | 4 +
internal/utils/endians_s390x.go | 29 +
parquet/internal/encoding/byte_stream_split.go | 103 +-
.../internal/encoding/encoding_benchmarks_test.go | 4 +-
.../encoding/encoding_utils_big_endian.go} | 29 +-
.../encoding/encoding_utils_little_endian.go | 15 +-
parquet/internal/encoding/memo_table.go | 20 +-
parquet/internal/encoding/memo_table_test.go | 4 +-
.../internal/encoding/plain_encoder_types.gen.go | 701 -----
.../encoding/plain_encoder_types.gen.go.tmpl | 196 --
parquet/internal/encoding/plain_encoding_types.go | 142 +
parquet/internal/encoding/typed_encoder.gen.go | 1820 ------------
.../internal/encoding/typed_encoder.gen.go.tmpl | 431 ---
parquet/internal/encoding/typed_encoder.go | 753 +++++
parquet/internal/encoding/types.go | 22 +
parquet/types.go | 24 +
parquet/variant/builder.go | 142 +
parquet/variant/builder_test.go | 71 +
41 files changed, 2521 insertions(+), 6680 deletions(-)
create mode 100644 arrow/compute/utils_internal_test.go
delete mode 100644 internal/hashing/types.tmpldata
delete mode 100644 internal/hashing/xxh3_memo_table.gen.go
delete mode 100644 internal/hashing/xxh3_memo_table.gen.go.tmpl
create mode 100644 internal/hashing/xxh3_memo_table_types.go
copy parquet/{file/file_reader_mmap_windows.go =>
internal/encoding/encoding_utils_big_endian.go} (63%)
copy arrow/endian/little.go =>
parquet/internal/encoding/encoding_utils_little_endian.go (81%)
delete mode 100644 parquet/internal/encoding/plain_encoder_types.gen.go
delete mode 100644 parquet/internal/encoding/plain_encoder_types.gen.go.tmpl
create mode 100644 parquet/internal/encoding/plain_encoding_types.go
delete mode 100644 parquet/internal/encoding/typed_encoder.gen.go
delete mode 100644 parquet/internal/encoding/typed_encoder.gen.go.tmpl
create mode 100644 parquet/internal/encoding/typed_encoder.go