You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by gs...@apache.org on 2023/01/31 20:25:31 UTC

[hive] branch master updated: HIVE-26793: Create a new configuration to override "no compaction" for tables (#4001) (Kokila N, reviewed by Sai Hemanth G)

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

gsaihemanth 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 9049d407d32 HIVE-26793: Create a new configuration to override "no compaction" for tables (#4001) (Kokila N, reviewed by Sai Hemanth G)
9049d407d32 is described below

commit 9049d407d3223e66021561bd3aa98827f83036f9
Author: kokila-19 <35...@users.noreply.github.com>
AuthorDate: Wed Feb 1 01:55:23 2023 +0530

    HIVE-26793: Create a new configuration to override "no compaction" for tables (#4001) (Kokila N, reviewed by Sai Hemanth G)
---
 .../src/gen/thrift/gen-cpp/hive_metastore_constants.cpp               | 2 +-
 .../src/gen/thrift/gen-cpp/hive_metastore_constants.h                 | 2 +-
 .../metastore-common/src/gen/thrift/gen-php/metastore/Constant.php    | 4 ++--
 .../src/gen/thrift/gen-py/hive_metastore/constants.py                 | 2 +-
 .../src/gen/thrift/gen-rb/hive_metastore_constants.rb                 | 2 +-
 .../metastore-common/src/main/thrift/hive_metastore.thrift            | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp
index 4dbdcc51047..a94b58fa2f5 100644
--- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp
+++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp
@@ -65,7 +65,7 @@ hive_metastoreConstants::hive_metastoreConstants() {
 
   TABLE_IS_TRANSACTIONAL = "transactional";
 
-  TABLE_NO_AUTO_COMPACT = "no_auto_compaction";
+  NO_AUTO_COMPACT = "no_auto_compaction";
 
   TABLE_TRANSACTIONAL_PROPERTIES = "transactional_properties";
 
diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h
index df7dd187fcf..ddff39d4735 100644
--- a/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h
+++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-cpp/hive_metastore_constants.h
@@ -42,7 +42,7 @@ class hive_metastoreConstants {
   std::string FILE_OUTPUT_FORMAT;
   std::string META_TABLE_STORAGE;
   std::string TABLE_IS_TRANSACTIONAL;
-  std::string TABLE_NO_AUTO_COMPACT;
+  std::string NO_AUTO_COMPACT;
   std::string TABLE_TRANSACTIONAL_PROPERTIES;
   std::string TABLE_BUCKETING_VERSION;
   std::string DRUID_CONFIG_PREFIX;
diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php
index 783157a630d..84809315937 100644
--- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php
+++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Constant.php
@@ -45,7 +45,7 @@ final class Constant extends \Thrift\Type\TConstant
     static protected $FILE_OUTPUT_FORMAT;
     static protected $META_TABLE_STORAGE;
     static protected $TABLE_IS_TRANSACTIONAL;
-    static protected $TABLE_NO_AUTO_COMPACT;
+    static protected $NO_AUTO_COMPACT;
     static protected $TABLE_TRANSACTIONAL_PROPERTIES;
     static protected $TABLE_BUCKETING_VERSION;
     static protected $DRUID_CONFIG_PREFIX;
@@ -196,7 +196,7 @@ final class Constant extends \Thrift\Type\TConstant
         return "transactional";
     }
 
-    protected static function init_TABLE_NO_AUTO_COMPACT()
+    protected static function init_NO_AUTO_COMPACT()
     {
         return "no_auto_compaction";
     }
diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py
index 8e36c5160a9..7c98dd25fbe 100644
--- a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py
+++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/constants.py
@@ -39,7 +39,7 @@ FILE_INPUT_FORMAT = "file.inputformat"
 FILE_OUTPUT_FORMAT = "file.outputformat"
 META_TABLE_STORAGE = "storage_handler"
 TABLE_IS_TRANSACTIONAL = "transactional"
-TABLE_NO_AUTO_COMPACT = "no_auto_compaction"
+NO_AUTO_COMPACT = "no_auto_compaction"
 TABLE_TRANSACTIONAL_PROPERTIES = "transactional_properties"
 TABLE_BUCKETING_VERSION = "bucketing_version"
 DRUID_CONFIG_PREFIX = "druid."
diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb
index 4418e6f32a8..05135527cd1 100644
--- a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb
+++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_constants.rb
@@ -61,7 +61,7 @@ META_TABLE_STORAGE = %q"storage_handler"
 
 TABLE_IS_TRANSACTIONAL = %q"transactional"
 
-TABLE_NO_AUTO_COMPACT = %q"no_auto_compaction"
+NO_AUTO_COMPACT = %q"no_auto_compaction"
 
 TABLE_TRANSACTIONAL_PROPERTIES = %q"transactional_properties"
 
diff --git a/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift b/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift
index 87595f632fe..011ed8a2780 100644
--- a/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift
+++ b/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift
@@ -3181,7 +3181,7 @@ const string FILE_INPUT_FORMAT    = "file.inputformat",
 const string FILE_OUTPUT_FORMAT   = "file.outputformat",
 const string META_TABLE_STORAGE   = "storage_handler",
 const string TABLE_IS_TRANSACTIONAL = "transactional",
-const string TABLE_NO_AUTO_COMPACT = "no_auto_compaction",
+const string NO_AUTO_COMPACT = "no_auto_compaction",
 const string TABLE_TRANSACTIONAL_PROPERTIES = "transactional_properties",
 const string TABLE_BUCKETING_VERSION = "bucketing_version",
 const string DRUID_CONFIG_PREFIX = "druid.",