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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4f9cea2922 [hive] Remove duplicate assignments to createTime for Hive 
table (#7188)
4f9cea2922 is described below

commit 4f9cea2922a0cc51e207b31a12eb8315199d8b7c
Author: huangxiaoping <[email protected]>
AuthorDate: Sun May 24 10:41:00 2026 +0800

    [hive] Remove duplicate assignments to createTime for Hive table (#7188)
---
 .../src/main/java/org/apache/paimon/hive/HiveCatalog.java                | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/paimon-hive/paimon-hive-catalog/src/main/java/org/apache/paimon/hive/HiveCatalog.java
 
b/paimon-hive/paimon-hive-catalog/src/main/java/org/apache/paimon/hive/HiveCatalog.java
index d32ec08648..63ba25e1b5 100644
--- 
a/paimon-hive/paimon-hive-catalog/src/main/java/org/apache/paimon/hive/HiveCatalog.java
+++ 
b/paimon-hive/paimon-hive-catalog/src/main/java/org/apache/paimon/hive/HiveCatalog.java
@@ -850,7 +850,6 @@ public class HiveCatalog extends AbstractCatalog {
         Table hiveTable =
                 org.apache.hadoop.hive.ql.metadata.Table.getEmptyTable(
                         identifier.getDatabaseName(), 
identifier.getObjectName());
-        hiveTable.setCreateTime((int) (System.currentTimeMillis() / 1000));
 
         Map<String, String> properties = new HashMap<>(view.options());
         // Table comment

Reply via email to