This is an automated email from the ASF dual-hosted git repository.

dependabot[bot] pushed a change to branch 
dependabot/go_modules/github.com/apache/thrift-0.23.0
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git


 discard cd067e6e build(deps): bump github.com/apache/thrift from 0.22.0 to 
0.23.0
     add 69fc3cdc feat(catalog): hadoop table and namespace CRUD operations 
(#969)
     add 774c8add feat: Deletion vector reader (#866)
     add c38e16bc test(table): add v3 OCC row lineage regression tests (#998) 
(#1043)
     add 775d8aa5 feat(manifest): omit data_file.distinct_counts on v3 
manifests (#1039)
     add 89f36c16 feat: added override of http client as well as readme on 
utils.WithAw… (#981)
     add 055eee54 feat(table): warn when writing Parquet position-deletes on v3 
(#1040)
     add d21df2da feat(cli): add info command for single-screen table summary 
(#1064)
     add 092822e5 feat(cli): add maintenance command wiring and stubs (#1073)
     add be4cf4cf feat(table): add RewriteFiles snapshot-op builder (#1033)
     add a0919f11 build(deps): bump the gomod_updates group across 1 directory 
with 10 updates (#1047)
     add 712b264c build(deps): bump github.com/in-toto/in-toto-golang from 
0.10.0 to 0.11.0 (#1042)
     add a38f57ff fix(manifest): restore data_file.distinct_counts on v1/v2 
Avro schemas (#1044)
     add 4ac44083 build(deps): bump github/codeql-action from 4.35.2 to 4.35.3 
(#1046)
     add 2a37a19e feat(table/dv): plumb cardinality validation through ReadDV 
(#1056)
     add 261edba7 test(puffin): golden round-trip a deletion-vector-v1 blob 
(#1041)
     add 2fc3746e build(deps): bump github.com/apache/thrift from 0.22.0 to 
0.23.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   (cd067e6e)
            \
             N -- N -- N   
refs/heads/dependabot/go_modules/github.com/apache/thrift-0.23.0 (2fc3746e)

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:
 .github/workflows/codeql.yml                       |   4 +-
 catalog/glue/glue.go                               |  11 +
 catalog/hadoop/hadoop.go                           |   7 +-
 catalog/hadoop/hadoop_integration_test.go          |  84 ++-
 catalog/hadoop/hadoop_test.go                      | 102 ++--
 .../analyze.go => cmd/iceberg/branch_tag.go        |  25 +-
 .../iceberg/clean_orphan_files.go                  |  21 +-
 .../iceberg/expire_snapshots.go                    |  21 +-
 cmd/iceberg/info.go                                | 166 ++++++
 cmd/iceberg/info_test.go                           | 216 +++++++
 cmd/iceberg/main.go                                |  70 ++-
 cmd/iceberg/maintenance.go                         | 253 ++++++++
 cmd/iceberg/output.go                              |  10 +
 .../analyze.go => cmd/iceberg/partition_stats.go   |  21 +-
 .../iceberg/schema_defaults.go                     |  20 +-
 .../analyze.go => cmd/iceberg/snapshots.go         |  26 +-
 .../context.go => cmd/iceberg/upgrade_rollback.go  |  30 +-
 go.mod                                             |  63 +-
 go.sum                                             | 128 +++--
 internal/avro_schemas.go                           |   6 +
 io/gocloud/s3.go                                   |  15 +
 manifest.go                                        |  26 +-
 manifest_test.go                                   | 108 ++++
 puffin/dv_golden_test.go                           | 167 ++++++
 puffin/gen_dv_fixture.go                           | 110 ++++
 puffin/testdata/README.md                          |  48 +-
 puffin/testdata/deletion-vector-v1-payload.bin     | Bin 0 -> 50 bytes
 puffin/testdata/deletion-vector-v1.puffin          | Bin 0 -> 314 bytes
 table/arrow_utils.go                               |   9 +
 table/dv/deletion_vector.go                        | 213 +++++++
 table/dv/deletion_vector_test.go                   | 500 ++++++++++++++++
 table/dv/roaring_bitmap.go                         | 166 ++++++
 table/dv/roaring_bitmap_test.go                    | 219 +++++++
 table/dv/testdata/deletes/64map32bitvals.bin       | Bin 0 -> 48 bytes
 table/dv/testdata/deletes/64mapempty.bin           | Bin 0 -> 8 bytes
 table/dv/testdata/deletes/64mapspreadvals.bin      | Bin 0 -> 408 bytes
 .../dv/testdata/deletes}/README.md                 |   4 +-
 .../deletes/all-container-types-position-index.bin | Bin 0 -> 94 bytes
 table/dv/testdata/deletes/empty-position-index.bin | Bin 0 -> 20 bytes
 .../small-alternating-values-position-index.bin    | Bin 0 -> 50 bytes
 .../small-and-large-values-position-index.bin      | Bin 0 -> 56 bytes
 table/dv_scan_planning_test.go                     |   3 +-
 table/occ_scenario_test.go                         | 249 ++++++++
 table/pos_delete_v3_warn_test.go                   | 193 +++++++
 table/rewrite_data_files.go                        | 368 +++++++++---
 table/rewrite_data_files_test.go                   | 137 +++++
 table/rewrite_files.go                             | 240 ++++++++
 table/rewrite_files_test.go                        | 636 +++++++++++++++++++++
 table/row_delta.go                                 |   2 +-
 table/transaction.go                               |  37 +-
 50 files changed, 4388 insertions(+), 346 deletions(-)
 copy table/compaction/analyze.go => cmd/iceberg/branch_tag.go (63%)
 copy view/internal/utils_test.go => cmd/iceberg/clean_orphan_files.go (66%)
 copy view/internal/utils_test.go => cmd/iceberg/expire_snapshots.go (67%)
 create mode 100644 cmd/iceberg/info.go
 create mode 100644 cmd/iceberg/info_test.go
 create mode 100644 cmd/iceberg/maintenance.go
 copy table/compaction/analyze.go => cmd/iceberg/partition_stats.go (67%)
 copy view/internal/utils_test.go => cmd/iceberg/schema_defaults.go (71%)
 copy table/compaction/analyze.go => cmd/iceberg/snapshots.go (59%)
 copy utils/context.go => cmd/iceberg/upgrade_rollback.go (58%)
 create mode 100644 puffin/dv_golden_test.go
 create mode 100644 puffin/gen_dv_fixture.go
 create mode 100644 puffin/testdata/deletion-vector-v1-payload.bin
 create mode 100644 puffin/testdata/deletion-vector-v1.puffin
 create mode 100644 table/dv/deletion_vector.go
 create mode 100644 table/dv/deletion_vector_test.go
 create mode 100644 table/dv/roaring_bitmap.go
 create mode 100644 table/dv/roaring_bitmap_test.go
 create mode 100644 table/dv/testdata/deletes/64map32bitvals.bin
 create mode 100644 table/dv/testdata/deletes/64mapempty.bin
 create mode 100644 table/dv/testdata/deletes/64mapspreadvals.bin
 copy {puffin/testdata => table/dv/testdata/deletes}/README.md (84%)
 create mode 100644 
table/dv/testdata/deletes/all-container-types-position-index.bin
 create mode 100644 table/dv/testdata/deletes/empty-position-index.bin
 create mode 100644 
table/dv/testdata/deletes/small-alternating-values-position-index.bin
 create mode 100644 
table/dv/testdata/deletes/small-and-large-values-position-index.bin
 create mode 100644 table/pos_delete_v3_warn_test.go
 create mode 100644 table/rewrite_files.go
 create mode 100644 table/rewrite_files_test.go

Reply via email to