You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by kh...@apache.org on 2015/01/27 23:54:04 UTC

svn commit: r1655185 [4/6] - in /hive/trunk: hcatalog/core/src/main/java/org/apache/hive/hcatalog/common/ hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/listener/ hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/mess...

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=1655185&r1=1655184&r2=1655185&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 Jan 27 22:54:03 2015
@@ -276,6 +276,8 @@ public class ThriftHiveMetastore {
 
     public CurrentNotificationEventId get_current_notificationEventId() throws org.apache.thrift.TException;
 
+    public void fire_notification_event(FireEventRequest rqst) throws org.apache.thrift.TException;
+
   }
 
   public interface AsyncIface extends com.facebook.fb303.FacebookService .AsyncIface {
@@ -518,6 +520,8 @@ public class ThriftHiveMetastore {
 
     public void get_current_notificationEventId(org.apache.thrift.async.AsyncMethodCallback<AsyncClient.get_current_notificationEventId_call> resultHandler) throws org.apache.thrift.TException;
 
+    public void fire_notification_event(FireEventRequest rqst, org.apache.thrift.async.AsyncMethodCallback<AsyncClient.fire_notification_event_call> resultHandler) throws org.apache.thrift.TException;
+
   }
 
   public static class Client extends com.facebook.fb303.FacebookService.Client implements Iface {
@@ -4053,6 +4057,26 @@ public class ThriftHiveMetastore {
       throw new org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT, "get_current_notificationEventId failed: unknown result");
     }
 
+    public void fire_notification_event(FireEventRequest rqst) throws org.apache.thrift.TException
+    {
+      send_fire_notification_event(rqst);
+      recv_fire_notification_event();
+    }
+
+    public void send_fire_notification_event(FireEventRequest rqst) throws org.apache.thrift.TException
+    {
+      fire_notification_event_args args = new fire_notification_event_args();
+      args.setRqst(rqst);
+      sendBase("fire_notification_event", args);
+    }
+
+    public void recv_fire_notification_event() throws org.apache.thrift.TException
+    {
+      fire_notification_event_result result = new fire_notification_event_result();
+      receiveBase(result, "fire_notification_event");
+      return;
+    }
+
   }
   public static class AsyncClient extends com.facebook.fb303.FacebookService.AsyncClient implements AsyncIface {
     public static class Factory implements org.apache.thrift.async.TAsyncClientFactory<AsyncClient> {
@@ -8317,6 +8341,38 @@ public class ThriftHiveMetastore {
       }
     }
 
+    public void fire_notification_event(FireEventRequest rqst, org.apache.thrift.async.AsyncMethodCallback<fire_notification_event_call> resultHandler) throws org.apache.thrift.TException {
+      checkReady();
+      fire_notification_event_call method_call = new fire_notification_event_call(rqst, resultHandler, this, ___protocolFactory, ___transport);
+      this.___currentMethod = method_call;
+      ___manager.call(method_call);
+    }
+
+    public static class fire_notification_event_call extends org.apache.thrift.async.TAsyncMethodCall {
+      private FireEventRequest rqst;
+      public fire_notification_event_call(FireEventRequest rqst, org.apache.thrift.async.AsyncMethodCallback<fire_notification_event_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.rqst = rqst;
+      }
+
+      public void write_args(org.apache.thrift.protocol.TProtocol prot) throws org.apache.thrift.TException {
+        prot.writeMessageBegin(new org.apache.thrift.protocol.TMessage("fire_notification_event", org.apache.thrift.protocol.TMessageType.CALL, 0));
+        fire_notification_event_args args = new fire_notification_event_args();
+        args.setRqst(rqst);
+        args.write(prot);
+        prot.writeMessageEnd();
+      }
+
+      public void getResult() throws 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);
+        (new Client(prot)).recv_fire_notification_event();
+      }
+    }
+
   }
 
   public static class Processor<I extends Iface> extends com.facebook.fb303.FacebookService.Processor<I> implements org.apache.thrift.TProcessor {
@@ -8449,6 +8505,7 @@ public class ThriftHiveMetastore {
       processMap.put("show_compact", new show_compact());
       processMap.put("get_next_notification", new get_next_notification());
       processMap.put("get_current_notificationEventId", new get_current_notificationEventId());
+      processMap.put("fire_notification_event", new fire_notification_event());
       return processMap;
     }
 
@@ -11547,6 +11604,26 @@ public class ThriftHiveMetastore {
       }
     }
 
+    public static class fire_notification_event<I extends Iface> extends org.apache.thrift.ProcessFunction<I, fire_notification_event_args> {
+      public fire_notification_event() {
+        super("fire_notification_event");
+      }
+
+      public fire_notification_event_args getEmptyArgsInstance() {
+        return new fire_notification_event_args();
+      }
+
+      protected boolean isOneway() {
+        return false;
+      }
+
+      public fire_notification_event_result getResult(I iface, fire_notification_event_args args) throws org.apache.thrift.TException {
+        fire_notification_event_result result = new fire_notification_event_result();
+        iface.fire_notification_event(args.rqst);
+        return result;
+      }
+    }
+
   }
 
   public static class getMetaConf_args implements org.apache.thrift.TBase<getMetaConf_args, getMetaConf_args._Fields>, java.io.Serializable, Cloneable   {
@@ -16945,13 +17022,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list500 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list500.size);
-                  for (int _i501 = 0; _i501 < _list500.size; ++_i501)
+                  org.apache.thrift.protocol.TList _list508 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list508.size);
+                  for (int _i509 = 0; _i509 < _list508.size; ++_i509)
                   {
-                    String _elem502; // required
-                    _elem502 = iprot.readString();
-                    struct.success.add(_elem502);
+                    String _elem510; // required
+                    _elem510 = iprot.readString();
+                    struct.success.add(_elem510);
                   }
                   iprot.readListEnd();
                 }
@@ -16986,9 +17063,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 _iter503 : struct.success)
+            for (String _iter511 : struct.success)
             {
-              oprot.writeString(_iter503);
+              oprot.writeString(_iter511);
             }
             oprot.writeListEnd();
           }
@@ -17027,9 +17104,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter504 : struct.success)
+            for (String _iter512 : struct.success)
             {
-              oprot.writeString(_iter504);
+              oprot.writeString(_iter512);
             }
           }
         }
@@ -17044,13 +17121,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            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)
+            org.apache.thrift.protocol.TList _list513 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list513.size);
+            for (int _i514 = 0; _i514 < _list513.size; ++_i514)
             {
-              String _elem507; // required
-              _elem507 = iprot.readString();
-              struct.success.add(_elem507);
+              String _elem515; // required
+              _elem515 = iprot.readString();
+              struct.success.add(_elem515);
             }
           }
           struct.setSuccessIsSet(true);
@@ -17707,13 +17784,13 @@ 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<String>(_list508.size);
-                  for (int _i509 = 0; _i509 < _list508.size; ++_i509)
+                  org.apache.thrift.protocol.TList _list516 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list516.size);
+                  for (int _i517 = 0; _i517 < _list516.size; ++_i517)
                   {
-                    String _elem510; // required
-                    _elem510 = iprot.readString();
-                    struct.success.add(_elem510);
+                    String _elem518; // required
+                    _elem518 = iprot.readString();
+                    struct.success.add(_elem518);
                   }
                   iprot.readListEnd();
                 }
@@ -17748,9 +17825,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 _iter511 : struct.success)
+            for (String _iter519 : struct.success)
             {
-              oprot.writeString(_iter511);
+              oprot.writeString(_iter519);
             }
             oprot.writeListEnd();
           }
@@ -17789,9 +17866,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter512 : struct.success)
+            for (String _iter520 : struct.success)
             {
-              oprot.writeString(_iter512);
+              oprot.writeString(_iter520);
             }
           }
         }
@@ -17806,13 +17883,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list513 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_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.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list521.size);
+            for (int _i522 = 0; _i522 < _list521.size; ++_i522)
             {
-              String _elem515; // required
-              _elem515 = iprot.readString();
-              struct.success.add(_elem515);
+              String _elem523; // required
+              _elem523 = iprot.readString();
+              struct.success.add(_elem523);
             }
           }
           struct.setSuccessIsSet(true);
@@ -22419,16 +22496,16 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.MAP) {
                 {
-                  org.apache.thrift.protocol.TMap _map516 = iprot.readMapBegin();
-                  struct.success = new HashMap<String,Type>(2*_map516.size);
-                  for (int _i517 = 0; _i517 < _map516.size; ++_i517)
+                  org.apache.thrift.protocol.TMap _map524 = iprot.readMapBegin();
+                  struct.success = new HashMap<String,Type>(2*_map524.size);
+                  for (int _i525 = 0; _i525 < _map524.size; ++_i525)
                   {
-                    String _key518; // required
-                    Type _val519; // required
-                    _key518 = iprot.readString();
-                    _val519 = new Type();
-                    _val519.read(iprot);
-                    struct.success.put(_key518, _val519);
+                    String _key526; // required
+                    Type _val527; // required
+                    _key526 = iprot.readString();
+                    _val527 = new Type();
+                    _val527.read(iprot);
+                    struct.success.put(_key526, _val527);
                   }
                   iprot.readMapEnd();
                 }
@@ -22463,10 +22540,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> _iter520 : struct.success.entrySet())
+            for (Map.Entry<String, Type> _iter528 : struct.success.entrySet())
             {
-              oprot.writeString(_iter520.getKey());
-              _iter520.getValue().write(oprot);
+              oprot.writeString(_iter528.getKey());
+              _iter528.getValue().write(oprot);
             }
             oprot.writeMapEnd();
           }
@@ -22505,10 +22582,10 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Map.Entry<String, Type> _iter521 : struct.success.entrySet())
+            for (Map.Entry<String, Type> _iter529 : struct.success.entrySet())
             {
-              oprot.writeString(_iter521.getKey());
-              _iter521.getValue().write(oprot);
+              oprot.writeString(_iter529.getKey());
+              _iter529.getValue().write(oprot);
             }
           }
         }
@@ -22523,16 +22600,16 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TMap _map522 = 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*_map522.size);
-            for (int _i523 = 0; _i523 < _map522.size; ++_i523)
+            org.apache.thrift.protocol.TMap _map530 = 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*_map530.size);
+            for (int _i531 = 0; _i531 < _map530.size; ++_i531)
             {
-              String _key524; // required
-              Type _val525; // required
-              _key524 = iprot.readString();
-              _val525 = new Type();
-              _val525.read(iprot);
-              struct.success.put(_key524, _val525);
+              String _key532; // required
+              Type _val533; // required
+              _key532 = iprot.readString();
+              _val533 = new Type();
+              _val533.read(iprot);
+              struct.success.put(_key532, _val533);
             }
           }
           struct.setSuccessIsSet(true);
@@ -23567,14 +23644,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list526 = iprot.readListBegin();
-                  struct.success = new ArrayList<FieldSchema>(_list526.size);
-                  for (int _i527 = 0; _i527 < _list526.size; ++_i527)
+                  org.apache.thrift.protocol.TList _list534 = iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list534.size);
+                  for (int _i535 = 0; _i535 < _list534.size; ++_i535)
                   {
-                    FieldSchema _elem528; // required
-                    _elem528 = new FieldSchema();
-                    _elem528.read(iprot);
-                    struct.success.add(_elem528);
+                    FieldSchema _elem536; // required
+                    _elem536 = new FieldSchema();
+                    _elem536.read(iprot);
+                    struct.success.add(_elem536);
                   }
                   iprot.readListEnd();
                 }
@@ -23627,9 +23704,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 _iter529 : struct.success)
+            for (FieldSchema _iter537 : struct.success)
             {
-              _iter529.write(oprot);
+              _iter537.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -23684,9 +23761,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter530 : struct.success)
+            for (FieldSchema _iter538 : struct.success)
             {
-              _iter530.write(oprot);
+              _iter538.write(oprot);
             }
           }
         }
@@ -23707,14 +23784,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list531 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<FieldSchema>(_list531.size);
-            for (int _i532 = 0; _i532 < _list531.size; ++_i532)
+            org.apache.thrift.protocol.TList _list539 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list539.size);
+            for (int _i540 = 0; _i540 < _list539.size; ++_i540)
             {
-              FieldSchema _elem533; // required
-              _elem533 = new FieldSchema();
-              _elem533.read(iprot);
-              struct.success.add(_elem533);
+              FieldSchema _elem541; // required
+              _elem541 = new FieldSchema();
+              _elem541.read(iprot);
+              struct.success.add(_elem541);
             }
           }
           struct.setSuccessIsSet(true);
@@ -24759,14 +24836,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list534 = iprot.readListBegin();
-                  struct.success = new ArrayList<FieldSchema>(_list534.size);
-                  for (int _i535 = 0; _i535 < _list534.size; ++_i535)
+                  org.apache.thrift.protocol.TList _list542 = iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list542.size);
+                  for (int _i543 = 0; _i543 < _list542.size; ++_i543)
                   {
-                    FieldSchema _elem536; // required
-                    _elem536 = new FieldSchema();
-                    _elem536.read(iprot);
-                    struct.success.add(_elem536);
+                    FieldSchema _elem544; // required
+                    _elem544 = new FieldSchema();
+                    _elem544.read(iprot);
+                    struct.success.add(_elem544);
                   }
                   iprot.readListEnd();
                 }
@@ -24819,9 +24896,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 _iter537 : struct.success)
+            for (FieldSchema _iter545 : struct.success)
             {
-              _iter537.write(oprot);
+              _iter545.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -24876,9 +24953,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter538 : struct.success)
+            for (FieldSchema _iter546 : struct.success)
             {
-              _iter538.write(oprot);
+              _iter546.write(oprot);
             }
           }
         }
@@ -24899,14 +24976,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list539 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<FieldSchema>(_list539.size);
-            for (int _i540 = 0; _i540 < _list539.size; ++_i540)
+            org.apache.thrift.protocol.TList _list547 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list547.size);
+            for (int _i548 = 0; _i548 < _list547.size; ++_i548)
             {
-              FieldSchema _elem541; // required
-              _elem541 = new FieldSchema();
-              _elem541.read(iprot);
-              struct.success.add(_elem541);
+              FieldSchema _elem549; // required
+              _elem549 = new FieldSchema();
+              _elem549.read(iprot);
+              struct.success.add(_elem549);
             }
           }
           struct.setSuccessIsSet(true);
@@ -30149,13 +30226,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list542 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list542.size);
-                  for (int _i543 = 0; _i543 < _list542.size; ++_i543)
+                  org.apache.thrift.protocol.TList _list550 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list550.size);
+                  for (int _i551 = 0; _i551 < _list550.size; ++_i551)
                   {
-                    String _elem544; // required
-                    _elem544 = iprot.readString();
-                    struct.success.add(_elem544);
+                    String _elem552; // required
+                    _elem552 = iprot.readString();
+                    struct.success.add(_elem552);
                   }
                   iprot.readListEnd();
                 }
@@ -30190,9 +30267,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 _iter545 : struct.success)
+            for (String _iter553 : struct.success)
             {
-              oprot.writeString(_iter545);
+              oprot.writeString(_iter553);
             }
             oprot.writeListEnd();
           }
@@ -30231,9 +30308,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter546 : struct.success)
+            for (String _iter554 : struct.success)
             {
-              oprot.writeString(_iter546);
+              oprot.writeString(_iter554);
             }
           }
         }
@@ -30248,13 +30325,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list547 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list547.size);
-            for (int _i548 = 0; _i548 < _list547.size; ++_i548)
+            org.apache.thrift.protocol.TList _list555 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list555.size);
+            for (int _i556 = 0; _i556 < _list555.size; ++_i556)
             {
-              String _elem549; // required
-              _elem549 = iprot.readString();
-              struct.success.add(_elem549);
+              String _elem557; // required
+              _elem557 = iprot.readString();
+              struct.success.add(_elem557);
             }
           }
           struct.setSuccessIsSet(true);
@@ -31023,13 +31100,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list550 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list550.size);
-                  for (int _i551 = 0; _i551 < _list550.size; ++_i551)
+                  org.apache.thrift.protocol.TList _list558 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list558.size);
+                  for (int _i559 = 0; _i559 < _list558.size; ++_i559)
                   {
-                    String _elem552; // required
-                    _elem552 = iprot.readString();
-                    struct.success.add(_elem552);
+                    String _elem560; // required
+                    _elem560 = iprot.readString();
+                    struct.success.add(_elem560);
                   }
                   iprot.readListEnd();
                 }
@@ -31064,9 +31141,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 _iter553 : struct.success)
+            for (String _iter561 : struct.success)
             {
-              oprot.writeString(_iter553);
+              oprot.writeString(_iter561);
             }
             oprot.writeListEnd();
           }
@@ -31105,9 +31182,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter554 : struct.success)
+            for (String _iter562 : struct.success)
             {
-              oprot.writeString(_iter554);
+              oprot.writeString(_iter562);
             }
           }
         }
@@ -31122,13 +31199,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list555 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list555.size);
-            for (int _i556 = 0; _i556 < _list555.size; ++_i556)
+            org.apache.thrift.protocol.TList _list563 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list563.size);
+            for (int _i564 = 0; _i564 < _list563.size; ++_i564)
             {
-              String _elem557; // required
-              _elem557 = iprot.readString();
-              struct.success.add(_elem557);
+              String _elem565; // required
+              _elem565 = iprot.readString();
+              struct.success.add(_elem565);
             }
           }
           struct.setSuccessIsSet(true);
@@ -32584,13 +32661,13 @@ public class ThriftHiveMetastore {
             case 2: // TBL_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list558 = iprot.readListBegin();
-                  struct.tbl_names = new ArrayList<String>(_list558.size);
-                  for (int _i559 = 0; _i559 < _list558.size; ++_i559)
+                  org.apache.thrift.protocol.TList _list566 = iprot.readListBegin();
+                  struct.tbl_names = new ArrayList<String>(_list566.size);
+                  for (int _i567 = 0; _i567 < _list566.size; ++_i567)
                   {
-                    String _elem560; // required
-                    _elem560 = iprot.readString();
-                    struct.tbl_names.add(_elem560);
+                    String _elem568; // required
+                    _elem568 = iprot.readString();
+                    struct.tbl_names.add(_elem568);
                   }
                   iprot.readListEnd();
                 }
@@ -32621,9 +32698,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 _iter561 : struct.tbl_names)
+            for (String _iter569 : struct.tbl_names)
             {
-              oprot.writeString(_iter561);
+              oprot.writeString(_iter569);
             }
             oprot.writeListEnd();
           }
@@ -32660,9 +32737,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetTbl_names()) {
           {
             oprot.writeI32(struct.tbl_names.size());
-            for (String _iter562 : struct.tbl_names)
+            for (String _iter570 : struct.tbl_names)
             {
-              oprot.writeString(_iter562);
+              oprot.writeString(_iter570);
             }
           }
         }
@@ -32678,13 +32755,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(1)) {
           {
-            org.apache.thrift.protocol.TList _list563 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.tbl_names = new ArrayList<String>(_list563.size);
-            for (int _i564 = 0; _i564 < _list563.size; ++_i564)
+            org.apache.thrift.protocol.TList _list571 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.tbl_names = new ArrayList<String>(_list571.size);
+            for (int _i572 = 0; _i572 < _list571.size; ++_i572)
             {
-              String _elem565; // required
-              _elem565 = iprot.readString();
-              struct.tbl_names.add(_elem565);
+              String _elem573; // required
+              _elem573 = iprot.readString();
+              struct.tbl_names.add(_elem573);
             }
           }
           struct.setTbl_namesIsSet(true);
@@ -33252,14 +33329,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list566 = iprot.readListBegin();
-                  struct.success = new ArrayList<Table>(_list566.size);
-                  for (int _i567 = 0; _i567 < _list566.size; ++_i567)
+                  org.apache.thrift.protocol.TList _list574 = iprot.readListBegin();
+                  struct.success = new ArrayList<Table>(_list574.size);
+                  for (int _i575 = 0; _i575 < _list574.size; ++_i575)
                   {
-                    Table _elem568; // required
-                    _elem568 = new Table();
-                    _elem568.read(iprot);
-                    struct.success.add(_elem568);
+                    Table _elem576; // required
+                    _elem576 = new Table();
+                    _elem576.read(iprot);
+                    struct.success.add(_elem576);
                   }
                   iprot.readListEnd();
                 }
@@ -33312,9 +33389,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 _iter569 : struct.success)
+            for (Table _iter577 : struct.success)
             {
-              _iter569.write(oprot);
+              _iter577.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -33369,9 +33446,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Table _iter570 : struct.success)
+            for (Table _iter578 : struct.success)
             {
-              _iter570.write(oprot);
+              _iter578.write(oprot);
             }
           }
         }
@@ -33392,14 +33469,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list571 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<Table>(_list571.size);
-            for (int _i572 = 0; _i572 < _list571.size; ++_i572)
+            org.apache.thrift.protocol.TList _list579 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<Table>(_list579.size);
+            for (int _i580 = 0; _i580 < _list579.size; ++_i580)
             {
-              Table _elem573; // required
-              _elem573 = new Table();
-              _elem573.read(iprot);
-              struct.success.add(_elem573);
+              Table _elem581; // required
+              _elem581 = new Table();
+              _elem581.read(iprot);
+              struct.success.add(_elem581);
             }
           }
           struct.setSuccessIsSet(true);
@@ -34548,13 +34625,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list574 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list574.size);
-                  for (int _i575 = 0; _i575 < _list574.size; ++_i575)
+                  org.apache.thrift.protocol.TList _list582 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list582.size);
+                  for (int _i583 = 0; _i583 < _list582.size; ++_i583)
                   {
-                    String _elem576; // required
-                    _elem576 = iprot.readString();
-                    struct.success.add(_elem576);
+                    String _elem584; // required
+                    _elem584 = iprot.readString();
+                    struct.success.add(_elem584);
                   }
                   iprot.readListEnd();
                 }
@@ -34607,9 +34684,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 _iter577 : struct.success)
+            for (String _iter585 : struct.success)
             {
-              oprot.writeString(_iter577);
+              oprot.writeString(_iter585);
             }
             oprot.writeListEnd();
           }
@@ -34664,9 +34741,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter578 : struct.success)
+            for (String _iter586 : struct.success)
             {
-              oprot.writeString(_iter578);
+              oprot.writeString(_iter586);
             }
           }
         }
@@ -34687,13 +34764,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list579 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list579.size);
-            for (int _i580 = 0; _i580 < _list579.size; ++_i580)
+            org.apache.thrift.protocol.TList _list587 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list587.size);
+            for (int _i588 = 0; _i588 < _list587.size; ++_i588)
             {
-              String _elem581; // required
-              _elem581 = iprot.readString();
-              struct.success.add(_elem581);
+              String _elem589; // required
+              _elem589 = iprot.readString();
+              struct.success.add(_elem589);
             }
           }
           struct.setSuccessIsSet(true);
@@ -40552,14 +40629,14 @@ public class ThriftHiveMetastore {
             case 1: // NEW_PARTS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list582 = iprot.readListBegin();
-                  struct.new_parts = new ArrayList<Partition>(_list582.size);
-                  for (int _i583 = 0; _i583 < _list582.size; ++_i583)
+                  org.apache.thrift.protocol.TList _list590 = iprot.readListBegin();
+                  struct.new_parts = new ArrayList<Partition>(_list590.size);
+                  for (int _i591 = 0; _i591 < _list590.size; ++_i591)
                   {
-                    Partition _elem584; // required
-                    _elem584 = new Partition();
-                    _elem584.read(iprot);
-                    struct.new_parts.add(_elem584);
+                    Partition _elem592; // required
+                    _elem592 = new Partition();
+                    _elem592.read(iprot);
+                    struct.new_parts.add(_elem592);
                   }
                   iprot.readListEnd();
                 }
@@ -40585,9 +40662,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 _iter585 : struct.new_parts)
+            for (Partition _iter593 : struct.new_parts)
             {
-              _iter585.write(oprot);
+              _iter593.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -40618,9 +40695,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetNew_parts()) {
           {
             oprot.writeI32(struct.new_parts.size());
-            for (Partition _iter586 : struct.new_parts)
+            for (Partition _iter594 : struct.new_parts)
             {
-              _iter586.write(oprot);
+              _iter594.write(oprot);
             }
           }
         }
@@ -40632,14 +40709,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(1);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list587 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.new_parts = new ArrayList<Partition>(_list587.size);
-            for (int _i588 = 0; _i588 < _list587.size; ++_i588)
+            org.apache.thrift.protocol.TList _list595 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.new_parts = new ArrayList<Partition>(_list595.size);
+            for (int _i596 = 0; _i596 < _list595.size; ++_i596)
             {
-              Partition _elem589; // required
-              _elem589 = new Partition();
-              _elem589.read(iprot);
-              struct.new_parts.add(_elem589);
+              Partition _elem597; // required
+              _elem597 = new Partition();
+              _elem597.read(iprot);
+              struct.new_parts.add(_elem597);
             }
           }
           struct.setNew_partsIsSet(true);
@@ -41640,14 +41717,14 @@ public class ThriftHiveMetastore {
             case 1: // NEW_PARTS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list590 = iprot.readListBegin();
-                  struct.new_parts = new ArrayList<PartitionSpec>(_list590.size);
-                  for (int _i591 = 0; _i591 < _list590.size; ++_i591)
+                  org.apache.thrift.protocol.TList _list598 = iprot.readListBegin();
+                  struct.new_parts = new ArrayList<PartitionSpec>(_list598.size);
+                  for (int _i599 = 0; _i599 < _list598.size; ++_i599)
                   {
-                    PartitionSpec _elem592; // required
-                    _elem592 = new PartitionSpec();
-                    _elem592.read(iprot);
-                    struct.new_parts.add(_elem592);
+                    PartitionSpec _elem600; // required
+                    _elem600 = new PartitionSpec();
+                    _elem600.read(iprot);
+                    struct.new_parts.add(_elem600);
                   }
                   iprot.readListEnd();
                 }
@@ -41673,9 +41750,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 (PartitionSpec _iter593 : struct.new_parts)
+            for (PartitionSpec _iter601 : struct.new_parts)
             {
-              _iter593.write(oprot);
+              _iter601.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -41706,9 +41783,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetNew_parts()) {
           {
             oprot.writeI32(struct.new_parts.size());
-            for (PartitionSpec _iter594 : struct.new_parts)
+            for (PartitionSpec _iter602 : struct.new_parts)
             {
-              _iter594.write(oprot);
+              _iter602.write(oprot);
             }
           }
         }
@@ -41720,14 +41797,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(1);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list595 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.new_parts = new ArrayList<PartitionSpec>(_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.STRUCT, iprot.readI32());
+            struct.new_parts = new ArrayList<PartitionSpec>(_list603.size);
+            for (int _i604 = 0; _i604 < _list603.size; ++_i604)
             {
-              PartitionSpec _elem597; // required
-              _elem597 = new PartitionSpec();
-              _elem597.read(iprot);
-              struct.new_parts.add(_elem597);
+              PartitionSpec _elem605; // required
+              _elem605 = new PartitionSpec();
+              _elem605.read(iprot);
+              struct.new_parts.add(_elem605);
             }
           }
           struct.setNew_partsIsSet(true);
@@ -42906,13 +42983,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list598 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list598.size);
-                  for (int _i599 = 0; _i599 < _list598.size; ++_i599)
+                  org.apache.thrift.protocol.TList _list606 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list606.size);
+                  for (int _i607 = 0; _i607 < _list606.size; ++_i607)
                   {
-                    String _elem600; // required
-                    _elem600 = iprot.readString();
-                    struct.part_vals.add(_elem600);
+                    String _elem608; // required
+                    _elem608 = iprot.readString();
+                    struct.part_vals.add(_elem608);
                   }
                   iprot.readListEnd();
                 }
@@ -42948,9 +43025,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 _iter601 : struct.part_vals)
+            for (String _iter609 : struct.part_vals)
             {
-              oprot.writeString(_iter601);
+              oprot.writeString(_iter609);
             }
             oprot.writeListEnd();
           }
@@ -42993,9 +43070,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter602 : struct.part_vals)
+            for (String _iter610 : struct.part_vals)
             {
-              oprot.writeString(_iter602);
+              oprot.writeString(_iter610);
             }
           }
         }
@@ -43015,13 +43092,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list603 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_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.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list611.size);
+            for (int _i612 = 0; _i612 < _list611.size; ++_i612)
             {
-              String _elem605; // required
-              _elem605 = iprot.readString();
-              struct.part_vals.add(_elem605);
+              String _elem613; // required
+              _elem613 = iprot.readString();
+              struct.part_vals.add(_elem613);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -45333,13 +45410,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list606 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list606.size);
-                  for (int _i607 = 0; _i607 < _list606.size; ++_i607)
+                  org.apache.thrift.protocol.TList _list614 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list614.size);
+                  for (int _i615 = 0; _i615 < _list614.size; ++_i615)
                   {
-                    String _elem608; // required
-                    _elem608 = iprot.readString();
-                    struct.part_vals.add(_elem608);
+                    String _elem616; // required
+                    _elem616 = iprot.readString();
+                    struct.part_vals.add(_elem616);
                   }
                   iprot.readListEnd();
                 }
@@ -45384,9 +45461,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 _iter609 : struct.part_vals)
+            for (String _iter617 : struct.part_vals)
             {
-              oprot.writeString(_iter609);
+              oprot.writeString(_iter617);
             }
             oprot.writeListEnd();
           }
@@ -45437,9 +45514,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter610 : struct.part_vals)
+            for (String _iter618 : struct.part_vals)
             {
-              oprot.writeString(_iter610);
+              oprot.writeString(_iter618);
             }
           }
         }
@@ -45462,13 +45539,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list611 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = 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.part_vals = new ArrayList<String>(_list619.size);
+            for (int _i620 = 0; _i620 < _list619.size; ++_i620)
             {
-              String _elem613; // required
-              _elem613 = iprot.readString();
-              struct.part_vals.add(_elem613);
+              String _elem621; // required
+              _elem621 = iprot.readString();
+              struct.part_vals.add(_elem621);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -49341,13 +49418,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list614 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list614.size);
-                  for (int _i615 = 0; _i615 < _list614.size; ++_i615)
+                  org.apache.thrift.protocol.TList _list622 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list622.size);
+                  for (int _i623 = 0; _i623 < _list622.size; ++_i623)
                   {
-                    String _elem616; // required
-                    _elem616 = iprot.readString();
-                    struct.part_vals.add(_elem616);
+                    String _elem624; // required
+                    _elem624 = iprot.readString();
+                    struct.part_vals.add(_elem624);
                   }
                   iprot.readListEnd();
                 }
@@ -49391,9 +49468,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 _iter617 : struct.part_vals)
+            for (String _iter625 : struct.part_vals)
             {
-              oprot.writeString(_iter617);
+              oprot.writeString(_iter625);
             }
             oprot.writeListEnd();
           }
@@ -49442,9 +49519,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter618 : struct.part_vals)
+            for (String _iter626 : struct.part_vals)
             {
-              oprot.writeString(_iter618);
+              oprot.writeString(_iter626);
             }
           }
         }
@@ -49467,13 +49544,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list619 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_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.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list627.size);
+            for (int _i628 = 0; _i628 < _list627.size; ++_i628)
             {
-              String _elem621; // required
-              _elem621 = iprot.readString();
-              struct.part_vals.add(_elem621);
+              String _elem629; // required
+              _elem629 = iprot.readString();
+              struct.part_vals.add(_elem629);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -50715,13 +50792,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list622 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list622.size);
-                  for (int _i623 = 0; _i623 < _list622.size; ++_i623)
+                  org.apache.thrift.protocol.TList _list630 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list630.size);
+                  for (int _i631 = 0; _i631 < _list630.size; ++_i631)
                   {
-                    String _elem624; // required
-                    _elem624 = iprot.readString();
-                    struct.part_vals.add(_elem624);
+                    String _elem632; // required
+                    _elem632 = iprot.readString();
+                    struct.part_vals.add(_elem632);
                   }
                   iprot.readListEnd();
                 }
@@ -50774,9 +50851,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 _iter625 : struct.part_vals)
+            for (String _iter633 : struct.part_vals)
             {
-              oprot.writeString(_iter625);
+              oprot.writeString(_iter633);
             }
             oprot.writeListEnd();
           }
@@ -50833,9 +50910,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter626 : struct.part_vals)
+            for (String _iter634 : struct.part_vals)
             {
-              oprot.writeString(_iter626);
+              oprot.writeString(_iter634);
             }
           }
         }
@@ -50861,13 +50938,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list627 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = 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.part_vals = new ArrayList<String>(_list635.size);
+            for (int _i636 = 0; _i636 < _list635.size; ++_i636)
             {
-              String _elem629; // required
-              _elem629 = iprot.readString();
-              struct.part_vals.add(_elem629);
+              String _elem637; // required
+              _elem637 = iprot.readString();
+              struct.part_vals.add(_elem637);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -55472,13 +55549,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; // required
-                    _elem632 = iprot.readString();
-                    struct.part_vals.add(_elem632);
+                    String _elem640; // required
+                    _elem640 = iprot.readString();
+                    struct.part_vals.add(_elem640);
                   }
                   iprot.readListEnd();
                 }
@@ -55514,9 +55591,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();
           }
@@ -55559,9 +55636,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);
             }
           }
         }
@@ -55581,13 +55658,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; // required
-              _elem637 = iprot.readString();
-              struct.part_vals.add(_elem637);
+              String _elem645; // required
+              _elem645 = iprot.readString();
+              struct.part_vals.add(_elem645);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -56816,15 +56893,15 @@ public class ThriftHiveMetastore {
             case 1: // PARTITION_SPECS
               if (schemeField.type == org.apache.thrift.protocol.TType.MAP) {
                 {
-                  org.apache.thrift.protocol.TMap _map638 = iprot.readMapBegin();
-                  struct.partitionSpecs = new HashMap<String,String>(2*_map638.size);
-                  for (int _i639 = 0; _i639 < _map638.size; ++_i639)
+                  org.apache.thrift.protocol.TMap _map646 = iprot.readMapBegin();
+                  struct.partitionSpecs = new HashMap<String,String>(2*_map646.size);
+                  for (int _i647 = 0; _i647 < _map646.size; ++_i647)
                   {
-                    String _key640; // required
-                    String _val641; // required
-                    _key640 = iprot.readString();
-                    _val641 = iprot.readString();
-                    struct.partitionSpecs.put(_key640, _val641);
+                    String _key648; // required
+                    String _val649; // required
+                    _key648 = iprot.readString();
+                    _val649 = iprot.readString();
+                    struct.partitionSpecs.put(_key648, _val649);
                   }
                   iprot.readMapEnd();
                 }
@@ -56882,10 +56959,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> _iter642 : struct.partitionSpecs.entrySet())
+            for (Map.Entry<String, String> _iter650 : struct.partitionSpecs.entrySet())
             {
-              oprot.writeString(_iter642.getKey());
-              oprot.writeString(_iter642.getValue());
+              oprot.writeString(_iter650.getKey());
+              oprot.writeString(_iter650.getValue());
             }
             oprot.writeMapEnd();
           }
@@ -56948,10 +57025,10 @@ public class ThriftHiveMetastore {
         if (struct.isSetPartitionSpecs()) {
           {
             oprot.writeI32(struct.partitionSpecs.size());
-            for (Map.Entry<String, String> _iter643 : struct.partitionSpecs.entrySet())
+            for (Map.Entry<String, String> _iter651 : struct.partitionSpecs.entrySet())
             {
-              oprot.writeString(_iter643.getKey());
-              oprot.writeString(_iter643.getValue());
+              oprot.writeString(_iter651.getKey());
+              oprot.writeString(_iter651.getValue());
             }
           }
         }
@@ -56975,15 +57052,15 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(5);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TMap _map644 = 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*_map644.size);
-            for (int _i645 = 0; _i645 < _map644.size; ++_i645)
+            org.apache.thrift.protocol.TMap _map652 = 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*_map652.size);
+            for (int _i653 = 0; _i653 < _map652.size; ++_i653)
             {
-              String _key646; // required
-              String _val647; // required
-              _key646 = iprot.readString();
-              _val647 = iprot.readString();
-              struct.partitionSpecs.put(_key646, _val647);
+              String _key654; // required
+              String _val655; // required
+              _key654 = iprot.readString();
+              _val655 = iprot.readString();
+              struct.partitionSpecs.put(_key654, _val655);
             }
           }
           struct.setPartitionSpecsIsSet(true);
@@ -58471,13 +58548,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list648 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list648.size);
-                  for (int _i649 = 0; _i649 < _list648.size; ++_i649)
+                  org.apache.thrift.protocol.TList _list656 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list656.size);
+                  for (int _i657 = 0; _i657 < _list656.size; ++_i657)
                   {
-                    String _elem650; // required
-                    _elem650 = iprot.readString();
-                    struct.part_vals.add(_elem650);
+                    String _elem658; // required
+                    _elem658 = iprot.readString();
+                    struct.part_vals.add(_elem658);
                   }
                   iprot.readListEnd();
                 }
@@ -58497,13 +58574,13 @@ public class ThriftHiveMetastore {
             case 5: // GROUP_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list651 = iprot.readListBegin();
-                  struct.group_names = new ArrayList<String>(_list651.size);
-                  for (int _i652 = 0; _i652 < _list651.size; ++_i652)
+                  org.apache.thrift.protocol.TList _list659 = iprot.readListBegin();
+                  struct.group_names = new ArrayList<String>(_list659.size);
+                  for (int _i660 = 0; _i660 < _list659.size; ++_i660)
                   {
-                    String _elem653; // required
-                    _elem653 = iprot.readString();
-                    struct.group_names.add(_elem653);
+                    String _elem661; // required
+                    _elem661 = iprot.readString();
+                    struct.group_names.add(_elem661);
                   }
                   iprot.readListEnd();
                 }
@@ -58539,9 +58616,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 _iter654 : struct.part_vals)
+            for (String _iter662 : struct.part_vals)
             {
-              oprot.writeString(_iter654);
+              oprot.writeString(_iter662);
             }
             oprot.writeListEnd();
           }
@@ -58556,9 +58633,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 _iter655 : struct.group_names)
+            for (String _iter663 : struct.group_names)
             {
-              oprot.writeString(_iter655);
+              oprot.writeString(_iter663);
             }
             oprot.writeListEnd();
           }
@@ -58607,9 +58684,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter656 : struct.part_vals)
+            for (String _iter664 : struct.part_vals)
             {
-              oprot.writeString(_iter656);
+              oprot.writeString(_iter664);
             }
           }
         }
@@ -58619,9 +58696,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetGroup_names()) {
           {
             oprot.writeI32(struct.group_names.size());
-            for (String _iter657 : struct.group_names)
+            for (String _iter665 : struct.group_names)
             {
-              oprot.writeString(_iter657);
+              oprot.writeString(_iter665);
             }
           }
         }
@@ -58641,13 +58718,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list658 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list658.size);
-            for (int _i659 = 0; _i659 < _list658.size; ++_i659)
+            org.apache.thrift.protocol.TList _list666 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list666.size);
+            for (int _i667 = 0; _i667 < _list666.size; ++_i667)
             {
-              String _elem660; // required
-              _elem660 = iprot.readString();
-              struct.part_vals.add(_elem660);
+              String _elem668; // required
+              _elem668 = iprot.readString();
+              struct.part_vals.add(_elem668);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -58658,13 +58735,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(4)) {
           {
-            org.apache.thrift.protocol.TList _list661 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.group_names = new ArrayList<String>(_list661.size);
-            for (int _i662 = 0; _i662 < _list661.size; ++_i662)
+            org.apache.thrift.protocol.TList _list669 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.group_names = new ArrayList<String>(_list669.size);
+            for (int _i670 = 0; _i670 < _list669.size; ++_i670)
             {
-              String _elem663; // required
-              _elem663 = iprot.readString();
-              struct.group_names.add(_elem663);
+              String _elem671; // required
+              _elem671 = iprot.readString();
+              struct.group_names.add(_elem671);
             }
           }
           struct.setGroup_namesIsSet(true);
@@ -61433,14 +61510,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list664 = iprot.readListBegin();
-                  struct.success = new ArrayList<Partition>(_list664.size);
-                  for (int _i665 = 0; _i665 < _list664.size; ++_i665)
+                  org.apache.thrift.protocol.TList _list672 = iprot.readListBegin();
+                  struct.success = new ArrayList<Partition>(_list672.size);
+                  for (int _i673 = 0; _i673 < _list672.size; ++_i673)
                   {
-                    Partition _elem666; // required
-                    _elem666 = new Partition();
-                    _elem666.read(iprot);
-                    struct.success.add(_elem666);
+                    Partition _elem674; // required
+                    _elem674 = new Partition();
+                    _elem674.read(iprot);
+                    struct.success.add(_elem674);
                   }
                   iprot.readListEnd();
                 }
@@ -61484,9 +61561,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 _iter667 : struct.success)
+            for (Partition _iter675 : struct.success)
             {
-              _iter667.write(oprot);
+              _iter675.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -61533,9 +61610,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Partition _iter668 : struct.success)
+            for (Partition _iter676 : struct.success)
             {
-              _iter668.write(oprot);
+              _iter676.write(oprot);
             }
           }
         }
@@ -61553,14 +61630,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list669 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<Partition>(_list669.size);
-            for (int _i670 = 0; _i670 < _list669.size; ++_i670)
+            org.apache.thrift.protocol.TList _list677 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<Partition>(_list677.size);
+            for (int _i678 = 0; _i678 < _list677.size; ++_i678)
             {
-              Partition _elem671; // required
-              _elem671 = new Partition();
-              _elem671.read(iprot);
-              struct.success.add(_elem671);
+              Partition _elem679; // required
+              _elem679 = new Partition();
+              _elem679.read(iprot);
+              struct.success.add(_elem679);
             }
           }
           struct.setSuccessIsSet(true);
@@ -62253,13 +62330,13 @@ public class ThriftHiveMetastore {
             case 5: // GROUP_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list672 = iprot.readListBegin();
-                  struct.group_names = new ArrayList<String>(_list672.size);
-                  for (int _i673 = 0; _i673 < _list672.size; ++_i673)
+                  org.apache.thrift.protocol.TList _list680 = iprot.readListBegin();
+                  struct.group_names = new ArrayList<String>(_list680.size);
+                  for (int _i681 = 0; _i681 < _list680.size; ++_i681)
                   {
-                    String _elem674; // required
-                    _elem674 = iprot.readString();
-                    struct.group_names.add(_elem674);
+                    String _elem682; // required
+                    _elem682 = iprot.readString();
+                    struct.group_names.add(_elem682);
                   }
                   iprot.readListEnd();
                 }
@@ -62303,9 +62380,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 _iter675 : struct.group_names)
+            for (String _iter683 : struct.group_names)
             {
-              oprot.writeString(_iter675);
+              oprot.writeString(_iter683);
             }
             oprot.writeListEnd();
           }
@@ -62360,9 +62437,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetGroup_names()) {
           {
             oprot.writeI32(struct.group_names.size());
-            for (String _iter676 : struct.group_names)
+            for (String _iter684 : struct.group_names)
             {
-              oprot.writeString(_iter676);
+              oprot.writeString(_iter684);
             }
           }
         }
@@ -62390,13 +62467,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(4)) {
           {
-            org.apache.thrift.protocol.TList _list677 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.group_names = new ArrayList<String>(_list677.size);
-            for (int _i678 = 0; _i678 < _list677.size; ++_i678)
+            org.apache.thrift.protocol.TList _list685 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.group_names = new ArrayList<String>(_list685.size);
+            for (int _i686 = 0; _i686 < _list685.size; ++_i686)
             {
-              String _elem679; // required
-              _elem679 = iprot.readString();
-              struct.group_names.add(_elem679);
+              String _elem687; // required
+              _elem687 = iprot.readString();
+              struct.group_names.add(_elem687);
             }
           }
           struct.setGroup_namesIsSet(true);
@@ -62883,14 +62960,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list680 = iprot.readListBegin();
-                  struct.success = new ArrayList<Partition>(_list680.size);
-                  for (int _i681 = 0; _i681 < _list680.size; ++_i681)
+                  org.apache.thrift.protocol.TList _list688 = iprot.readListBegin();
+                  struct.success = new ArrayList<Partition>(_list688.size);
+                  for (int _i689 = 0; _i689 < _list688.size; ++_i689)
                   {
-                    Partition _elem682; // required
-                    _elem682 = new Partition();
-                    _elem682.read(iprot);
-                    struct.success.add(_elem682);
+                    Partition _elem690; // required
+                    _elem690 = new Partition();
+                    _elem690.read(iprot);
+                    struct.success.add(_elem690);
                   }
                   iprot.readListEnd();
                 }
@@ -62934,9 +63011,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 _iter683 : struct.success)
+            for (Partition _iter691 : struct.success)
             {
-              _iter683.write(oprot);
+              _iter691.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -62983,9 +63060,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Partition _iter684 : struct.success)
+            for (Partition _iter692 : struct.success)
             {
-              _iter684.write(oprot);
+              _iter692.write(oprot);
             }
           }
         }
@@ -63003,14 +63080,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list685 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<Partition>(_list685.size);
-            for (int _i686 = 0; _i686 < _list685.size; ++_i686)
+            org.apache.thrift.protocol.TList _list693 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<Partition>(_list693.size);
+            for (int _i694 = 0; _i694 < _list693.size; ++_i694)
             {
-              Partition _elem687; // required
-              _elem687 = new Partition();
-              _elem687.read(iprot);
-              struct.success.add(_elem687);
+              Partition _elem695; // required
+              _elem695 = new Partition();
+              _elem695.read(iprot);
+              struct.success.add(_elem695);
             }
           }
           struct.setSuccessIsSet(true);
@@ -64073,14 +64150,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list688 = iprot.readListBegin();
-                  struct.success = new ArrayList<PartitionSpec>(_list688.size);
-                  for (int _i689 = 0; _i689 < _list688.size; ++_i689)
+                  org.apache.thrift.protocol.TList _list696 = iprot.readListBegin();
+                  struct.success = new ArrayList<PartitionSpec>(_list696.size);
+                  for (int _i697 = 0; _i697 < _list696.size; ++_i697)
                   {
-                    PartitionSpec _elem690; // required
-                    _elem690 = new PartitionSpec();
-                    _elem690.read(iprot);
-                    struct.success.add(_elem690);
+                    PartitionSpec _elem698; // required
+                    _elem698 = new PartitionSpec();
+                    _elem698.read(iprot);
+                    struct.success.add(_elem698);
                   }
                   iprot.readListEnd();
                 }
@@ -64124,9 +64201,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 (PartitionSpec _iter691 : struct.success)
+            for (PartitionSpec _iter699 : struct.success)
             {
-              _iter691.write(oprot);
+              _iter699.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -64173,9 +64250,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (PartitionSpec _iter692 : struct.success)
+            for (PartitionSpec _iter700 : struct.success)
             {
-              _iter692.write(oprot);
+              _iter700.write(oprot);
             }
           }
         }
@@ -64193,14 +64270,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list693 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
-            struct.success = new ArrayList<PartitionSpec>(_list693.size);
-            for (int _i694 = 0; _i694 < _list693.size; ++_i694)
+            org.apache.thrift.protocol.TList _list701 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32());
+            struct.success = new ArrayList<PartitionSpec>(_list701.size);
+            for (int _i702 = 0; _i702 < _list701.size; ++_i702)
             {
-              PartitionSpec _elem695; // required
-              _elem695 = new PartitionSpec();
-              _elem695.read(iprot);
-              struct.success.add(_elem695);
+              PartitionSpec _elem703; // required
+              _elem703 = new PartitionSpec();
+              _elem703.read(iprot);
+              struct.success.add(_elem703);
             }
           }
           struct.setSuccessIsSet(true);
@@ -65182,13 +65259,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list696 = iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list696.size);
-                  for (int _i697 = 0; _i697 < _list696.size; ++_i697)
+                  org.apache.thrift.protocol.TList _list704 = iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list704.size);
+                  for (int _i705 = 0; _i705 < _list704.size; ++_i705)
                   {
-                    String _elem698; // required
-                    _elem698 = iprot.readString();
-                    struct.success.add(_elem698);
+                    String _elem706; // required
+                    _elem706 = iprot.readString();
+                    struct.success.add(_elem706);
                   }
                   iprot.readListEnd();
                 }
@@ -65223,9 +65300,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 _iter699 : struct.success)
+            for (String _iter707 : struct.success)
             {
-              oprot.writeString(_iter699);
+              oprot.writeString(_iter707);
             }
             oprot.writeListEnd();
           }
@@ -65264,9 +65341,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter700 : struct.success)
+            for (String _iter708 : struct.success)
             {
-              oprot.writeString(_iter700);
+              oprot.writeString(_iter708);
             }
           }
         }
@@ -65281,13 +65358,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list701 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.success = new ArrayList<String>(_list701.size);
-            for (int _i702 = 0; _i702 < _list701.size; ++_i702)
+            org.apache.thrift.protocol.TList _list709 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.success = new ArrayList<String>(_list709.size);
+            for (int _i710 = 0; _i710 < _list709.size; ++_i710)
             {
-              String _elem703; // required
-              _elem703 = iprot.readString();
-              struct.success.add(_elem703);
+              String _elem711; // required
+              _elem711 = iprot.readString();
+              struct.success.add(_elem711);
             }
           }
           struct.setSuccessIsSet(true);
@@ -65878,13 +65955,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list704 = iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list704.size);
-                  for (int _i705 = 0; _i705 < _list704.size; ++_i705)
+                  org.apache.thrift.protocol.TList _list712 = iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list712.size);
+                  for (int _i713 = 0; _i713 < _list712.size; ++_i713)
                   {
-                    String _elem706; // required
-                    _elem706 = iprot.readString();
-                    struct.part_vals.add(_elem706);
+                    String _elem714; // required
+                    _elem714 = iprot.readString();
+                    struct.part_vals.add(_elem714);
                   }
                   iprot.readListEnd();
                 }
@@ -65928,9 +66005,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 _iter707 : struct.part_vals)
+            for (String _iter715 : struct.part_vals)
             {
-              oprot.writeString(_iter707);
+              oprot.writeString(_iter715);
             }
             oprot.writeListEnd();
           }
@@ -65979,9 +66056,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter708 : struct.part_vals)
+            for (String _iter716 : struct.part_vals)
             {
-              oprot.writeString(_iter708);
+              oprot.writeString(_iter716);
             }
           }
         }
@@ -66004,13 +66081,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list709 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list709.size);
-            for (int _i710 = 0; _i710 < _list709.size; ++_i710)
+            org.apache.thrift.protocol.TList _list717 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list717.size);
+            for (int _i718 = 0; _i718 < _list717.size; ++_i718)
             {
-              String _elem711; // required
-              _elem711 = iprot.readString();
-              struct.part_vals.add(_elem711);

[... 2359 lines stripped ...]