dlmarion commented on code in PR #5334:
URL: https://github.com/apache/accumulo/pull/5334#discussion_r1956631422


##########
test/src/main/java/org/apache/accumulo/test/functional/CloneTestIT.java:
##########
@@ -350,4 +353,64 @@ public void testCloneMetadataTable() {
           "mc1", CloneConfiguration.empty()));
     }
   }
+
+  @Test
+  public void testCloneIntoDiffNamespace() throws Exception {
+    try (AccumuloClient client = 
Accumulo.newClient().from(getClientProps()).build()) {
+      String tableName = getUniqueNames(1)[0];
+      client.tableOperations().create(tableName);
+      client.namespaceOperations().create("new");
+      client.tableOperations().clone(tableName, "new." + tableName, 
CloneConfiguration.empty());

Review Comment:
   Modified CloneTestIT with these changes in 3cfb06c.



-- 
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: notifications-unsubscr...@accumulo.apache.org

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

Reply via email to