You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by st...@apache.org on 2023/04/11 16:20:00 UTC

[iceberg] branch master updated: Nessie: Fix testcase failures (#7320)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new fc6bd1e7ab Nessie: Fix testcase failures (#7320)
fc6bd1e7ab is described below

commit fc6bd1e7ab92086611bab87037b9edd17f99ed40
Author: Ajantha Bhat <aj...@gmail.com>
AuthorDate: Tue Apr 11 21:49:52 2023 +0530

    Nessie: Fix testcase failures (#7320)
---
 .../test/java/org/apache/iceberg/nessie/TestMultipleClients.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/nessie/src/test/java/org/apache/iceberg/nessie/TestMultipleClients.java b/nessie/src/test/java/org/apache/iceberg/nessie/TestMultipleClients.java
index 8da96c224d..fb7f4ea309 100644
--- a/nessie/src/test/java/org/apache/iceberg/nessie/TestMultipleClients.java
+++ b/nessie/src/test/java/org/apache/iceberg/nessie/TestMultipleClients.java
@@ -98,7 +98,7 @@ public class TestMultipleClients extends BaseTestIceberg {
 
   @Test
   public void testListTables() {
-    catalog.createTable(TableIdentifier.parse("foo.tbl1"), schema);
+    createTable(TableIdentifier.parse("foo.tbl1"), schema);
     Assertions.assertThat(catalog.listTables(Namespace.of("foo")))
         .containsExactlyInAnyOrder(TableIdentifier.parse("foo.tbl1"));
 
@@ -116,7 +116,7 @@ public class TestMultipleClients extends BaseTestIceberg {
   @Test
   public void testCommits() {
     TableIdentifier identifier = TableIdentifier.parse("foo.tbl1");
-    catalog.createTable(identifier, schema);
+    createTable(identifier, schema);
     Table tableFromCatalog = catalog.loadTable(identifier);
     tableFromCatalog.updateSchema().addColumn("x1", Types.LongType.get()).commit();
 
@@ -133,7 +133,7 @@ public class TestMultipleClients extends BaseTestIceberg {
   @Test
   public void testConcurrentCommitsWithRefresh() {
     TableIdentifier identifier = TableIdentifier.parse("foo.tbl1");
-    catalog.createTable(identifier, schema);
+    createTable(identifier, schema);
 
     String hashBefore = catalog.currentHash();