diff --git a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp index 1cbd176597..1c1b3ce5ee 100644 --- a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp +++ b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp @@ -59,6 +59,8 @@ hive_metastoreConstants::hive_metastoreConstants() { TABLE_TRANSACTIONAL_PROPERTIES = "transactional_properties"; + TABLE_BUCKETING_VERSION = "bucketing_version"; + } }}} // namespace diff --git a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h index 3d068c3ec9..1f062530e4 100644 --- a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h +++ b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h @@ -39,6 +39,7 @@ class hive_metastoreConstants { std::string TABLE_IS_TRANSACTIONAL; std::string TABLE_NO_AUTO_COMPACT; std::string TABLE_TRANSACTIONAL_PROPERTIES; + std::string TABLE_BUCKETING_VERSION; }; extern const hive_metastoreConstants g_hive_metastore_constants; diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java index 1abedc917b..2ee81df1dc 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java @@ -85,4 +85,5 @@ public static final String TABLE_TRANSACTIONAL_PROPERTIES = "transactional_properties"; public static final String TABLE_BUCKETING_VERSION = "bucketing_version"; + } diff --git a/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php b/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php index afea04835b..f7e73490c4 100644 --- a/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php +++ b/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php @@ -31307,6 +31307,7 @@ final class Constant extends \Thrift\Type\TConstant { static protected $TABLE_IS_TRANSACTIONAL; static protected $TABLE_NO_AUTO_COMPACT; static protected $TABLE_TRANSACTIONAL_PROPERTIES; + static protected $TABLE_BUCKETING_VERSION; static protected function init_DDL_TIME() { return "transient_lastDdlTime"; @@ -31403,6 +31404,10 @@ final class Constant extends \Thrift\Type\TConstant { static protected function init_TABLE_TRANSACTIONAL_PROPERTIES() { return "transactional_properties"; } + + static protected function init_TABLE_BUCKETING_VERSION() { + return "bucketing_version"; + } } diff --git a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/constants.py b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/constants.py index 5100236afa..c27745a607 100644 --- a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/constants.py +++ b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/constants.py @@ -33,3 +33,4 @@ TABLE_IS_TRANSACTIONAL = "transactional" TABLE_NO_AUTO_COMPACT = "no_auto_compaction" TABLE_TRANSACTIONAL_PROPERTIES = "transactional_properties" +TABLE_BUCKETING_VERSION = "bucketing_version" diff --git a/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb b/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb index 6aa7143c76..9e6cedd43d 100644 --- a/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb +++ b/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb @@ -55,3 +55,5 @@ TABLE_NO_AUTO_COMPACT = %q"no_auto_compaction" TABLE_TRANSACTIONAL_PROPERTIES = %q"transactional_properties" +TABLE_BUCKETING_VERSION = %q"bucketing_version" + diff --git a/standalone-metastore/src/main/thrift/hive_metastore.thrift b/standalone-metastore/src/main/thrift/hive_metastore.thrift index a0f8457f51..38edfa4e46 100644 --- a/standalone-metastore/src/main/thrift/hive_metastore.thrift +++ b/standalone-metastore/src/main/thrift/hive_metastore.thrift @@ -2233,5 +2233,5 @@ const string META_TABLE_STORAGE = "storage_handler", const string TABLE_IS_TRANSACTIONAL = "transactional", const string TABLE_NO_AUTO_COMPACT = "no_auto_compaction", const string TABLE_TRANSACTIONAL_PROPERTIES = "transactional_properties", - +const string TABLE_BUCKETING_VERSION = "bucketing_version",