You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2014/08/05 07:52:53 UTC

svn commit: r1615865 [6/10] - in /hive/trunk: metastore/if/ metastore/src/gen/thrift/gen-cpp/ metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ metastore/src/gen/thrift/gen-php/metastore/ metastore/src/gen/thrift/gen-py/hive_m...

Modified: hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java
URL: http://svn.apache.org/viewvc/hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java?rev=1615865&r1=1615864&r2=1615865&view=diff
==============================================================================
--- hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java (original)
+++ hive/trunk/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java Tue Aug  5 05:52:51 2014
@@ -180,6 +180,8 @@ public class ThriftHiveMetastore {
 
     public PartitionsStatsResult get_partitions_statistics_req(PartitionsStatsRequest request) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
 
+    public AggrStats get_aggr_stats_for(PartitionsStatsRequest request) throws NoSuchObjectException, MetaException, org.apache.thrift.TException;
+
     public boolean delete_partition_column_statistics(String db_name, String tbl_name, String part_name, String col_name) throws NoSuchObjectException, MetaException, InvalidObjectException, InvalidInputException, org.apache.thrift.TException;
 
     public boolean delete_table_column_statistics(String db_name, String tbl_name, String col_name) throws NoSuchObjectException, MetaException, InvalidObjectException, InvalidInputException, org.apache.thrift.TException;
@@ -402,6 +404,8 @@ public class ThriftHiveMetastore {
 
     public void get_partitions_statistics_req(PartitionsStatsRequest request, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.get_partitions_statistics_req_call> resultHandler) throws org.apache.thrift.TException;
 
+    public void get_aggr_stats_for(PartitionsStatsRequest request, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.get_aggr_stats_for_call> resultHandler) throws org.apache.thrift.TException;
+
     public void delete_partition_column_statistics(String db_name, String tbl_name, String part_name, String col_name, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.delete_partition_column_statistics_call> resultHandler) throws org.apache.thrift.TException;
 
     public void delete_table_column_statistics(String db_name, String tbl_name, String col_name, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.delete_table_column_statistics_call> resultHandler) throws org.apache.thrift.TException;
@@ -2712,6 +2716,35 @@ public class ThriftHiveMetastore {
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "get_partitions_statistics_req failed: unknown result");
     }
 
+    public AggrStats get_aggr_stats_for(PartitionsStatsRequest request) throws NoSuchObjectException, MetaException, org.apache.thrift.TException
+    {
+      send_get_aggr_stats_for(request);
+      return recv_get_aggr_stats_for();
+    }
+
+    public void send_get_aggr_stats_for(PartitionsStatsRequest request) throws org.apache.thrift.TException
+    {
+      get_aggr_stats_for_args args = new get_aggr_stats_for_args();
+      args.setRequest(request);
+      sendBase("get_aggr_stats_for", args);
+    }
+
+    public AggrStats recv_get_aggr_stats_for() throws NoSuchObjectException, MetaException, org.apache.thrift.TException
+    {
+      get_aggr_stats_for_result result = new get_aggr_stats_for_result();
+      receiveBase(result, "get_aggr_stats_for");
+      if (result.isSetSuccess()) {
+        return result.success;
+      }
+      if (result.o1 != null) {
+        throw result.o1;
+      }
+      if (result.o2 != null) {
+        throw result.o2;
+      }
+      throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "get_aggr_stats_for failed: unknown result");
+    }
+
     public boolean delete_partition_column_statistics(String db_name, String tbl_name, String part_name, String col_name) throws NoSuchObjectException, MetaException, InvalidObjectException, InvalidInputException, org.apache.thrift.TException
     {
       send_delete_partition_column_statistics(db_name, tbl_name, part_name, col_name);
@@ -6371,6 +6404,38 @@ public class ThriftHiveMetastore {
       }
     }
 
+    public void get_aggr_stats_for(PartitionsStatsRequest request, org.apache.thrift.async.AsyncMethodCallback<get_aggr_stats_for_call> resultHandler) throws org.apache.thrift.TException {
+      checkReady();
+      get_aggr_stats_for_call method_call = new get_aggr_stats_for_call(request, resultHandler, this, ___protocolFactory, ___transport);
+      this.___currentMethod = method_call;
+      ___manager.call(method_call);
+    }
+
+    public static class get_aggr_stats_for_call extends org.apache.thrift.async.TAsyncMethodCall {
+      private PartitionsStatsRequest request;
+      public get_aggr_stats_for_call(PartitionsStatsRequest request, org.apache.thrift.async.AsyncMethodCallback<get_aggr_stats_for_call> resultHandler, org.apache.thrift.async.TAsyncClient client, org.apache.thrift.protocol.TProtocolFactory protocolFactory, org.apache.thrift.transport.TNonblockingTransport transport) throws org.apache.thrift.TException {
+        super(client, protocolFactory, transport, resultHandler, false);
+        this.request = request;
+      }
+
+      public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
+        prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("get_aggr_stats_for", org.apache.thrift.protocol.TMessageType.CALL, 0));
+        get_aggr_stats_for_args args = new get_aggr_stats_for_args();
+        args.setRequest(request);
+        args.write(prot);
+        prot.writeMessageEnd();
+      }
+
+      public AggrStats getResult() throws NoSuchObjectException, MetaException, org.apache.thrift.TException {
+        if (getState() != org.apache.thrift.async.TAsyncMethodCall.State.RESPONSE_READ) {
+          throw new IllegalStateException("Method call not finished!");
+        }
+        org.apache.thrift.transport.TMemoryInputTransport memoryTransport = new org.apache.thrift.transport.TMemoryInputTransport(getFrameBuffer().array());
+        org.apache.thrift.protocol.TProtocol prot = client.getProtocolFactory().getProtocol(memoryTransport);
+        return (new Client(prot)).recv_get_aggr_stats_for();
+      }
+    }
+
     public void delete_partition_column_statistics(String db_name, String tbl_name, String part_name, String col_name, org.apache.thrift.async.AsyncMethodCallback<delete_partition_column_statistics_call> resultHandler) throws org.apache.thrift.TException {
       checkReady();
       delete_partition_column_statistics_call method_call = new delete_partition_column_statistics_call(db_name, tbl_name, part_name, col_name, resultHandler, this, ___protocolFactory, ___transport);
@@ -7734,6 +7799,7 @@ public class ThriftHiveMetastore {
       processMap.put("get_partition_column_statistics", new get_partition_column_statistics());
       processMap.put("get_table_statistics_req", new get_table_statistics_req());
       processMap.put("get_partitions_statistics_req", new get_partitions_statistics_req());
+      processMap.put("get_aggr_stats_for", new get_aggr_stats_for());
       processMap.put("delete_partition_column_statistics", new delete_partition_column_statistics());
       processMap.put("delete_table_column_statistics", new delete_table_column_statistics());
       processMap.put("create_function", new create_function());
@@ -9687,6 +9753,32 @@ public class ThriftHiveMetastore {
       }
     }
 
+    public static class get_aggr_stats_for<I extends Iface> extends org.apache.thrift.ProcessFunction<I, get_aggr_stats_for_args> {
+      public get_aggr_stats_for() {
+        super("get_aggr_stats_for");
+      }
+
+      public get_aggr_stats_for_args getEmptyArgsInstance() {
+        return new get_aggr_stats_for_args();
+      }
+
+      protected boolean isOneway() {
+        return false;
+      }
+
+      public get_aggr_stats_for_result getResult(I iface, get_aggr_stats_for_args args) throws org.apache.thrift.TException {
+        get_aggr_stats_for_result result = new get_aggr_stats_for_result();
+        try {
+          result.success = iface.get_aggr_stats_for(args.request);
+        } catch (NoSuchObjectException o1) {
+          result.o1 = o1;
+        } catch (MetaException o2) {
+          result.o2 = o2;
+        }
+        return result;
+      }
+    }
+
     public static class delete_partition_column_statistics<I extends Iface> extends org.apache.thrift.ProcessFunction<I, delete_partition_column_statistics_args> {
       public delete_partition_column_statistics() {
         super("delete_partition_column_statistics");
@@ -14372,13 +14464,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list442 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list442.size);
-                  for (int _i443 = 0; _i443 < _list442.size; ++_i443)
+                  org.apache.thrift.protocol.TList _list450 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list450.size);
+                  for (int _i451 = 0; _i451 < _list450.size; ++_i451)
                   {
-                    String _elem444; // optional
-                    _elem444 = iprot.readString();
-                    struct.success.add(_elem444);
+                    String _elem452; // required
+                    _elem452 = iprot.readString();
+                    struct.success.add(_elem452);
                   }
                   iprot.readListEnd();
                 }
@@ -14413,9 +14505,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size()));
-            for (String _iter445 : struct.success)
+            for (String _iter453 : struct.success)
             {
-              oprot.writeString(_iter445);
+              oprot.writeString(_iter453);
             }
             oprot.writeListEnd();
           }
@@ -14454,9 +14546,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter446 : struct.success)
+            for (String _iter454 : struct.success)
             {
-              oprot.writeString(_iter446);
+              oprot.writeString(_iter454);
             }
           }
         }
@@ -14471,13 +14563,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list447 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list447.size);
-            for (int _i448 = 0; _i448 < _list447.size; ++_i448)
+            org.apache.thrift.protocol.TList _list455 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list455.size);
+            for (int _i456 = 0; _i456 < _list455.size; ++_i456)
             {
-              String _elem449; // optional
-              _elem449 = iprot.readString();
-              struct.success.add(_elem449);
+              String _elem457; // required
+              _elem457 = iprot.readString();
+              struct.success.add(_elem457);
             }
           }
           struct.setSuccessIsSet(true);
@@ -15134,13 +15226,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list450 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list450.size);
-                  for (int _i451 = 0; _i451 < _list450.size; ++_i451)
+                  org.apache.thrift.protocol.TList _list458 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list458.size);
+                  for (int _i459 = 0; _i459 < _list458.size; ++_i459)
                   {
-                    String _elem452; // optional
-                    _elem452 = iprot.readString();
-                    struct.success.add(_elem452);
+                    String _elem460; // required
+                    _elem460 = iprot.readString();
+                    struct.success.add(_elem460);
                   }
                   iprot.readListEnd();
                 }
@@ -15175,9 +15267,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size()));
-            for (String _iter453 : struct.success)
+            for (String _iter461 : struct.success)
             {
-              oprot.writeString(_iter453);
+              oprot.writeString(_iter461);
             }
             oprot.writeListEnd();
           }
@@ -15216,9 +15308,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter454 : struct.success)
+            for (String _iter462 : struct.success)
             {
-              oprot.writeString(_iter454);
+              oprot.writeString(_iter462);
             }
           }
         }
@@ -15233,13 +15325,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list455 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list455.size);
-            for (int _i456 = 0; _i456 < _list455.size; ++_i456)
+            org.apache.thrift.protocol.TList _list463 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list463.size);
+            for (int _i464 = 0; _i464 < _list463.size; ++_i464)
             {
-              String _elem457; // optional
-              _elem457 = iprot.readString();
-              struct.success.add(_elem457);
+              String _elem465; // required
+              _elem465 = iprot.readString();
+              struct.success.add(_elem465);
             }
           }
           struct.setSuccessIsSet(true);
@@ -19846,16 +19938,16 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.MAP) {
                 {
-                  org.apache.thrift.protocol.TMap _map458 = iprot.readMapBegin();
-                  struct.success = new HashMap<String,Type>(2*_map458.size);
-                  for (int _i459 = 0; _i459 < _map458.size; ++_i459)
+                  org.apache.thrift.protocol.TMap _map466 = iprot.readMapBegin();
+                  struct.success = new HashMap<String,Type>(2*_map466.size);
+                  for (int _i467 = 0; _i467 < _map466.size; ++_i467)
                   {
-                    String _key460; // required
-                    Type _val461; // required
-                    _key460 = iprot.readString();
-                    _val461 = new Type();
-                    _val461.read(iprot);
-                    struct.success.put(_key460, _val461);
+                    String _key468; // required
+                    Type _val469; // required
+                    _key468 = iprot.readString();
+                    _val469 = new Type();
+                    _val469.read(iprot);
+                    struct.success.put(_key468, _val469);
                   }
                   iprot.readMapEnd();
                 }
@@ -19890,10 +19982,10 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, struct.success.size()));
-            for (Map.Entry<String, Type> _iter462 : struct.success.entrySet())
+            for (Map.Entry<String, Type> _iter470 : struct.success.entrySet())
             {
-              oprot.writeString(_iter462.getKey());
-              _iter462.getValue().write(oprot);
+              oprot.writeString(_iter470.getKey());
+              _iter470.getValue().write(oprot);
             }
             oprot.writeMapEnd();
           }
@@ -19932,10 +20024,10 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Map.Entry<String, Type> _iter463 : struct.success.entrySet())
+            for (Map.Entry<String, Type> _iter471 : struct.success.entrySet())
             {
-              oprot.writeString(_iter463.getKey());
-              _iter463.getValue().write(oprot);
+              oprot.writeString(_iter471.getKey());
+              _iter471.getValue().write(oprot);
             }
           }
         }
@@ -19950,16 +20042,16 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TMap _map464 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new HashMap<String,Type>(2*_map464.size);
-            for (int _i465 = 0; _i465 < _map464.size; ++_i465)
+            org.apache.thrift.protocol.TMap _map472 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new HashMap<String,Type>(2*_map472.size);
+            for (int _i473 = 0; _i473 < _map472.size; ++_i473)
             {
-              String _key466; // required
-              Type _val467; // required
-              _key466 = iprot.readString();
-              _val467 = new Type();
-              _val467.read(iprot);
-              struct.success.put(_key466, _val467);
+              String _key474; // required
+              Type _val475; // required
+              _key474 = iprot.readString();
+              _val475 = new Type();
+              _val475.read(iprot);
+              struct.success.put(_key474, _val475);
             }
           }
           struct.setSuccessIsSet(true);
@@ -20994,14 +21086,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list468 = iprot.readListBegin();
-                  struct.success = new ArrayList<FieldSchema>(_list468.size);
-                  for (int _i469 = 0; _i469 < _list468.size; ++_i469)
+                  org.apache.thrift.protocol.TList _list476 = iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list476.size);
+                  for (int _i477 = 0; _i477 < _list476.size; ++_i477)
                   {
-                    FieldSchema _elem470; // optional
-                    _elem470 = new FieldSchema();
-                    _elem470.read(iprot);
-                    struct.success.add(_elem470);
+                    FieldSchema _elem478; // required
+                    _elem478 = new FieldSchema();
+                    _elem478.read(iprot);
+                    struct.success.add(_elem478);
                   }
                   iprot.readListEnd();
                 }
@@ -21054,9 +21146,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size()));
-            for (FieldSchema _iter471 : struct.success)
+            for (FieldSchema _iter479 : struct.success)
             {
-              _iter471.write(oprot);
+              _iter479.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -21111,9 +21203,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter472 : struct.success)
+            for (FieldSchema _iter480 : struct.success)
             {
-              _iter472.write(oprot);
+              _iter480.write(oprot);
             }
           }
         }
@@ -21134,14 +21226,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list473 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<FieldSchema>(_list473.size);
-            for (int _i474 = 0; _i474 < _list473.size; ++_i474)
+            org.apache.thrift.protocol.TList _list481 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list481.size);
+            for (int _i482 = 0; _i482 < _list481.size; ++_i482)
             {
-              FieldSchema _elem475; // optional
-              _elem475 = new FieldSchema();
-              _elem475.read(iprot);
-              struct.success.add(_elem475);
+              FieldSchema _elem483; // required
+              _elem483 = new FieldSchema();
+              _elem483.read(iprot);
+              struct.success.add(_elem483);
             }
           }
           struct.setSuccessIsSet(true);
@@ -22186,14 +22278,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list476 = iprot.readListBegin();
-                  struct.success = new ArrayList<FieldSchema>(_list476.size);
-                  for (int _i477 = 0; _i477 < _list476.size; ++_i477)
+                  org.apache.thrift.protocol.TList _list484 = iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list484.size);
+                  for (int _i485 = 0; _i485 < _list484.size; ++_i485)
                   {
-                    FieldSchema _elem478; // optional
-                    _elem478 = new FieldSchema();
-                    _elem478.read(iprot);
-                    struct.success.add(_elem478);
+                    FieldSchema _elem486; // required
+                    _elem486 = new FieldSchema();
+                    _elem486.read(iprot);
+                    struct.success.add(_elem486);
                   }
                   iprot.readListEnd();
                 }
@@ -22246,9 +22338,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size()));
-            for (FieldSchema _iter479 : struct.success)
+            for (FieldSchema _iter487 : struct.success)
             {
-              _iter479.write(oprot);
+              _iter487.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -22303,9 +22395,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter480 : struct.success)
+            for (FieldSchema _iter488 : struct.success)
             {
-              _iter480.write(oprot);
+              _iter488.write(oprot);
             }
           }
         }
@@ -22326,14 +22418,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list481 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<FieldSchema>(_list481.size);
-            for (int _i482 = 0; _i482 < _list481.size; ++_i482)
+            org.apache.thrift.protocol.TList _list489 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list489.size);
+            for (int _i490 = 0; _i490 < _list489.size; ++_i490)
             {
-              FieldSchema _elem483; // optional
-              _elem483 = new FieldSchema();
-              _elem483.read(iprot);
-              struct.success.add(_elem483);
+              FieldSchema _elem491; // required
+              _elem491 = new FieldSchema();
+              _elem491.read(iprot);
+              struct.success.add(_elem491);
             }
           }
           struct.setSuccessIsSet(true);
@@ -27576,13 +27668,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list484 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list484.size);
-                  for (int _i485 = 0; _i485 < _list484.size; ++_i485)
+                  org.apache.thrift.protocol.TList _list492 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list492.size);
+                  for (int _i493 = 0; _i493 < _list492.size; ++_i493)
                   {
-                    String _elem486; // optional
-                    _elem486 = iprot.readString();
-                    struct.success.add(_elem486);
+                    String _elem494; // required
+                    _elem494 = iprot.readString();
+                    struct.success.add(_elem494);
                   }
                   iprot.readListEnd();
                 }
@@ -27617,9 +27709,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size()));
-            for (String _iter487 : struct.success)
+            for (String _iter495 : struct.success)
             {
-              oprot.writeString(_iter487);
+              oprot.writeString(_iter495);
             }
             oprot.writeListEnd();
           }
@@ -27658,9 +27750,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter488 : struct.success)
+            for (String _iter496 : struct.success)
             {
-              oprot.writeString(_iter488);
+              oprot.writeString(_iter496);
             }
           }
         }
@@ -27675,13 +27767,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list489 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list489.size);
-            for (int _i490 = 0; _i490 < _list489.size; ++_i490)
+            org.apache.thrift.protocol.TList _list497 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list497.size);
+            for (int _i498 = 0; _i498 < _list497.size; ++_i498)
             {
-              String _elem491; // optional
-              _elem491 = iprot.readString();
-              struct.success.add(_elem491);
+              String _elem499; // required
+              _elem499 = iprot.readString();
+              struct.success.add(_elem499);
             }
           }
           struct.setSuccessIsSet(true);
@@ -28450,13 +28542,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list492 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list492.size);
-                  for (int _i493 = 0; _i493 < _list492.size; ++_i493)
+                  org.apache.thrift.protocol.TList _list500 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list500.size);
+                  for (int _i501 = 0; _i501 < _list500.size; ++_i501)
                   {
-                    String _elem494; // optional
-                    _elem494 = iprot.readString();
-                    struct.success.add(_elem494);
+                    String _elem502; // required
+                    _elem502 = iprot.readString();
+                    struct.success.add(_elem502);
                   }
                   iprot.readListEnd();
                 }
@@ -28491,9 +28583,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size()));
-            for (String _iter495 : struct.success)
+            for (String _iter503 : struct.success)
             {
-              oprot.writeString(_iter495);
+              oprot.writeString(_iter503);
             }
             oprot.writeListEnd();
           }
@@ -28532,9 +28624,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter496 : struct.success)
+            for (String _iter504 : struct.success)
             {
-              oprot.writeString(_iter496);
+              oprot.writeString(_iter504);
             }
           }
         }
@@ -28549,13 +28641,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list497 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list497.size);
-            for (int _i498 = 0; _i498 < _list497.size; ++_i498)
+            org.apache.thrift.protocol.TList _list505 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list505.size);
+            for (int _i506 = 0; _i506 < _list505.size; ++_i506)
             {
-              String _elem499; // optional
-              _elem499 = iprot.readString();
-              struct.success.add(_elem499);
+              String _elem507; // required
+              _elem507 = iprot.readString();
+              struct.success.add(_elem507);
             }
           }
           struct.setSuccessIsSet(true);
@@ -30011,13 +30103,13 @@ public class ThriftHiveMetastore {
             case 2: // TBL_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list500 = iprot.readListBegin();
-                  struct.tbl_names = new ArrayList<String>(_list500.size);
-                  for (int _i501 = 0; _i501 < _list500.size; ++_i501)
+                  org.apache.thrift.protocol.TList _list508 = iprot.readListBegin();
+                  struct.tbl_names = new ArrayList<String>(_list508.size);
+                  for (int _i509 = 0; _i509 < _list508.size; ++_i509)
                   {
-                    String _elem502; // optional
-                    _elem502 = iprot.readString();
-                    struct.tbl_names.add(_elem502);
+                    String _elem510; // required
+                    _elem510 = iprot.readString();
+                    struct.tbl_names.add(_elem510);
                   }
                   iprot.readListEnd();
                 }
@@ -30048,9 +30140,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(TBL_NAMES_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.tbl_names.size()));
-            for (String _iter503 : struct.tbl_names)
+            for (String _iter511 : struct.tbl_names)
             {
-              oprot.writeString(_iter503);
+              oprot.writeString(_iter511);
             }
             oprot.writeListEnd();
           }
@@ -30087,9 +30179,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetTbl_names()) {
           {
             oprot.writeI32(struct.tbl_names.size());
-            for (String _iter504 : struct.tbl_names)
+            for (String _iter512 : struct.tbl_names)
             {
-              oprot.writeString(_iter504);
+              oprot.writeString(_iter512);
             }
           }
         }
@@ -30105,13 +30197,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(1)) {
           {
-            org.apache.thrift.protocol.TList _list505 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.tbl_names = new ArrayList<String>(_list505.size);
-            for (int _i506 = 0; _i506 < _list505.size; ++_i506)
+            org.apache.thrift.protocol.TList _list513 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.tbl_names = new ArrayList<String>(_list513.size);
+            for (int _i514 = 0; _i514 < _list513.size; ++_i514)
             {
-              String _elem507; // optional
-              _elem507 = iprot.readString();
-              struct.tbl_names.add(_elem507);
+              String _elem515; // required
+              _elem515 = iprot.readString();
+              struct.tbl_names.add(_elem515);
             }
           }
           struct.setTbl_namesIsSet(true);
@@ -30679,14 +30771,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list508 = iprot.readListBegin();
-                  struct.success = new ArrayList<Table>(_list508.size);
-                  for (int _i509 = 0; _i509 < _list508.size; ++_i509)
+                  org.apache.thrift.protocol.TList _list516 = iprot.readListBegin();
+                  struct.success = new ArrayList<Table>(_list516.size);
+                  for (int _i517 = 0; _i517 < _list516.size; ++_i517)
                   {
-                    Table _elem510; // optional
-                    _elem510 = new Table();
-                    _elem510.read(iprot);
-                    struct.success.add(_elem510);
+                    Table _elem518; // required
+                    _elem518 = new Table();
+                    _elem518.read(iprot);
+                    struct.success.add(_elem518);
                   }
                   iprot.readListEnd();
                 }
@@ -30739,9 +30831,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size()));
-            for (Table _iter511 : struct.success)
+            for (Table _iter519 : struct.success)
             {
-              _iter511.write(oprot);
+              _iter519.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -30796,9 +30888,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Table _iter512 : struct.success)
+            for (Table _iter520 : struct.success)
             {
-              _iter512.write(oprot);
+              _iter520.write(oprot);
             }
           }
         }
@@ -30819,14 +30911,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list513 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<Table>(_list513.size);
-            for (int _i514 = 0; _i514 < _list513.size; ++_i514)
+            org.apache.thrift.protocol.TList _list521 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<Table>(_list521.size);
+            for (int _i522 = 0; _i522 < _list521.size; ++_i522)
             {
-              Table _elem515; // optional
-              _elem515 = new Table();
-              _elem515.read(iprot);
-              struct.success.add(_elem515);
+              Table _elem523; // required
+              _elem523 = new Table();
+              _elem523.read(iprot);
+              struct.success.add(_elem523);
             }
           }
           struct.setSuccessIsSet(true);
@@ -31975,13 +32067,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list516 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list516.size);
-                  for (int _i517 = 0; _i517 < _list516.size; ++_i517)
+                  org.apache.thrift.protocol.TList _list524 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list524.size);
+                  for (int _i525 = 0; _i525 < _list524.size; ++_i525)
                   {
-                    String _elem518; // optional
-                    _elem518 = iprot.readString();
-                    struct.success.add(_elem518);
+                    String _elem526; // required
+                    _elem526 = iprot.readString();
+                    struct.success.add(_elem526);
                   }
                   iprot.readListEnd();
                 }
@@ -32034,9 +32126,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size()));
-            for (String _iter519 : struct.success)
+            for (String _iter527 : struct.success)
             {
-              oprot.writeString(_iter519);
+              oprot.writeString(_iter527);
             }
             oprot.writeListEnd();
           }
@@ -32091,9 +32183,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter520 : struct.success)
+            for (String _iter528 : struct.success)
             {
-              oprot.writeString(_iter520);
+              oprot.writeString(_iter528);
             }
           }
         }
@@ -32114,13 +32206,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list521 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list521.size);
-            for (int _i522 = 0; _i522 < _list521.size; ++_i522)
+            org.apache.thrift.protocol.TList _list529 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list529.size);
+            for (int _i530 = 0; _i530 < _list529.size; ++_i530)
             {
-              String _elem523; // optional
-              _elem523 = iprot.readString();
-              struct.success.add(_elem523);
+              String _elem531; // required
+              _elem531 = iprot.readString();
+              struct.success.add(_elem531);
             }
           }
           struct.setSuccessIsSet(true);
@@ -36840,14 +36932,14 @@ public class ThriftHiveMetastore {
             case 1: // NEW_PARTS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list524 = iprot.readListBegin();
-                  struct.new_parts = new ArrayList<Partition>(_list524.size);
-                  for (int _i525 = 0; _i525 < _list524.size; ++_i525)
+                  org.apache.thrift.protocol.TList _list532 = iprot.readListBegin();
+                  struct.new_parts = new ArrayList<Partition>(_list532.size);
+                  for (int _i533 = 0; _i533 < _list532.size; ++_i533)
                   {
-                    Partition _elem526; // optional
-                    _elem526 = new Partition();
-                    _elem526.read(iprot);
-                    struct.new_parts.add(_elem526);
+                    Partition _elem534; // required
+                    _elem534 = new Partition();
+                    _elem534.read(iprot);
+                    struct.new_parts.add(_elem534);
                   }
                   iprot.readListEnd();
                 }
@@ -36873,9 +36965,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(NEW_PARTS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.new_parts.size()));
-            for (Partition _iter527 : struct.new_parts)
+            for (Partition _iter535 : struct.new_parts)
             {
-              _iter527.write(oprot);
+              _iter535.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -36906,9 +36998,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetNew_parts()) {
           {
             oprot.writeI32(struct.new_parts.size());
-            for (Partition _iter528 : struct.new_parts)
+            for (Partition _iter536 : struct.new_parts)
             {
-              _iter528.write(oprot);
+              _iter536.write(oprot);
             }
           }
         }
@@ -36920,14 +37012,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(1);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list529 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.new_parts = new ArrayList<Partition>(_list529.size);
-            for (int _i530 = 0; _i530 < _list529.size; ++_i530)
+            org.apache.thrift.protocol.TList _list537 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.new_parts = new ArrayList<Partition>(_list537.size);
+            for (int _i538 = 0; _i538 < _list537.size; ++_i538)
             {
-              Partition _elem531; // optional
-              _elem531 = new Partition();
-              _elem531.read(iprot);
-              struct.new_parts.add(_elem531);
+              Partition _elem539; // required
+              _elem539 = new Partition();
+              _elem539.read(iprot);
+              struct.new_parts.add(_elem539);
             }
           }
           struct.setNew_partsIsSet(true);
@@ -38106,13 +38198,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list532 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list532.size);
-                  for (int _i533 = 0; _i533 < _list532.size; ++_i533)
+                  org.apache.thrift.protocol.TList _list540 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list540.size);
+                  for (int _i541 = 0; _i541 < _list540.size; ++_i541)
                   {
-                    String _elem534; // optional
-                    _elem534 = iprot.readString();
-                    struct.part_vals.add(_elem534);
+                    String _elem542; // required
+                    _elem542 = iprot.readString();
+                    struct.part_vals.add(_elem542);
                   }
                   iprot.readListEnd();
                 }
@@ -38148,9 +38240,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PART_VALS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.part_vals.size()));
-            for (String _iter535 : struct.part_vals)
+            for (String _iter543 : struct.part_vals)
             {
-              oprot.writeString(_iter535);
+              oprot.writeString(_iter543);
             }
             oprot.writeListEnd();
           }
@@ -38193,9 +38285,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter536 : struct.part_vals)
+            for (String _iter544 : struct.part_vals)
             {
-              oprot.writeString(_iter536);
+              oprot.writeString(_iter544);
             }
           }
         }
@@ -38215,13 +38307,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list537 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list537.size);
-            for (int _i538 = 0; _i538 < _list537.size; ++_i538)
+            org.apache.thrift.protocol.TList _list545 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list545.size);
+            for (int _i546 = 0; _i546 < _list545.size; ++_i546)
             {
-              String _elem539; // optional
-              _elem539 = iprot.readString();
-              struct.part_vals.add(_elem539);
+              String _elem547; // required
+              _elem547 = iprot.readString();
+              struct.part_vals.add(_elem547);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -40533,13 +40625,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list540 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list540.size);
-                  for (int _i541 = 0; _i541 < _list540.size; ++_i541)
+                  org.apache.thrift.protocol.TList _list548 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list548.size);
+                  for (int _i549 = 0; _i549 < _list548.size; ++_i549)
                   {
-                    String _elem542; // optional
-                    _elem542 = iprot.readString();
-                    struct.part_vals.add(_elem542);
+                    String _elem550; // required
+                    _elem550 = iprot.readString();
+                    struct.part_vals.add(_elem550);
                   }
                   iprot.readListEnd();
                 }
@@ -40584,9 +40676,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PART_VALS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.part_vals.size()));
-            for (String _iter543 : struct.part_vals)
+            for (String _iter551 : struct.part_vals)
             {
-              oprot.writeString(_iter543);
+              oprot.writeString(_iter551);
             }
             oprot.writeListEnd();
           }
@@ -40637,9 +40729,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter544 : struct.part_vals)
+            for (String _iter552 : struct.part_vals)
             {
-              oprot.writeString(_iter544);
+              oprot.writeString(_iter552);
             }
           }
         }
@@ -40662,13 +40754,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list545 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list545.size);
-            for (int _i546 = 0; _i546 < _list545.size; ++_i546)
+            org.apache.thrift.protocol.TList _list553 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list553.size);
+            for (int _i554 = 0; _i554 < _list553.size; ++_i554)
             {
-              String _elem547; // optional
-              _elem547 = iprot.readString();
-              struct.part_vals.add(_elem547);
+              String _elem555; // required
+              _elem555 = iprot.readString();
+              struct.part_vals.add(_elem555);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -44541,13 +44633,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list548 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list548.size);
-                  for (int _i549 = 0; _i549 < _list548.size; ++_i549)
+                  org.apache.thrift.protocol.TList _list556 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list556.size);
+                  for (int _i557 = 0; _i557 < _list556.size; ++_i557)
                   {
-                    String _elem550; // optional
-                    _elem550 = iprot.readString();
-                    struct.part_vals.add(_elem550);
+                    String _elem558; // required
+                    _elem558 = iprot.readString();
+                    struct.part_vals.add(_elem558);
                   }
                   iprot.readListEnd();
                 }
@@ -44591,9 +44683,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PART_VALS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.part_vals.size()));
-            for (String _iter551 : struct.part_vals)
+            for (String _iter559 : struct.part_vals)
             {
-              oprot.writeString(_iter551);
+              oprot.writeString(_iter559);
             }
             oprot.writeListEnd();
           }
@@ -44642,9 +44734,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter552 : struct.part_vals)
+            for (String _iter560 : struct.part_vals)
             {
-              oprot.writeString(_iter552);
+              oprot.writeString(_iter560);
             }
           }
         }
@@ -44667,13 +44759,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list553 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list553.size);
-            for (int _i554 = 0; _i554 < _list553.size; ++_i554)
+            org.apache.thrift.protocol.TList _list561 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list561.size);
+            for (int _i562 = 0; _i562 < _list561.size; ++_i562)
             {
-              String _elem555; // optional
-              _elem555 = iprot.readString();
-              struct.part_vals.add(_elem555);
+              String _elem563; // required
+              _elem563 = iprot.readString();
+              struct.part_vals.add(_elem563);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -45915,13 +46007,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list556 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list556.size);
-                  for (int _i557 = 0; _i557 < _list556.size; ++_i557)
+                  org.apache.thrift.protocol.TList _list564 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list564.size);
+                  for (int _i565 = 0; _i565 < _list564.size; ++_i565)
                   {
-                    String _elem558; // optional
-                    _elem558 = iprot.readString();
-                    struct.part_vals.add(_elem558);
+                    String _elem566; // required
+                    _elem566 = iprot.readString();
+                    struct.part_vals.add(_elem566);
                   }
                   iprot.readListEnd();
                 }
@@ -45974,9 +46066,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PART_VALS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.part_vals.size()));
-            for (String _iter559 : struct.part_vals)
+            for (String _iter567 : struct.part_vals)
             {
-              oprot.writeString(_iter559);
+              oprot.writeString(_iter567);
             }
             oprot.writeListEnd();
           }
@@ -46033,9 +46125,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter560 : struct.part_vals)
+            for (String _iter568 : struct.part_vals)
             {
-              oprot.writeString(_iter560);
+              oprot.writeString(_iter568);
             }
           }
         }
@@ -46061,13 +46153,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list561 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list561.size);
-            for (int _i562 = 0; _i562 < _list561.size; ++_i562)
+            org.apache.thrift.protocol.TList _list569 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list569.size);
+            for (int _i570 = 0; _i570 < _list569.size; ++_i570)
             {
-              String _elem563; // optional
-              _elem563 = iprot.readString();
-              struct.part_vals.add(_elem563);
+              String _elem571; // required
+              _elem571 = iprot.readString();
+              struct.part_vals.add(_elem571);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -50672,13 +50764,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list564 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list564.size);
-                  for (int _i565 = 0; _i565 < _list564.size; ++_i565)
+                  org.apache.thrift.protocol.TList _list572 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list572.size);
+                  for (int _i573 = 0; _i573 < _list572.size; ++_i573)
                   {
-                    String _elem566; // optional
-                    _elem566 = iprot.readString();
-                    struct.part_vals.add(_elem566);
+                    String _elem574; // required
+                    _elem574 = iprot.readString();
+                    struct.part_vals.add(_elem574);
                   }
                   iprot.readListEnd();
                 }
@@ -50714,9 +50806,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PART_VALS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.part_vals.size()));
-            for (String _iter567 : struct.part_vals)
+            for (String _iter575 : struct.part_vals)
             {
-              oprot.writeString(_iter567);
+              oprot.writeString(_iter575);
             }
             oprot.writeListEnd();
           }
@@ -50759,9 +50851,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter568 : struct.part_vals)
+            for (String _iter576 : struct.part_vals)
             {
-              oprot.writeString(_iter568);
+              oprot.writeString(_iter576);
             }
           }
         }
@@ -50781,13 +50873,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list569 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list569.size);
-            for (int _i570 = 0; _i570 < _list569.size; ++_i570)
+            org.apache.thrift.protocol.TList _list577 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list577.size);
+            for (int _i578 = 0; _i578 < _list577.size; ++_i578)
             {
-              String _elem571; // optional
-              _elem571 = iprot.readString();
-              struct.part_vals.add(_elem571);
+              String _elem579; // required
+              _elem579 = iprot.readString();
+              struct.part_vals.add(_elem579);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -52016,15 +52108,15 @@ public class ThriftHiveMetastore {
             case 1: // PARTITION_SPECS
               if (schemeField.type == org.apache.thrift.protocol.TType.MAP) {
                 {
-                  org.apache.thrift.protocol.TMap _map572 = iprot.readMapBegin();
-                  struct.partitionSpecs = new HashMap<String,String>(2*_map572.size);
-                  for (int _i573 = 0; _i573 < _map572.size; ++_i573)
+                  org.apache.thrift.protocol.TMap _map580 = iprot.readMapBegin();
+                  struct.partitionSpecs = new HashMap<String,String>(2*_map580.size);
+                  for (int _i581 = 0; _i581 < _map580.size; ++_i581)
                   {
-                    String _key574; // required
-                    String _val575; // required
-                    _key574 = iprot.readString();
-                    _val575 = iprot.readString();
-                    struct.partitionSpecs.put(_key574, _val575);
+                    String _key582; // required
+                    String _val583; // required
+                    _key582 = iprot.readString();
+                    _val583 = iprot.readString();
+                    struct.partitionSpecs.put(_key582, _val583);
                   }
                   iprot.readMapEnd();
                 }
@@ -52082,10 +52174,10 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PARTITION_SPECS_FIELD_DESC);
           {
             oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.partitionSpecs.size()));
-            for (Map.Entry<String, String> _iter576 : struct.partitionSpecs.entrySet())
+            for (Map.Entry<String, String> _iter584 : struct.partitionSpecs.entrySet())
             {
-              oprot.writeString(_iter576.getKey());
-              oprot.writeString(_iter576.getValue());
+              oprot.writeString(_iter584.getKey());
+              oprot.writeString(_iter584.getValue());
             }
             oprot.writeMapEnd();
           }
@@ -52148,10 +52240,10 @@ public class ThriftHiveMetastore {
         if (struct.isSetPartitionSpecs()) {
           {
             oprot.writeI32(struct.partitionSpecs.size());
-            for (Map.Entry<String, String> _iter577 : struct.partitionSpecs.entrySet())
+            for (Map.Entry<String, String> _iter585 : struct.partitionSpecs.entrySet())
             {
-              oprot.writeString(_iter577.getKey());
-              oprot.writeString(_iter577.getValue());
+              oprot.writeString(_iter585.getKey());
+              oprot.writeString(_iter585.getValue());
             }
           }
         }
@@ -52175,15 +52267,15 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(5);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TMap _map578 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.partitionSpecs = new HashMap<String,String>(2*_map578.size);
-            for (int _i579 = 0; _i579 < _map578.size; ++_i579)
+            org.apache.thrift.protocol.TMap _map586 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.partitionSpecs = new HashMap<String,String>(2*_map586.size);
+            for (int _i587 = 0; _i587 < _map586.size; ++_i587)
             {
-              String _key580; // required
-              String _val581; // required
-              _key580 = iprot.readString();
-              _val581 = iprot.readString();
-              struct.partitionSpecs.put(_key580, _val581);
+              String _key588; // required
+              String _val589; // required
+              _key588 = iprot.readString();
+              _val589 = iprot.readString();
+              struct.partitionSpecs.put(_key588, _val589);
             }
           }
           struct.setPartitionSpecsIsSet(true);
@@ -53671,13 +53763,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list582 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list582.size);
-                  for (int _i583 = 0; _i583 < _list582.size; ++_i583)
+                  org.apache.thrift.protocol.TList _list590 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list590.size);
+                  for (int _i591 = 0; _i591 < _list590.size; ++_i591)
                   {
-                    String _elem584; // optional
-                    _elem584 = iprot.readString();
-                    struct.part_vals.add(_elem584);
+                    String _elem592; // required
+                    _elem592 = iprot.readString();
+                    struct.part_vals.add(_elem592);
                   }
                   iprot.readListEnd();
                 }
@@ -53697,13 +53789,13 @@ public class ThriftHiveMetastore {
             case 5: // GROUP_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list585 = iprot.readListBegin();
-                  struct.group_names = new ArrayList<String>(_list585.size);
-                  for (int _i586 = 0; _i586 < _list585.size; ++_i586)
+                  org.apache.thrift.protocol.TList _list593 = iprot.readListBegin();
+                  struct.group_names = new ArrayList<String>(_list593.size);
+                  for (int _i594 = 0; _i594 < _list593.size; ++_i594)
                   {
-                    String _elem587; // optional
-                    _elem587 = iprot.readString();
-                    struct.group_names.add(_elem587);
+                    String _elem595; // required
+                    _elem595 = iprot.readString();
+                    struct.group_names.add(_elem595);
                   }
                   iprot.readListEnd();
                 }
@@ -53739,9 +53831,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PART_VALS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.part_vals.size()));
-            for (String _iter588 : struct.part_vals)
+            for (String _iter596 : struct.part_vals)
             {
-              oprot.writeString(_iter588);
+              oprot.writeString(_iter596);
             }
             oprot.writeListEnd();
           }
@@ -53756,9 +53848,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(GROUP_NAMES_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.group_names.size()));
-            for (String _iter589 : struct.group_names)
+            for (String _iter597 : struct.group_names)
             {
-              oprot.writeString(_iter589);
+              oprot.writeString(_iter597);
             }
             oprot.writeListEnd();
           }
@@ -53807,9 +53899,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter590 : struct.part_vals)
+            for (String _iter598 : struct.part_vals)
             {
-              oprot.writeString(_iter590);
+              oprot.writeString(_iter598);
             }
           }
         }
@@ -53819,9 +53911,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetGroup_names()) {
           {
             oprot.writeI32(struct.group_names.size());
-            for (String _iter591 : struct.group_names)
+            for (String _iter599 : struct.group_names)
             {
-              oprot.writeString(_iter591);
+              oprot.writeString(_iter599);
             }
           }
         }
@@ -53841,13 +53933,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list592 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list592.size);
-            for (int _i593 = 0; _i593 < _list592.size; ++_i593)
+            org.apache.thrift.protocol.TList _list600 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list600.size);
+            for (int _i601 = 0; _i601 < _list600.size; ++_i601)
             {
-              String _elem594; // optional
-              _elem594 = iprot.readString();
-              struct.part_vals.add(_elem594);
+              String _elem602; // required
+              _elem602 = iprot.readString();
+              struct.part_vals.add(_elem602);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -53858,13 +53950,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(4)) {
           {
-            org.apache.thrift.protocol.TList _list595 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.group_names = new ArrayList<String>(_list595.size);
-            for (int _i596 = 0; _i596 < _list595.size; ++_i596)
+            org.apache.thrift.protocol.TList _list603 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.group_names = new ArrayList<String>(_list603.size);
+            for (int _i604 = 0; _i604 < _list603.size; ++_i604)
             {
-              String _elem597; // optional
-              _elem597 = iprot.readString();
-              struct.group_names.add(_elem597);
+              String _elem605; // required
+              _elem605 = iprot.readString();
+              struct.group_names.add(_elem605);
             }
           }
           struct.setGroup_namesIsSet(true);
@@ -56633,14 +56725,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list598 = iprot.readListBegin();
-                  struct.success = new ArrayList<Partition>(_list598.size);
-                  for (int _i599 = 0; _i599 < _list598.size; ++_i599)
+                  org.apache.thrift.protocol.TList _list606 = iprot.readListBegin();
+                  struct.success = new ArrayList<Partition>(_list606.size);
+                  for (int _i607 = 0; _i607 < _list606.size; ++_i607)
                   {
-                    Partition _elem600; // optional
-                    _elem600 = new Partition();
-                    _elem600.read(iprot);
-                    struct.success.add(_elem600);
+                    Partition _elem608; // required
+                    _elem608 = new Partition();
+                    _elem608.read(iprot);
+                    struct.success.add(_elem608);
                   }
                   iprot.readListEnd();
                 }
@@ -56684,9 +56776,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size()));
-            for (Partition _iter601 : struct.success)
+            for (Partition _iter609 : struct.success)
             {
-              _iter601.write(oprot);
+              _iter609.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -56733,9 +56825,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Partition _iter602 : struct.success)
+            for (Partition _iter610 : struct.success)
             {
-              _iter602.write(oprot);
+              _iter610.write(oprot);
             }
           }
         }
@@ -56753,14 +56845,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list603 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<Partition>(_list603.size);
-            for (int _i604 = 0; _i604 < _list603.size; ++_i604)
+            org.apache.thrift.protocol.TList _list611 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<Partition>(_list611.size);
+            for (int _i612 = 0; _i612 < _list611.size; ++_i612)
             {
-              Partition _elem605; // optional
-              _elem605 = new Partition();
-              _elem605.read(iprot);
-              struct.success.add(_elem605);
+              Partition _elem613; // required
+              _elem613 = new Partition();
+              _elem613.read(iprot);
+              struct.success.add(_elem613);
             }
           }
           struct.setSuccessIsSet(true);
@@ -57453,13 +57545,13 @@ public class ThriftHiveMetastore {
             case 5: // GROUP_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list606 = iprot.readListBegin();
-                  struct.group_names = new ArrayList<String>(_list606.size);
-                  for (int _i607 = 0; _i607 < _list606.size; ++_i607)
+                  org.apache.thrift.protocol.TList _list614 = iprot.readListBegin();
+                  struct.group_names = new ArrayList<String>(_list614.size);
+                  for (int _i615 = 0; _i615 < _list614.size; ++_i615)
                   {
-                    String _elem608; // optional
-                    _elem608 = iprot.readString();
-                    struct.group_names.add(_elem608);
+                    String _elem616; // required
+                    _elem616 = iprot.readString();
+                    struct.group_names.add(_elem616);
                   }
                   iprot.readListEnd();
                 }
@@ -57503,9 +57595,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(GROUP_NAMES_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.group_names.size()));
-            for (String _iter609 : struct.group_names)
+            for (String _iter617 : struct.group_names)
             {
-              oprot.writeString(_iter609);
+              oprot.writeString(_iter617);
             }
             oprot.writeListEnd();
           }
@@ -57560,9 +57652,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetGroup_names()) {
           {
             oprot.writeI32(struct.group_names.size());
-            for (String _iter610 : struct.group_names)
+            for (String _iter618 : struct.group_names)
             {
-              oprot.writeString(_iter610);
+              oprot.writeString(_iter618);
             }
           }
         }
@@ -57590,13 +57682,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(4)) {
           {
-            org.apache.thrift.protocol.TList _list611 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.group_names = new ArrayList<String>(_list611.size);
-            for (int _i612 = 0; _i612 < _list611.size; ++_i612)
+            org.apache.thrift.protocol.TList _list619 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.group_names = new ArrayList<String>(_list619.size);
+            for (int _i620 = 0; _i620 < _list619.size; ++_i620)
             {
-              String _elem613; // optional
-              _elem613 = iprot.readString();
-              struct.group_names.add(_elem613);
+              String _elem621; // required
+              _elem621 = iprot.readString();
+              struct.group_names.add(_elem621);
             }
           }
           struct.setGroup_namesIsSet(true);
@@ -58083,14 +58175,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list614 = iprot.readListBegin();
-                  struct.success = new ArrayList<Partition>(_list614.size);
-                  for (int _i615 = 0; _i615 < _list614.size; ++_i615)
+                  org.apache.thrift.protocol.TList _list622 = iprot.readListBegin();
+                  struct.success = new ArrayList<Partition>(_list622.size);
+                  for (int _i623 = 0; _i623 < _list622.size; ++_i623)
                   {
-                    Partition _elem616; // optional
-                    _elem616 = new Partition();
-                    _elem616.read(iprot);
-                    struct.success.add(_elem616);
+                    Partition _elem624; // required
+                    _elem624 = new Partition();
+                    _elem624.read(iprot);
+                    struct.success.add(_elem624);
                   }
                   iprot.readListEnd();
                 }
@@ -58134,9 +58226,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size()));
-            for (Partition _iter617 : struct.success)
+            for (Partition _iter625 : struct.success)
             {
-              _iter617.write(oprot);
+              _iter625.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -58183,9 +58275,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Partition _iter618 : struct.success)
+            for (Partition _iter626 : struct.success)
             {
-              _iter618.write(oprot);
+              _iter626.write(oprot);
             }
           }
         }
@@ -58203,14 +58295,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list619 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<Partition>(_list619.size);
-            for (int _i620 = 0; _i620 < _list619.size; ++_i620)
+            org.apache.thrift.protocol.TList _list627 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<Partition>(_list627.size);
+            for (int _i628 = 0; _i628 < _list627.size; ++_i628)
             {
-              Partition _elem621; // optional
-              _elem621 = new Partition();
-              _elem621.read(iprot);
-              struct.success.add(_elem621);
+              Partition _elem629; // required
+              _elem629 = new Partition();
+              _elem629.read(iprot);
+              struct.success.add(_elem629);
             }
           }
           struct.setSuccessIsSet(true);
@@ -59192,13 +59284,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list622 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list622.size);
-                  for (int _i623 = 0; _i623 < _list622.size; ++_i623)
+                  org.apache.thrift.protocol.TList _list630 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list630.size);
+                  for (int _i631 = 0; _i631 < _list630.size; ++_i631)
                   {
-                    String _elem624; // optional
-                    _elem624 = iprot.readString();
-                    struct.success.add(_elem624);
+                    String _elem632; // required
+                    _elem632 = iprot.readString();
+                    struct.success.add(_elem632);
                   }
                   iprot.readListEnd();
                 }
@@ -59233,9 +59325,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size()));
-            for (String _iter625 : struct.success)
+            for (String _iter633 : struct.success)
             {
-              oprot.writeString(_iter625);
+              oprot.writeString(_iter633);
             }
             oprot.writeListEnd();
           }
@@ -59274,9 +59366,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter626 : struct.success)
+            for (String _iter634 : struct.success)
             {
-              oprot.writeString(_iter626);
+              oprot.writeString(_iter634);
             }
           }
         }
@@ -59291,13 +59383,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list627 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list627.size);
-            for (int _i628 = 0; _i628 < _list627.size; ++_i628)
+            org.apache.thrift.protocol.TList _list635 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list635.size);
+            for (int _i636 = 0; _i636 < _list635.size; ++_i636)
             {
-              String _elem629; // optional
-              _elem629 = iprot.readString();
-              struct.success.add(_elem629);
+              String _elem637; // required
+              _elem637 = iprot.readString();
+              struct.success.add(_elem637);
             }
           }
           struct.setSuccessIsSet(true);
@@ -59888,13 +59980,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list630 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list630.size);
-                  for (int _i631 = 0; _i631 < _list630.size; ++_i631)
+                  org.apache.thrift.protocol.TList _list638 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list638.size);
+                  for (int _i639 = 0; _i639 < _list638.size; ++_i639)
                   {
-                    String _elem632; // optional
-                    _elem632 = iprot.readString();
-                    struct.part_vals.add(_elem632);
+                    String _elem640; // required
+                    _elem640 = iprot.readString();
+                    struct.part_vals.add(_elem640);
                   }
                   iprot.readListEnd();
                 }
@@ -59938,9 +60030,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(PART_VALS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.part_vals.size()));
-            for (String _iter633 : struct.part_vals)
+            for (String _iter641 : struct.part_vals)
             {
-              oprot.writeString(_iter633);
+              oprot.writeString(_iter641);
             }
             oprot.writeListEnd();
           }
@@ -59989,9 +60081,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter634 : struct.part_vals)
+            for (String _iter642 : struct.part_vals)
             {
-              oprot.writeString(_iter634);
+              oprot.writeString(_iter642);
             }
           }
         }
@@ -60014,13 +60106,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list635 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list635.size);
-            for (int _i636 = 0; _i636 < _list635.size; ++_i636)
+            org.apache.thrift.protocol.TList _list643 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list643.size);
+            for (int _i644 = 0; _i644 < _list643.size; ++_i644)
             {
-              String _elem637; // optional
-              _elem637 = iprot.readString();
-              struct.part_vals.add(_elem637);
+              String _elem645; // required
+              _elem645 = iprot.readString();
+              struct.part_vals.add(_elem645);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -60511,14 +60603,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list638 = iprot.readListBegin();
-                  struct.success = new ArrayList<Partition>(_list638.size);
-                  for (int _i639 = 0; _i639 < _list638.size; ++_i639)
+                  org.apache.thrift.protocol.TList _list646 = iprot.readListBegin();
+                  struct.success = new ArrayList<Partition>(_list646.size);
+                  for (int _i647 = 0; _i647 < _list646.size; ++_i647)
                   {
-                    Partition _elem640; // optional
-                    _elem640 = new Partition();
-                    _elem640.read(iprot);
-                    struct.success.add(_elem640);
+                    Partition _elem648; // required
+                    _elem648 = new Partition();
+                    _elem648.read(iprot);
+                    struct.success.add(_elem648);
                   }
                   iprot.readListEnd();
                 }
@@ -60562,9 +60654,9 @@ public class ThriftHiveMetastore {
           oprot.writeFieldBegin(SUCCESS_FIELD_DESC);
           {
             oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size()));
-            for (Partition _iter641 : struct.success)
+            for (Partition _iter649 : struct.success)
             {
-              _iter641.write(oprot);
+              _iter649.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -60611,9 +60703,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Partition _iter642 : struct.success)
+            for (Partition _iter650 : struct.success)
             {
-              _iter642.write(oprot);
+              _iter650.write(oprot);
             }
           }
         }
@@ -60631,14 +60723,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list643 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<Partition>(_list643.size);
-            for (int _i644 = 0; _i644 < _list643.size; ++_i644)
+            org.apache.thrift.protocol.TList _list651 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<Partition>(_list651.size);
+            for (int _i652 = 0; _i652 < _list651.size; ++_i652)
             {
-              Partition _elem645; // optional
-              _elem645 = new Partition();
-              _elem645.read(iprot);
-              struct.success.add(_elem645);
+              Partition _elem653; // required
+              _elem653 = new Partition();
+              _elem653.read(iprot);
+              struct.success.add(_elem653);
             }
           }
           struct.setSuccessIsSet(true);
@@ -61416,13 +61508,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list646 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list646.size);
-                  for (int _i647 = 0; _i647 < _list646.size; ++_i647)
+                  org.apache.thrift.protocol.TList _list654 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list654.size);
+                  for (int _i655 = 0; _i655 < _list654.size; ++_i655)
                   {
-                    String _elem648; // optional
-                    _elem648 = iprot.readString();
-                    struct.part_vals.add(_elem648);
+                    String _elem656; // required

[... 2542 lines stripped ...]