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.34.4
in repository https://gitbox.apache.org/repos/asf/arrow-go.git
discard 7873eab chore: Bump modernc.org/sqlite from 1.29.6 to 1.34.4
add c68faad chore: Bump github.com/substrait-io/substrait-go/v3 from
3.2.0 to 3.2.1 (#237)
add 504ee91 chore: Bump golang.org/x/tools from 0.28.0 to 0.29.0 (#235)
add b51abff chore: Update the project URL in apache/arrow-go (#239)
add f24fb77 chore: Enable Java integration test (#240)
add 365a84a feat(parquet): Add support for Page Indexes (#223)
add 58255a7 chore: bump version (#241)
add 32785cd fix(release): fix wrong upload path (#243)
add 273ac73 chore: Bump google.golang.org/protobuf from 1.36.1 to 1.36.2
(#248)
add 5f06b07 chore: Bump github.com/substrait-io/substrait-go/v3 from
3.2.1 to 3.3.0 (#247)
add e076834 chore: Bump actions/upload-artifact from 4.5.0 to 4.6.0 (#245)
add b919339 chore: Bump modernc.org/sqlite from 1.29.6 to 1.34.4
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 (7873eab)
\
N -- N -- N
refs/heads/dependabot/go_modules/modernc.org/sqlite-1.34.4 (b919339)
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:
.asf.yaml | 2 +-
.github/workflows/rc.yml | 2 +-
.github/workflows/test.yml | 6 +
arrow/doc.go | 2 +-
arrow/flight/flightsql/column_metadata.go | 6 +-
dev/release/release.sh | 13 +-
go.mod | 13 +-
go.sum | 30 +-
parquet/encryption_read_config_test.go | 119 ++-
parquet/encryption_write_config_test.go | 5 +-
parquet/file/column_writer.go | 31 +-
parquet/file/column_writer_test.go | 3 +
parquet/file/file_reader.go | 21 +-
parquet/file/file_writer.go | 46 +-
parquet/file/file_writer_test.go | 471 +++++++++++
parquet/file/page_reader.go | 57 +-
parquet/file/page_writer.go | 67 +-
parquet/file/row_group_writer.go | 68 +-
...e_reader_mmap_windows.go => size_statistics.go} | 14 +-
parquet/internal/encryption/decryptor.go | 38 +
parquet/metadata/column_chunk.go | 31 +
parquet/metadata/file.go | 41 +-
parquet/metadata/metadata_test.go | 49 ++
parquet/metadata/page_index.go | 928 +++++++++++++++++++++
parquet/metadata/page_index_internal_test.go | 197 +++++
parquet/metadata/page_index_test.go | 802 ++++++++++++++++++
parquet/metadata/statistics.go | 454 +++++++++-
parquet/metadata/statistics_types.gen.go | 9 +
parquet/metadata/statistics_types.gen.go.tmpl | 1 +
parquet/pqarrow/schema.go | 8 +-
parquet/types.go | 4 +
parquet/writer_properties.go | 63 +-
32 files changed, 3500 insertions(+), 101 deletions(-)
copy parquet/file/{file_reader_mmap_windows.go => size_statistics.go} (74%)
create mode 100644 parquet/metadata/page_index.go
create mode 100644 parquet/metadata/page_index_internal_test.go
create mode 100644 parquet/metadata/page_index_test.go