Fokko commented on issue #13850:
URL: https://github.com/apache/iceberg/issues/13850#issuecomment-3197251217

   The following test [passes in 
TestRESTCatalog](https://github.com/apache/iceberg/blob/main/core/src/test/java/org/apache/iceberg/rest/TestRESTCatalog.java),
 but I think this re-uses the original schema:
   
   ```java
       @Test
       public void addAndDropColumn() {
           Namespace namespace = Namespace.of("ns");
           TableIdentifier identifier1 = TableIdentifier.of(namespace, 
"addAndDropColumn");
   
           if (requiresNamespaceCreate()) {
               catalog().createNamespace(namespace);
           }
   
           Table tbl = catalog().createTable(identifier1, SCHEMA);
   
           tbl.updateSchema().addColumn("foo", Types.StringType.get()).commit();
   
           tbl.updateSchema().deleteColumn("foo").commit();
       }
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to