nastra commented on code in PR #12892:
URL: https://github.com/apache/iceberg/pull/12892#discussion_r2568876096


##########
core/src/test/java/org/apache/iceberg/catalog/CatalogTests.java:
##########
@@ -986,8 +1000,106 @@ public void testRenameTable() {
     assertEmpty("Should not contain table after drop", catalog, NS);
   }
 
+  @Test
+  public void testCreateTableInUniqueLocation() {
+    assumeThat(supportsTableRename())
+        .as("Only valid for catalogs that support table rename operation")
+        .isTrue();
+    assumeThat(supportsUniqueTableLocation())
+        .as("Only valid for catalogs that support unique table location")
+        .isTrue();
+
+    ImmutableMap<String, String> additionalProperties =

Review Comment:
   ```suggestion
       Map<String, String> additionalProperties =
   ```



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to