This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-cpp.git
from b7b5dd11 feat: extend table scan to support v2 deletes (#489)
add e5eb6e00 feat: implement add column/delete column (#486)
No new revisions were added by this update.
Summary of changes:
src/iceberg/json_internal.cc | 6 +-
src/iceberg/schema_field.cc | 21 +-
src/iceberg/schema_field.h | 12 +-
src/iceberg/test/CMakeLists.txt | 1 +
src/iceberg/test/update_schema_test.cc | 739 +++++++++++++++++++++++++++++++++
src/iceberg/type.cc | 10 +-
src/iceberg/type.h | 1 +
src/iceberg/update/update_schema.cc | 402 +++++++++++++++++-
src/iceberg/update/update_schema.h | 22 +-
src/iceberg/util/visit_type.h | 38 ++
src/iceberg/util/visitor_generate.h | 17 +
11 files changed, 1232 insertions(+), 37 deletions(-)
create mode 100644 src/iceberg/test/update_schema_test.cc