ajantha-bhat commented on code in PR #7320:
URL: https://github.com/apache/iceberg/pull/7320#discussion_r1162954525
##########
nessie/src/test/java/org/apache/iceberg/nessie/TestMultipleClients.java:
##########
@@ -98,12 +98,12 @@ public void testLoadNamespaceMetadata() {
@Test
public void testListTables() {
- catalog.createTable(TableIdentifier.parse("foo.tbl1"), schema);
+ createTable(catalog, TableIdentifier.parse("foo.tbl1"), schema);
Assertions.assertThat(catalog.listTables(Namespace.of("foo")))
.containsExactlyInAnyOrder(TableIdentifier.parse("foo.tbl1"));
// another client creates a table with the same nessie server
- anotherCatalog.createTable(TableIdentifier.parse("foo.tbl2"), schema);
+ createTable(anotherCatalog, TableIdentifier.parse("foo.tbl2"), schema);
Review Comment:
yeah, creating again from a different client is not required as namespace
already exist. I removed it.
--
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]