You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by rh...@apache.org on 2014/04/01 16:40:22 UTC

svn commit: r1583687 - in /hive/trunk/metastore: if/ src/gen/thrift/gen-cpp/ src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ src/gen/thrift/gen-php/metastore/ src/gen/thrift/gen-py/hive_metastore/ src/gen/thrift/gen-rb/

Author: rhbutani
Date: Tue Apr  1 14:40:21 2014
New Revision: 1583687

URL: http://svn.apache.org/r1583687
Log:
HIVE-6802 Fix metastore.thrift: add partition_columns.types constant(Harish Butani via Jason Dere)

Modified:
    hive/trunk/metastore/if/hive_metastore.thrift
    hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp
    hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h
    hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java
    hive/trunk/metastore/src/gen/thrift/gen-php/metastore/Types.php
    hive/trunk/metastore/src/gen/thrift/gen-py/hive_metastore/constants.py
    hive/trunk/metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb

Modified: hive/trunk/metastore/if/hive_metastore.thrift
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/if/hive_metastore.thrift?rev=1583687&r1=1583686&r2=1583687&view=diff
==============================================================================
--- hive/trunk/metastore/if/hive_metastore.thrift (original)
+++ hive/trunk/metastore/if/hive_metastore.thrift Tue Apr  1 14:40:21 2014
@@ -1046,6 +1046,7 @@ const string META_TABLE_DB        = "db"
 const string META_TABLE_LOCATION  = "location",
 const string META_TABLE_SERDE     = "serde",
 const string META_TABLE_PARTITION_COLUMNS = "partition_columns",
+const string META_TABLE_PARTITION_COLUMN_TYPES = "partition_columns.types",
 const string FILE_INPUT_FORMAT    = "file.inputformat",
 const string FILE_OUTPUT_FORMAT   = "file.outputformat",
 const string META_TABLE_STORAGE   = "storage_handler",

Modified: hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp?rev=1583687&r1=1583686&r2=1583687&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.cpp Tue Apr  1 14:40:21 2014
@@ -45,6 +45,8 @@ hive_metastoreConstants::hive_metastoreC
 
   META_TABLE_PARTITION_COLUMNS = "partition_columns";
 
+  META_TABLE_PARTITION_COLUMN_TYPES = "partition_columns.types";
+
   FILE_INPUT_FORMAT = "file.inputformat";
 
   FILE_OUTPUT_FORMAT = "file.outputformat";

Modified: hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h?rev=1583687&r1=1583686&r2=1583687&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-cpp/hive_metastore_constants.h Tue Apr  1 14:40:21 2014
@@ -32,6 +32,7 @@ class hive_metastoreConstants {
   std::string META_TABLE_LOCATION;
   std::string META_TABLE_SERDE;
   std::string META_TABLE_PARTITION_COLUMNS;
+  std::string META_TABLE_PARTITION_COLUMN_TYPES;
   std::string FILE_INPUT_FORMAT;
   std::string FILE_OUTPUT_FORMAT;
   std::string META_TABLE_STORAGE;

Modified: hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java?rev=1583687&r1=1583686&r2=1583687&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/hive_metastoreConstants.java Tue Apr  1 14:40:21 2014
@@ -66,7 +66,7 @@ public class hive_metastoreConstants {
   public static final String META_TABLE_SERDE = "serde";
 
   public static final String META_TABLE_PARTITION_COLUMNS = "partition_columns";
-  
+
   public static final String META_TABLE_PARTITION_COLUMN_TYPES = "partition_columns.types";
 
   public static final String FILE_INPUT_FORMAT = "file.inputformat";

Modified: hive/trunk/metastore/src/gen/thrift/gen-php/metastore/Types.php
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-php/metastore/Types.php?rev=1583687&r1=1583686&r2=1583687&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-php/metastore/Types.php (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-php/metastore/Types.php Tue Apr  1 14:40:21 2014
@@ -11556,6 +11556,8 @@ $GLOBALS['hive_metastore_CONSTANTS']['ME
 
 $GLOBALS['hive_metastore_CONSTANTS']['META_TABLE_PARTITION_COLUMNS'] = "partition_columns";
 
+$GLOBALS['hive_metastore_CONSTANTS']['META_TABLE_PARTITION_COLUMN_TYPES'] = "partition_columns.types";
+
 $GLOBALS['hive_metastore_CONSTANTS']['FILE_INPUT_FORMAT'] = "file.inputformat";
 
 $GLOBALS['hive_metastore_CONSTANTS']['FILE_OUTPUT_FORMAT'] = "file.outputformat";

Modified: hive/trunk/metastore/src/gen/thrift/gen-py/hive_metastore/constants.py
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-py/hive_metastore/constants.py?rev=1583687&r1=1583686&r2=1583687&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-py/hive_metastore/constants.py (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-py/hive_metastore/constants.py Tue Apr  1 14:40:21 2014
@@ -26,6 +26,7 @@ META_TABLE_DB = "db"
 META_TABLE_LOCATION = "location"
 META_TABLE_SERDE = "serde"
 META_TABLE_PARTITION_COLUMNS = "partition_columns"
+META_TABLE_PARTITION_COLUMN_TYPES = "partition_columns.types"
 FILE_INPUT_FORMAT = "file.inputformat"
 FILE_OUTPUT_FORMAT = "file.outputformat"
 META_TABLE_STORAGE = "storage_handler"

Modified: hive/trunk/metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb?rev=1583687&r1=1583686&r2=1583687&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-rb/hive_metastore_constants.rb Tue Apr  1 14:40:21 2014
@@ -41,6 +41,8 @@ META_TABLE_SERDE = %q"serde"
 
 META_TABLE_PARTITION_COLUMNS = %q"partition_columns"
 
+META_TABLE_PARTITION_COLUMN_TYPES = %q"partition_columns.types"
+
 FILE_INPUT_FORMAT = %q"file.inputformat"
 
 FILE_OUTPUT_FORMAT = %q"file.outputformat"