You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by kr...@apache.org on 2021/10/04 13:30:47 UTC

[hive] branch master updated: HIVE-25574: Replace clob with varchar when storing creation metadata (Krisztian Kasa, reviewed by Peter Vary)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new a0482e4  HIVE-25574: Replace clob with varchar when storing creation metadata (Krisztian Kasa, reviewed by Peter Vary)
a0482e4 is described below

commit a0482e49307de5fdaf5f3f2eaf68f6f7cb4509e3
Author: Krisztian Kasa <kk...@cloudera.com>
AuthorDate: Mon Oct 4 15:30:35 2021 +0200

    HIVE-25574: Replace clob with varchar when storing creation metadata (Krisztian Kasa, reviewed by Peter Vary)
---
 standalone-metastore/metastore-server/src/main/resources/package.jdo | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/standalone-metastore/metastore-server/src/main/resources/package.jdo b/standalone-metastore/metastore-server/src/main/resources/package.jdo
index e31f076..c5a7db1 100644
--- a/standalone-metastore/metastore-server/src/main/resources/package.jdo
+++ b/standalone-metastore/metastore-server/src/main/resources/package.jdo
@@ -261,7 +261,7 @@
         <element column="TBL_ID"/>
       </field>
       <field name="txnList">
-        <column name="TXN_LIST" jdbc-type="CLOB" allows-null="true"/>
+        <column name="TXN_LIST" length="32672" jdbc-type="VARCHAR" allows-null="true"/>
       </field>
     </class>