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

github-bot pushed a change to branch 
dependabot/github_actions/cpp-linter/cpp-linter-action-2.16.2
in repository https://gitbox.apache.org/repos/asf/iceberg-cpp.git


 discard 0c0be68  chore(deps): bump cpp-linter/cpp-linter-action from 2.15.0 to 
2.16.2
     add aec5acf  refactor: default equality operators for statistic file 
structs (#202)
     add 7a4ef57   refactor: remove unused arrow_c_data_internal files (#203)
     add 7595047  feat: implement endian conversion utilities (#196)
     add 88f5520  feat: add find field (by id and name) support to schema (#180)
     add b80bf8d  feat: add find field (by name) support to NestedType (#194)
     add 1002270  feat: implement basic parquet writer and add roundtrip tests 
(#198)
     add b696713  feat: implement AvroWriter Write method (#204)
     add 7404f14  feat: add manifest&manifest list writer (#176)
     add bc4526d  feat: add demo for registering table and planning files (#205)
     add 78d06bf  chore: use ninja for ci build (#215)
     add 2f8f08d  chore(deps): bump cpp-linter/cpp-linter-action from 2.15.0 to 
2.16.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   (0c0be68)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/cpp-linter/cpp-linter-action-2.16.2 
(2f8f08d)

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/cpp-linter.yml                   |   2 +-
 .github/workflows/sanitizer_test.yml               |   2 +-
 .gitignore                                         |   3 +
 README.md                                          |  10 +-
 ci/scripts/build_example.sh                        |   1 +
 ci/scripts/build_iceberg.sh                        |   1 +
 example/demo_example.cc                            |  57 ++-
 src/iceberg/CMakeLists.txt                         |   5 +-
 src/iceberg/arrow/arrow_error_transform_internal.h |   2 +
 src/iceberg/{avro.h => arrow/arrow_file_io.h}      |  17 +-
 src/iceberg/arrow/arrow_fs_file_io.cc              |   9 +
 src/iceberg/arrow_c_data_internal.cc               |  85 ----
 src/iceberg/arrow_c_data_internal.h                |  33 --
 src/iceberg/avro/{constants.h => avro_constants.h} |   0
 src/iceberg/avro/avro_schema_util.cc               |   2 +-
 src/iceberg/avro/avro_stream_internal.cc           |   5 +
 src/iceberg/avro/avro_stream_internal.h            |   2 +
 src/iceberg/avro/avro_writer.cc                    |  32 +-
 src/iceberg/catalog/in_memory_catalog.cc           |   7 +
 src/iceberg/catalog/in_memory_catalog.h            |   5 +
 src/iceberg/{avro.h => constants.h}                |  10 +-
 src/iceberg/json_internal.cc                       |   6 +-
 src/iceberg/manifest_adapter.h                     |  66 ++++
 src/iceberg/manifest_reader_internal.cc            |  14 +-
 src/iceberg/manifest_writer.cc                     | 182 +++++++++
 src/iceberg/manifest_writer.h                      | 103 ++++-
 src/iceberg/parquet/parquet_reader.cc              |   7 +-
 src/iceberg/parquet/parquet_register.cc            |   2 -
 src/iceberg/parquet/parquet_schema_util.cc         |   3 +-
 src/iceberg/parquet/parquet_writer.cc              | 167 ++++++++
 .../avro_writer.h => parquet/parquet_writer.h}     |  14 +-
 src/iceberg/schema.cc                              | 213 ++++++++++
 src/iceberg/schema.h                               |  33 ++
 src/iceberg/schema_internal.cc                     |   7 +-
 src/iceberg/schema_internal.h                      |   5 -
 src/iceberg/statistics_file.h                      |  18 +-
 src/iceberg/table_scan.cc                          |   2 +-
 src/iceberg/type.cc                                | 149 +++++--
 src/iceberg/type.h                                 |  73 +++-
 src/iceberg/util/endian.h                          |  96 +++++
 src/iceberg/util/macros.h                          |   6 +-
 src/iceberg/util/string_util.h                     |  13 +
 src/iceberg/v1_metadata.h                          |  62 +++
 src/iceberg/v2_metadata.h                          |  62 +++
 src/iceberg/v3_metadata.h                          |  64 +++
 test/CMakeLists.txt                                |   7 +-
 test/arrow_test.cc                                 |  61 +--
 test/avro_test.cc                                  |  67 +++-
 test/endian_test.cc                                |  87 +++++
 test/json_internal_test.cc                         |   4 +-
 test/parquet_test.cc                               | 175 ++++++++-
 test/schema_test.cc                                | 429 ++++++++++++++++++++-
 test/type_test.cc                                  | 139 ++++++-
 53 files changed, 2267 insertions(+), 359 deletions(-)
 copy src/iceberg/{avro.h => arrow/arrow_file_io.h} (74%)
 delete mode 100644 src/iceberg/arrow_c_data_internal.cc
 delete mode 100644 src/iceberg/arrow_c_data_internal.h
 rename src/iceberg/avro/{constants.h => avro_constants.h} (100%)
 rename src/iceberg/{avro.h => constants.h} (84%)
 create mode 100644 src/iceberg/manifest_adapter.h
 create mode 100644 src/iceberg/manifest_writer.cc
 create mode 100644 src/iceberg/parquet/parquet_writer.cc
 copy src/iceberg/{avro/avro_writer.h => parquet/parquet_writer.h} (80%)
 create mode 100644 src/iceberg/util/endian.h
 create mode 100644 src/iceberg/v1_metadata.h
 create mode 100644 src/iceberg/v2_metadata.h
 create mode 100644 src/iceberg/v3_metadata.h
 create mode 100644 test/endian_test.cc

Reply via email to