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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 63c2523ab [hotfix] Fix test error in the CreateTableITCase (#1829)
63c2523ab is described below

commit 63c2523ab08901bddd0605e93a9b0e5bdc4c7faf
Author: Kerwin <[email protected]>
AuthorDate: Wed Aug 16 17:18:20 2023 +0800

    [hotfix] Fix test error in the CreateTableITCase (#1829)
---
 .../src/test/java/org/apache/paimon/hive/CreateTableITCase.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/CreateTableITCase.java
 
b/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/CreateTableITCase.java
index df7ea6806..c6d4332c5 100644
--- 
a/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/CreateTableITCase.java
+++ 
b/paimon-hive/paimon-hive-connector-common/src/test/java/org/apache/paimon/hive/CreateTableITCase.java
@@ -40,7 +40,6 @@ import 
org.apache.paimon.shade.guava30.com.google.common.collect.Maps;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hive.metastore.HiveMetaHook;
 import org.apache.hadoop.hive.metastore.api.MetaException;
-import org.apache.hadoop.hive.metastore.api.Table;
 import org.apache.hadoop.hive.ql.parse.ParseException;
 import org.apache.hadoop.hive.serde2.typeinfo.TypeInfoFactory;
 import org.assertj.core.api.Assertions;
@@ -505,7 +504,8 @@ public class CreateTableITCase extends HiveTestBase {
         }
 
         @Override
-        public void commitCreateTable(Table table) throws MetaException {
+        public void 
commitCreateTable(org.apache.hadoop.hive.metastore.api.Table table)
+                throws MetaException {
             throw new RuntimeException("mock create table failed");
         }
     }

Reply via email to