You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/05/10 01:59:55 UTC

[iceberg] branch master updated (56933c179 -> 62b01fab8)

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

blue pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


    from 56933c179 Spark 2.4 - 3.X: Backport Fix CommitStateUnknown Handling (#4687) (#4719)
     add 62b01fab8 Core: Support table rename in RESTCatalog (#4448)

No new revisions were added by this update.

Summary of changes:
 .../java/org/apache/iceberg/jdbc/JdbcCatalog.java  |   4 +-
 .../org/apache/iceberg/rest/CatalogHandlers.java   |   5 +
 .../java/org/apache/iceberg/rest/RESTCatalog.java  |   7 +
 .../iceberg/rest/requests/RenameTableRequest.java  |  94 +++++++++++++
 .../org/apache/iceberg/catalog/CatalogTests.java   |  74 +++++++++++
 .../org/apache/iceberg/jdbc/TestJdbcCatalog.java   |   4 +-
 .../apache/iceberg/rest/RESTCatalogAdapter.java    |  10 +-
 .../rest/requests/TestRenameTableRequest.java      | 148 +++++++++++++++++++++
 8 files changed, 342 insertions(+), 4 deletions(-)
 create mode 100644 core/src/main/java/org/apache/iceberg/rest/requests/RenameTableRequest.java
 create mode 100644 core/src/test/java/org/apache/iceberg/rest/requests/TestRenameTableRequest.java