http://git-wip-us.apache.org/repos/asf/hive/blob/cb648903/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java
----------------------------------------------------------------------
diff --git 
a/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java
 
b/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java
index cc99079..cdbae95 100644
--- 
a/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java
+++ 
b/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java
@@ -34,7 +34,7 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 @SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"})
-@Generated(value = "Autogenerated by Thrift Compiler (0.9.2)", date = 
"2015-7-14")
+@Generated(value = "Autogenerated by Thrift Compiler (0.9.2)", date = 
"2015-8-3")
 public class ThriftHiveMetastore {
 
   /**
@@ -218,6 +218,8 @@ public class ThriftHiveMetastore {
 
     public Function get_function(String dbName, String funcName) throws 
MetaException, NoSuchObjectException, org.apache.thrift.TException;
 
+    public GetAllFunctionsResponse get_all_functions() throws MetaException, 
org.apache.thrift.TException;
+
     public boolean create_role(Role role) throws MetaException, 
org.apache.thrift.TException;
 
     public boolean drop_role(String role_name) throws MetaException, 
org.apache.thrift.TException;
@@ -468,6 +470,8 @@ public class ThriftHiveMetastore {
 
     public void get_function(String dbName, String funcName, 
org.apache.thrift.async.AsyncMethodCallback resultHandler) throws 
org.apache.thrift.TException;
 
+    public void get_all_functions(org.apache.thrift.async.AsyncMethodCallback 
resultHandler) throws org.apache.thrift.TException;
+
     public void create_role(Role role, 
org.apache.thrift.async.AsyncMethodCallback resultHandler) throws 
org.apache.thrift.TException;
 
     public void drop_role(String role_name, 
org.apache.thrift.async.AsyncMethodCallback resultHandler) throws 
org.apache.thrift.TException;
@@ -3297,6 +3301,31 @@ public class ThriftHiveMetastore {
       throw new 
org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT,
 "get_function failed: unknown result");
     }
 
+    public GetAllFunctionsResponse get_all_functions() throws MetaException, 
org.apache.thrift.TException
+    {
+      send_get_all_functions();
+      return recv_get_all_functions();
+    }
+
+    public void send_get_all_functions() throws org.apache.thrift.TException
+    {
+      get_all_functions_args args = new get_all_functions_args();
+      sendBase("get_all_functions", args);
+    }
+
+    public GetAllFunctionsResponse recv_get_all_functions() throws 
MetaException, org.apache.thrift.TException
+    {
+      get_all_functions_result result = new get_all_functions_result();
+      receiveBase(result, "get_all_functions");
+      if (result.isSetSuccess()) {
+        return result.success;
+      }
+      if (result.o1 != null) {
+        throw result.o1;
+      }
+      throw new 
org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.MISSING_RESULT,
 "get_all_functions failed: unknown result");
+    }
+
     public boolean create_role(Role role) throws MetaException, 
org.apache.thrift.TException
     {
       send_create_role(role);
@@ -7444,6 +7473,35 @@ public class ThriftHiveMetastore {
       }
     }
 
+    public void get_all_functions(org.apache.thrift.async.AsyncMethodCallback 
resultHandler) throws org.apache.thrift.TException {
+      checkReady();
+      get_all_functions_call method_call = new 
get_all_functions_call(resultHandler, this, ___protocolFactory, ___transport);
+      this.___currentMethod = method_call;
+      ___manager.call(method_call);
+    }
+
+    public static class get_all_functions_call extends 
org.apache.thrift.async.TAsyncMethodCall {
+      public 
get_all_functions_call(org.apache.thrift.async.AsyncMethodCallback 
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);
+      }
+
+      public void write_args(org.apache.thrift.protocol.TProtocol prot) throws 
org.apache.thrift.TException {
+        prot.writeMessageBegin(new 
org.apache.thrift.protocol.TMessage("get_all_functions", 
org.apache.thrift.protocol.TMessageType.CALL, 0));
+        get_all_functions_args args = new get_all_functions_args();
+        args.write(prot);
+        prot.writeMessageEnd();
+      }
+
+      public GetAllFunctionsResponse getResult() throws 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_all_functions();
+      }
+    }
+
     public void create_role(Role role, 
org.apache.thrift.async.AsyncMethodCallback resultHandler) throws 
org.apache.thrift.TException {
       checkReady();
       create_role_call method_call = new create_role_call(role, resultHandler, 
this, ___protocolFactory, ___transport);
@@ -8695,6 +8753,7 @@ public class ThriftHiveMetastore {
       processMap.put("alter_function", new alter_function());
       processMap.put("get_functions", new get_functions());
       processMap.put("get_function", new get_function());
+      processMap.put("get_all_functions", new get_all_functions());
       processMap.put("create_role", new create_role());
       processMap.put("drop_role", new drop_role());
       processMap.put("get_role_names", new get_role_names());
@@ -11107,6 +11166,30 @@ public class ThriftHiveMetastore {
       }
     }
 
+    public static class get_all_functions<I extends Iface> extends 
org.apache.thrift.ProcessFunction<I, get_all_functions_args> {
+      public get_all_functions() {
+        super("get_all_functions");
+      }
+
+      public get_all_functions_args getEmptyArgsInstance() {
+        return new get_all_functions_args();
+      }
+
+      protected boolean isOneway() {
+        return false;
+      }
+
+      public get_all_functions_result getResult(I iface, 
get_all_functions_args args) throws org.apache.thrift.TException {
+        get_all_functions_result result = new get_all_functions_result();
+        try {
+          result.success = iface.get_all_functions();
+        } catch (MetaException o1) {
+          result.o1 = o1;
+        }
+        return result;
+      }
+    }
+
     public static class create_role<I extends Iface> extends 
org.apache.thrift.ProcessFunction<I, create_role_args> {
       public create_role() {
         super("create_role");
@@ -12031,6 +12114,7 @@ public class ThriftHiveMetastore {
       processMap.put("alter_function", new alter_function());
       processMap.put("get_functions", new get_functions());
       processMap.put("get_function", new get_function());
+      processMap.put("get_all_functions", new get_all_functions());
       processMap.put("create_role", new create_role());
       processMap.put("drop_role", new drop_role());
       processMap.put("get_role_names", new get_role_names());
@@ -17696,6 +17780,63 @@ public class ThriftHiveMetastore {
       }
     }
 
+    public static class get_all_functions<I extends AsyncIface> extends 
org.apache.thrift.AsyncProcessFunction<I, get_all_functions_args, 
GetAllFunctionsResponse> {
+      public get_all_functions() {
+        super("get_all_functions");
+      }
+
+      public get_all_functions_args getEmptyArgsInstance() {
+        return new get_all_functions_args();
+      }
+
+      public AsyncMethodCallback<GetAllFunctionsResponse> 
getResultHandler(final AsyncFrameBuffer fb, final int seqid) {
+        final org.apache.thrift.AsyncProcessFunction fcall = this;
+        return new AsyncMethodCallback<GetAllFunctionsResponse>() { 
+          public void onComplete(GetAllFunctionsResponse o) {
+            get_all_functions_result result = new get_all_functions_result();
+            result.success = o;
+            try {
+              fcall.sendResponse(fb,result, 
org.apache.thrift.protocol.TMessageType.REPLY,seqid);
+              return;
+            } catch (Exception e) {
+              LOGGER.error("Exception writing to internal frame buffer", e);
+            }
+            fb.close();
+          }
+          public void onError(Exception e) {
+            byte msgType = org.apache.thrift.protocol.TMessageType.REPLY;
+            org.apache.thrift.TBase msg;
+            get_all_functions_result result = new get_all_functions_result();
+            if (e instanceof MetaException) {
+                        result.o1 = (MetaException) e;
+                        result.setO1IsSet(true);
+                        msg = result;
+            }
+             else 
+            {
+              msgType = org.apache.thrift.protocol.TMessageType.EXCEPTION;
+              msg = (org.apache.thrift.TBase)new 
org.apache.thrift.TApplicationException(org.apache.thrift.TApplicationException.INTERNAL_ERROR,
 e.getMessage());
+            }
+            try {
+              fcall.sendResponse(fb,msg,msgType,seqid);
+              return;
+            } catch (Exception ex) {
+              LOGGER.error("Exception writing to internal frame buffer", ex);
+            }
+            fb.close();
+          }
+        };
+      }
+
+      protected boolean isOneway() {
+        return false;
+      }
+
+      public void start(I iface, get_all_functions_args args, 
org.apache.thrift.async.AsyncMethodCallback<GetAllFunctionsResponse> 
resultHandler) throws TException {
+        iface.get_all_functions(resultHandler);
+      }
+    }
+
     public static class create_role<I extends AsyncIface> extends 
org.apache.thrift.AsyncProcessFunction<I, create_role_args, Boolean> {
       public create_role() {
         super("create_role");
@@ -25066,13 +25207,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list524 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list524.size);
-                  String _elem525;
-                  for (int _i526 = 0; _i526 < _list524.size; ++_i526)
+                  org.apache.thrift.protocol.TList _list532 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list532.size);
+                  String _elem533;
+                  for (int _i534 = 0; _i534 < _list532.size; ++_i534)
                   {
-                    _elem525 = iprot.readString();
-                    struct.success.add(_elem525);
+                    _elem533 = iprot.readString();
+                    struct.success.add(_elem533);
                   }
                   iprot.readListEnd();
                 }
@@ -25107,9 +25248,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 _iter527 : struct.success)
+            for (String _iter535 : struct.success)
             {
-              oprot.writeString(_iter527);
+              oprot.writeString(_iter535);
             }
             oprot.writeListEnd();
           }
@@ -25148,9 +25289,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter528 : struct.success)
+            for (String _iter536 : struct.success)
             {
-              oprot.writeString(_iter528);
+              oprot.writeString(_iter536);
             }
           }
         }
@@ -25165,13 +25306,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            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);
-            String _elem530;
-            for (int _i531 = 0; _i531 < _list529.size; ++_i531)
+            org.apache.thrift.protocol.TList _list537 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.success = new ArrayList<String>(_list537.size);
+            String _elem538;
+            for (int _i539 = 0; _i539 < _list537.size; ++_i539)
             {
-              _elem530 = iprot.readString();
-              struct.success.add(_elem530);
+              _elem538 = iprot.readString();
+              struct.success.add(_elem538);
             }
           }
           struct.setSuccessIsSet(true);
@@ -25825,13 +25966,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list532 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list532.size);
-                  String _elem533;
-                  for (int _i534 = 0; _i534 < _list532.size; ++_i534)
+                  org.apache.thrift.protocol.TList _list540 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list540.size);
+                  String _elem541;
+                  for (int _i542 = 0; _i542 < _list540.size; ++_i542)
                   {
-                    _elem533 = iprot.readString();
-                    struct.success.add(_elem533);
+                    _elem541 = iprot.readString();
+                    struct.success.add(_elem541);
                   }
                   iprot.readListEnd();
                 }
@@ -25866,9 +26007,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 _iter535 : struct.success)
+            for (String _iter543 : struct.success)
             {
-              oprot.writeString(_iter535);
+              oprot.writeString(_iter543);
             }
             oprot.writeListEnd();
           }
@@ -25907,9 +26048,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter536 : struct.success)
+            for (String _iter544 : struct.success)
             {
-              oprot.writeString(_iter536);
+              oprot.writeString(_iter544);
             }
           }
         }
@@ -25924,13 +26065,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list537 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.success = new ArrayList<String>(_list537.size);
-            String _elem538;
-            for (int _i539 = 0; _i539 < _list537.size; ++_i539)
+            org.apache.thrift.protocol.TList _list545 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.success = new ArrayList<String>(_list545.size);
+            String _elem546;
+            for (int _i547 = 0; _i547 < _list545.size; ++_i547)
             {
-              _elem538 = iprot.readString();
-              struct.success.add(_elem538);
+              _elem546 = iprot.readString();
+              struct.success.add(_elem546);
             }
           }
           struct.setSuccessIsSet(true);
@@ -30537,16 +30678,16 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.MAP) {
                 {
-                  org.apache.thrift.protocol.TMap _map540 = 
iprot.readMapBegin();
-                  struct.success = new HashMap<String,Type>(2*_map540.size);
-                  String _key541;
-                  Type _val542;
-                  for (int _i543 = 0; _i543 < _map540.size; ++_i543)
+                  org.apache.thrift.protocol.TMap _map548 = 
iprot.readMapBegin();
+                  struct.success = new HashMap<String,Type>(2*_map548.size);
+                  String _key549;
+                  Type _val550;
+                  for (int _i551 = 0; _i551 < _map548.size; ++_i551)
                   {
-                    _key541 = iprot.readString();
-                    _val542 = new Type();
-                    _val542.read(iprot);
-                    struct.success.put(_key541, _val542);
+                    _key549 = iprot.readString();
+                    _val550 = new Type();
+                    _val550.read(iprot);
+                    struct.success.put(_key549, _val550);
                   }
                   iprot.readMapEnd();
                 }
@@ -30581,10 +30722,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> _iter544 : struct.success.entrySet())
+            for (Map.Entry<String, Type> _iter552 : struct.success.entrySet())
             {
-              oprot.writeString(_iter544.getKey());
-              _iter544.getValue().write(oprot);
+              oprot.writeString(_iter552.getKey());
+              _iter552.getValue().write(oprot);
             }
             oprot.writeMapEnd();
           }
@@ -30623,10 +30764,10 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Map.Entry<String, Type> _iter545 : struct.success.entrySet())
+            for (Map.Entry<String, Type> _iter553 : struct.success.entrySet())
             {
-              oprot.writeString(_iter545.getKey());
-              _iter545.getValue().write(oprot);
+              oprot.writeString(_iter553.getKey());
+              _iter553.getValue().write(oprot);
             }
           }
         }
@@ -30641,16 +30782,16 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TMap _map546 = 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*_map546.size);
-            String _key547;
-            Type _val548;
-            for (int _i549 = 0; _i549 < _map546.size; ++_i549)
+            org.apache.thrift.protocol.TMap _map554 = 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*_map554.size);
+            String _key555;
+            Type _val556;
+            for (int _i557 = 0; _i557 < _map554.size; ++_i557)
             {
-              _key547 = iprot.readString();
-              _val548 = new Type();
-              _val548.read(iprot);
-              struct.success.put(_key547, _val548);
+              _key555 = iprot.readString();
+              _val556 = new Type();
+              _val556.read(iprot);
+              struct.success.put(_key555, _val556);
             }
           }
           struct.setSuccessIsSet(true);
@@ -31685,14 +31826,14 @@ 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<FieldSchema>(_list550.size);
-                  FieldSchema _elem551;
-                  for (int _i552 = 0; _i552 < _list550.size; ++_i552)
+                  org.apache.thrift.protocol.TList _list558 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list558.size);
+                  FieldSchema _elem559;
+                  for (int _i560 = 0; _i560 < _list558.size; ++_i560)
                   {
-                    _elem551 = new FieldSchema();
-                    _elem551.read(iprot);
-                    struct.success.add(_elem551);
+                    _elem559 = new FieldSchema();
+                    _elem559.read(iprot);
+                    struct.success.add(_elem559);
                   }
                   iprot.readListEnd();
                 }
@@ -31745,9 +31886,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 _iter553 : struct.success)
+            for (FieldSchema _iter561 : struct.success)
             {
-              _iter553.write(oprot);
+              _iter561.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -31802,9 +31943,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter554 : struct.success)
+            for (FieldSchema _iter562 : struct.success)
             {
-              _iter554.write(oprot);
+              _iter562.write(oprot);
             }
           }
         }
@@ -31825,14 +31966,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list555 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
-            struct.success = new ArrayList<FieldSchema>(_list555.size);
-            FieldSchema _elem556;
-            for (int _i557 = 0; _i557 < _list555.size; ++_i557)
+            org.apache.thrift.protocol.TList _list563 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list563.size);
+            FieldSchema _elem564;
+            for (int _i565 = 0; _i565 < _list563.size; ++_i565)
             {
-              _elem556 = new FieldSchema();
-              _elem556.read(iprot);
-              struct.success.add(_elem556);
+              _elem564 = new FieldSchema();
+              _elem564.read(iprot);
+              struct.success.add(_elem564);
             }
           }
           struct.setSuccessIsSet(true);
@@ -32986,14 +33127,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list558 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<FieldSchema>(_list558.size);
-                  FieldSchema _elem559;
-                  for (int _i560 = 0; _i560 < _list558.size; ++_i560)
+                  org.apache.thrift.protocol.TList _list566 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list566.size);
+                  FieldSchema _elem567;
+                  for (int _i568 = 0; _i568 < _list566.size; ++_i568)
                   {
-                    _elem559 = new FieldSchema();
-                    _elem559.read(iprot);
-                    struct.success.add(_elem559);
+                    _elem567 = new FieldSchema();
+                    _elem567.read(iprot);
+                    struct.success.add(_elem567);
                   }
                   iprot.readListEnd();
                 }
@@ -33046,9 +33187,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 _iter561 : struct.success)
+            for (FieldSchema _iter569 : struct.success)
             {
-              _iter561.write(oprot);
+              _iter569.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -33103,9 +33244,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter562 : struct.success)
+            for (FieldSchema _iter570 : struct.success)
             {
-              _iter562.write(oprot);
+              _iter570.write(oprot);
             }
           }
         }
@@ -33126,14 +33267,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list563 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
-            struct.success = new ArrayList<FieldSchema>(_list563.size);
-            FieldSchema _elem564;
-            for (int _i565 = 0; _i565 < _list563.size; ++_i565)
+            org.apache.thrift.protocol.TList _list571 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list571.size);
+            FieldSchema _elem572;
+            for (int _i573 = 0; _i573 < _list571.size; ++_i573)
             {
-              _elem564 = new FieldSchema();
-              _elem564.read(iprot);
-              struct.success.add(_elem564);
+              _elem572 = new FieldSchema();
+              _elem572.read(iprot);
+              struct.success.add(_elem572);
             }
           }
           struct.setSuccessIsSet(true);
@@ -34178,14 +34319,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<FieldSchema>(_list566.size);
-                  FieldSchema _elem567;
-                  for (int _i568 = 0; _i568 < _list566.size; ++_i568)
+                  org.apache.thrift.protocol.TList _list574 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list574.size);
+                  FieldSchema _elem575;
+                  for (int _i576 = 0; _i576 < _list574.size; ++_i576)
                   {
-                    _elem567 = new FieldSchema();
-                    _elem567.read(iprot);
-                    struct.success.add(_elem567);
+                    _elem575 = new FieldSchema();
+                    _elem575.read(iprot);
+                    struct.success.add(_elem575);
                   }
                   iprot.readListEnd();
                 }
@@ -34238,9 +34379,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 _iter569 : struct.success)
+            for (FieldSchema _iter577 : struct.success)
             {
-              _iter569.write(oprot);
+              _iter577.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -34295,9 +34436,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter570 : struct.success)
+            for (FieldSchema _iter578 : struct.success)
             {
-              _iter570.write(oprot);
+              _iter578.write(oprot);
             }
           }
         }
@@ -34318,14 +34459,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<FieldSchema>(_list571.size);
-            FieldSchema _elem572;
-            for (int _i573 = 0; _i573 < _list571.size; ++_i573)
+            org.apache.thrift.protocol.TList _list579 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list579.size);
+            FieldSchema _elem580;
+            for (int _i581 = 0; _i581 < _list579.size; ++_i581)
             {
-              _elem572 = new FieldSchema();
-              _elem572.read(iprot);
-              struct.success.add(_elem572);
+              _elem580 = new FieldSchema();
+              _elem580.read(iprot);
+              struct.success.add(_elem580);
             }
           }
           struct.setSuccessIsSet(true);
@@ -35479,14 +35620,14 @@ 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<FieldSchema>(_list574.size);
-                  FieldSchema _elem575;
-                  for (int _i576 = 0; _i576 < _list574.size; ++_i576)
+                  org.apache.thrift.protocol.TList _list582 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<FieldSchema>(_list582.size);
+                  FieldSchema _elem583;
+                  for (int _i584 = 0; _i584 < _list582.size; ++_i584)
                   {
-                    _elem575 = new FieldSchema();
-                    _elem575.read(iprot);
-                    struct.success.add(_elem575);
+                    _elem583 = new FieldSchema();
+                    _elem583.read(iprot);
+                    struct.success.add(_elem583);
                   }
                   iprot.readListEnd();
                 }
@@ -35539,9 +35680,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 _iter577 : struct.success)
+            for (FieldSchema _iter585 : struct.success)
             {
-              _iter577.write(oprot);
+              _iter585.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -35596,9 +35737,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (FieldSchema _iter578 : struct.success)
+            for (FieldSchema _iter586 : struct.success)
             {
-              _iter578.write(oprot);
+              _iter586.write(oprot);
             }
           }
         }
@@ -35619,14 +35760,14 @@ 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.STRUCT, 
iprot.readI32());
-            struct.success = new ArrayList<FieldSchema>(_list579.size);
-            FieldSchema _elem580;
-            for (int _i581 = 0; _i581 < _list579.size; ++_i581)
+            org.apache.thrift.protocol.TList _list587 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.success = new ArrayList<FieldSchema>(_list587.size);
+            FieldSchema _elem588;
+            for (int _i589 = 0; _i589 < _list587.size; ++_i589)
             {
-              _elem580 = new FieldSchema();
-              _elem580.read(iprot);
-              struct.success.add(_elem580);
+              _elem588 = new FieldSchema();
+              _elem588.read(iprot);
+              struct.success.add(_elem588);
             }
           }
           struct.setSuccessIsSet(true);
@@ -40866,13 +41007,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list582 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list582.size);
-                  String _elem583;
-                  for (int _i584 = 0; _i584 < _list582.size; ++_i584)
+                  org.apache.thrift.protocol.TList _list590 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list590.size);
+                  String _elem591;
+                  for (int _i592 = 0; _i592 < _list590.size; ++_i592)
                   {
-                    _elem583 = iprot.readString();
-                    struct.success.add(_elem583);
+                    _elem591 = iprot.readString();
+                    struct.success.add(_elem591);
                   }
                   iprot.readListEnd();
                 }
@@ -40907,9 +41048,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 _iter585 : struct.success)
+            for (String _iter593 : struct.success)
             {
-              oprot.writeString(_iter585);
+              oprot.writeString(_iter593);
             }
             oprot.writeListEnd();
           }
@@ -40948,9 +41089,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter586 : struct.success)
+            for (String _iter594 : struct.success)
             {
-              oprot.writeString(_iter586);
+              oprot.writeString(_iter594);
             }
           }
         }
@@ -40965,13 +41106,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            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);
-            String _elem588;
-            for (int _i589 = 0; _i589 < _list587.size; ++_i589)
+            org.apache.thrift.protocol.TList _list595 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.success = new ArrayList<String>(_list595.size);
+            String _elem596;
+            for (int _i597 = 0; _i597 < _list595.size; ++_i597)
             {
-              _elem588 = iprot.readString();
-              struct.success.add(_elem588);
+              _elem596 = iprot.readString();
+              struct.success.add(_elem596);
             }
           }
           struct.setSuccessIsSet(true);
@@ -41737,13 +41878,13 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list590 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<String>(_list590.size);
-                  String _elem591;
-                  for (int _i592 = 0; _i592 < _list590.size; ++_i592)
+                  org.apache.thrift.protocol.TList _list598 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list598.size);
+                  String _elem599;
+                  for (int _i600 = 0; _i600 < _list598.size; ++_i600)
                   {
-                    _elem591 = iprot.readString();
-                    struct.success.add(_elem591);
+                    _elem599 = iprot.readString();
+                    struct.success.add(_elem599);
                   }
                   iprot.readListEnd();
                 }
@@ -41778,9 +41919,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 _iter593 : struct.success)
+            for (String _iter601 : struct.success)
             {
-              oprot.writeString(_iter593);
+              oprot.writeString(_iter601);
             }
             oprot.writeListEnd();
           }
@@ -41819,9 +41960,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter594 : struct.success)
+            for (String _iter602 : struct.success)
             {
-              oprot.writeString(_iter594);
+              oprot.writeString(_iter602);
             }
           }
         }
@@ -41836,13 +41977,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(2);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list595 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.success = new ArrayList<String>(_list595.size);
-            String _elem596;
-            for (int _i597 = 0; _i597 < _list595.size; ++_i597)
+            org.apache.thrift.protocol.TList _list603 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.success = new ArrayList<String>(_list603.size);
+            String _elem604;
+            for (int _i605 = 0; _i605 < _list603.size; ++_i605)
             {
-              _elem596 = iprot.readString();
-              struct.success.add(_elem596);
+              _elem604 = iprot.readString();
+              struct.success.add(_elem604);
             }
           }
           struct.setSuccessIsSet(true);
@@ -43295,13 +43436,13 @@ public class ThriftHiveMetastore {
             case 2: // TBL_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list598 = 
iprot.readListBegin();
-                  struct.tbl_names = new ArrayList<String>(_list598.size);
-                  String _elem599;
-                  for (int _i600 = 0; _i600 < _list598.size; ++_i600)
+                  org.apache.thrift.protocol.TList _list606 = 
iprot.readListBegin();
+                  struct.tbl_names = new ArrayList<String>(_list606.size);
+                  String _elem607;
+                  for (int _i608 = 0; _i608 < _list606.size; ++_i608)
                   {
-                    _elem599 = iprot.readString();
-                    struct.tbl_names.add(_elem599);
+                    _elem607 = iprot.readString();
+                    struct.tbl_names.add(_elem607);
                   }
                   iprot.readListEnd();
                 }
@@ -43332,9 +43473,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 _iter601 : struct.tbl_names)
+            for (String _iter609 : struct.tbl_names)
             {
-              oprot.writeString(_iter601);
+              oprot.writeString(_iter609);
             }
             oprot.writeListEnd();
           }
@@ -43371,9 +43512,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetTbl_names()) {
           {
             oprot.writeI32(struct.tbl_names.size());
-            for (String _iter602 : struct.tbl_names)
+            for (String _iter610 : struct.tbl_names)
             {
-              oprot.writeString(_iter602);
+              oprot.writeString(_iter610);
             }
           }
         }
@@ -43389,13 +43530,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(1)) {
           {
-            org.apache.thrift.protocol.TList _list603 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.tbl_names = new ArrayList<String>(_list603.size);
-            String _elem604;
-            for (int _i605 = 0; _i605 < _list603.size; ++_i605)
+            org.apache.thrift.protocol.TList _list611 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.tbl_names = new ArrayList<String>(_list611.size);
+            String _elem612;
+            for (int _i613 = 0; _i613 < _list611.size; ++_i613)
             {
-              _elem604 = iprot.readString();
-              struct.tbl_names.add(_elem604);
+              _elem612 = iprot.readString();
+              struct.tbl_names.add(_elem612);
             }
           }
           struct.setTbl_namesIsSet(true);
@@ -43963,14 +44104,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list606 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<Table>(_list606.size);
-                  Table _elem607;
-                  for (int _i608 = 0; _i608 < _list606.size; ++_i608)
+                  org.apache.thrift.protocol.TList _list614 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<Table>(_list614.size);
+                  Table _elem615;
+                  for (int _i616 = 0; _i616 < _list614.size; ++_i616)
                   {
-                    _elem607 = new Table();
-                    _elem607.read(iprot);
-                    struct.success.add(_elem607);
+                    _elem615 = new Table();
+                    _elem615.read(iprot);
+                    struct.success.add(_elem615);
                   }
                   iprot.readListEnd();
                 }
@@ -44023,9 +44164,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 _iter609 : struct.success)
+            for (Table _iter617 : struct.success)
             {
-              _iter609.write(oprot);
+              _iter617.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -44080,9 +44221,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Table _iter610 : struct.success)
+            for (Table _iter618 : struct.success)
             {
-              _iter610.write(oprot);
+              _iter618.write(oprot);
             }
           }
         }
@@ -44103,14 +44244,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list611 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
-            struct.success = new ArrayList<Table>(_list611.size);
-            Table _elem612;
-            for (int _i613 = 0; _i613 < _list611.size; ++_i613)
+            org.apache.thrift.protocol.TList _list619 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.success = new ArrayList<Table>(_list619.size);
+            Table _elem620;
+            for (int _i621 = 0; _i621 < _list619.size; ++_i621)
             {
-              _elem612 = new Table();
-              _elem612.read(iprot);
-              struct.success.add(_elem612);
+              _elem620 = new Table();
+              _elem620.read(iprot);
+              struct.success.add(_elem620);
             }
           }
           struct.setSuccessIsSet(true);
@@ -45256,13 +45397,13 @@ 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<String>(_list614.size);
-                  String _elem615;
-                  for (int _i616 = 0; _i616 < _list614.size; ++_i616)
+                  org.apache.thrift.protocol.TList _list622 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<String>(_list622.size);
+                  String _elem623;
+                  for (int _i624 = 0; _i624 < _list622.size; ++_i624)
                   {
-                    _elem615 = iprot.readString();
-                    struct.success.add(_elem615);
+                    _elem623 = iprot.readString();
+                    struct.success.add(_elem623);
                   }
                   iprot.readListEnd();
                 }
@@ -45315,9 +45456,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 _iter617 : struct.success)
+            for (String _iter625 : struct.success)
             {
-              oprot.writeString(_iter617);
+              oprot.writeString(_iter625);
             }
             oprot.writeListEnd();
           }
@@ -45372,9 +45513,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (String _iter618 : struct.success)
+            for (String _iter626 : struct.success)
             {
-              oprot.writeString(_iter618);
+              oprot.writeString(_iter626);
             }
           }
         }
@@ -45395,13 +45536,13 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(4);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list619 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.success = new ArrayList<String>(_list619.size);
-            String _elem620;
-            for (int _i621 = 0; _i621 < _list619.size; ++_i621)
+            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);
+            String _elem628;
+            for (int _i629 = 0; _i629 < _list627.size; ++_i629)
             {
-              _elem620 = iprot.readString();
-              struct.success.add(_elem620);
+              _elem628 = iprot.readString();
+              struct.success.add(_elem628);
             }
           }
           struct.setSuccessIsSet(true);
@@ -51260,14 +51401,14 @@ public class ThriftHiveMetastore {
             case 1: // NEW_PARTS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list622 = 
iprot.readListBegin();
-                  struct.new_parts = new ArrayList<Partition>(_list622.size);
-                  Partition _elem623;
-                  for (int _i624 = 0; _i624 < _list622.size; ++_i624)
+                  org.apache.thrift.protocol.TList _list630 = 
iprot.readListBegin();
+                  struct.new_parts = new ArrayList<Partition>(_list630.size);
+                  Partition _elem631;
+                  for (int _i632 = 0; _i632 < _list630.size; ++_i632)
                   {
-                    _elem623 = new Partition();
-                    _elem623.read(iprot);
-                    struct.new_parts.add(_elem623);
+                    _elem631 = new Partition();
+                    _elem631.read(iprot);
+                    struct.new_parts.add(_elem631);
                   }
                   iprot.readListEnd();
                 }
@@ -51293,9 +51434,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 _iter625 : struct.new_parts)
+            for (Partition _iter633 : struct.new_parts)
             {
-              _iter625.write(oprot);
+              _iter633.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -51326,9 +51467,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetNew_parts()) {
           {
             oprot.writeI32(struct.new_parts.size());
-            for (Partition _iter626 : struct.new_parts)
+            for (Partition _iter634 : struct.new_parts)
             {
-              _iter626.write(oprot);
+              _iter634.write(oprot);
             }
           }
         }
@@ -51340,14 +51481,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(1);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list627 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
-            struct.new_parts = new ArrayList<Partition>(_list627.size);
-            Partition _elem628;
-            for (int _i629 = 0; _i629 < _list627.size; ++_i629)
+            org.apache.thrift.protocol.TList _list635 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.new_parts = new ArrayList<Partition>(_list635.size);
+            Partition _elem636;
+            for (int _i637 = 0; _i637 < _list635.size; ++_i637)
             {
-              _elem628 = new Partition();
-              _elem628.read(iprot);
-              struct.new_parts.add(_elem628);
+              _elem636 = new Partition();
+              _elem636.read(iprot);
+              struct.new_parts.add(_elem636);
             }
           }
           struct.setNew_partsIsSet(true);
@@ -52348,14 +52489,14 @@ public class ThriftHiveMetastore {
             case 1: // NEW_PARTS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list630 = 
iprot.readListBegin();
-                  struct.new_parts = new 
ArrayList<PartitionSpec>(_list630.size);
-                  PartitionSpec _elem631;
-                  for (int _i632 = 0; _i632 < _list630.size; ++_i632)
+                  org.apache.thrift.protocol.TList _list638 = 
iprot.readListBegin();
+                  struct.new_parts = new 
ArrayList<PartitionSpec>(_list638.size);
+                  PartitionSpec _elem639;
+                  for (int _i640 = 0; _i640 < _list638.size; ++_i640)
                   {
-                    _elem631 = new PartitionSpec();
-                    _elem631.read(iprot);
-                    struct.new_parts.add(_elem631);
+                    _elem639 = new PartitionSpec();
+                    _elem639.read(iprot);
+                    struct.new_parts.add(_elem639);
                   }
                   iprot.readListEnd();
                 }
@@ -52381,9 +52522,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 _iter633 : struct.new_parts)
+            for (PartitionSpec _iter641 : struct.new_parts)
             {
-              _iter633.write(oprot);
+              _iter641.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -52414,9 +52555,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetNew_parts()) {
           {
             oprot.writeI32(struct.new_parts.size());
-            for (PartitionSpec _iter634 : struct.new_parts)
+            for (PartitionSpec _iter642 : struct.new_parts)
             {
-              _iter634.write(oprot);
+              _iter642.write(oprot);
             }
           }
         }
@@ -52428,14 +52569,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(1);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list635 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
-            struct.new_parts = new ArrayList<PartitionSpec>(_list635.size);
-            PartitionSpec _elem636;
-            for (int _i637 = 0; _i637 < _list635.size; ++_i637)
+            org.apache.thrift.protocol.TList _list643 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.new_parts = new ArrayList<PartitionSpec>(_list643.size);
+            PartitionSpec _elem644;
+            for (int _i645 = 0; _i645 < _list643.size; ++_i645)
             {
-              _elem636 = new PartitionSpec();
-              _elem636.read(iprot);
-              struct.new_parts.add(_elem636);
+              _elem644 = new PartitionSpec();
+              _elem644.read(iprot);
+              struct.new_parts.add(_elem644);
             }
           }
           struct.setNew_partsIsSet(true);
@@ -53611,13 +53752,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list638 = 
iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list638.size);
-                  String _elem639;
-                  for (int _i640 = 0; _i640 < _list638.size; ++_i640)
+                  org.apache.thrift.protocol.TList _list646 = 
iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list646.size);
+                  String _elem647;
+                  for (int _i648 = 0; _i648 < _list646.size; ++_i648)
                   {
-                    _elem639 = iprot.readString();
-                    struct.part_vals.add(_elem639);
+                    _elem647 = iprot.readString();
+                    struct.part_vals.add(_elem647);
                   }
                   iprot.readListEnd();
                 }
@@ -53653,9 +53794,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 _iter641 : struct.part_vals)
+            for (String _iter649 : struct.part_vals)
             {
-              oprot.writeString(_iter641);
+              oprot.writeString(_iter649);
             }
             oprot.writeListEnd();
           }
@@ -53698,9 +53839,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter642 : struct.part_vals)
+            for (String _iter650 : struct.part_vals)
             {
-              oprot.writeString(_iter642);
+              oprot.writeString(_iter650);
             }
           }
         }
@@ -53720,13 +53861,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            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);
-            String _elem644;
-            for (int _i645 = 0; _i645 < _list643.size; ++_i645)
+            org.apache.thrift.protocol.TList _list651 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list651.size);
+            String _elem652;
+            for (int _i653 = 0; _i653 < _list651.size; ++_i653)
             {
-              _elem644 = iprot.readString();
-              struct.part_vals.add(_elem644);
+              _elem652 = iprot.readString();
+              struct.part_vals.add(_elem652);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -56035,13 +56176,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);
-                  String _elem647;
-                  for (int _i648 = 0; _i648 < _list646.size; ++_i648)
+                  org.apache.thrift.protocol.TList _list654 = 
iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list654.size);
+                  String _elem655;
+                  for (int _i656 = 0; _i656 < _list654.size; ++_i656)
                   {
-                    _elem647 = iprot.readString();
-                    struct.part_vals.add(_elem647);
+                    _elem655 = iprot.readString();
+                    struct.part_vals.add(_elem655);
                   }
                   iprot.readListEnd();
                 }
@@ -56086,9 +56227,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 _iter649 : struct.part_vals)
+            for (String _iter657 : struct.part_vals)
             {
-              oprot.writeString(_iter649);
+              oprot.writeString(_iter657);
             }
             oprot.writeListEnd();
           }
@@ -56139,9 +56280,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter650 : struct.part_vals)
+            for (String _iter658 : struct.part_vals)
             {
-              oprot.writeString(_iter650);
+              oprot.writeString(_iter658);
             }
           }
         }
@@ -56164,13 +56305,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list651 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list651.size);
-            String _elem652;
-            for (int _i653 = 0; _i653 < _list651.size; ++_i653)
+            org.apache.thrift.protocol.TList _list659 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list659.size);
+            String _elem660;
+            for (int _i661 = 0; _i661 < _list659.size; ++_i661)
             {
-              _elem652 = iprot.readString();
-              struct.part_vals.add(_elem652);
+              _elem660 = iprot.readString();
+              struct.part_vals.add(_elem660);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -60040,13 +60181,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list654 = 
iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list654.size);
-                  String _elem655;
-                  for (int _i656 = 0; _i656 < _list654.size; ++_i656)
+                  org.apache.thrift.protocol.TList _list662 = 
iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list662.size);
+                  String _elem663;
+                  for (int _i664 = 0; _i664 < _list662.size; ++_i664)
                   {
-                    _elem655 = iprot.readString();
-                    struct.part_vals.add(_elem655);
+                    _elem663 = iprot.readString();
+                    struct.part_vals.add(_elem663);
                   }
                   iprot.readListEnd();
                 }
@@ -60090,9 +60231,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 _iter657 : struct.part_vals)
+            for (String _iter665 : struct.part_vals)
             {
-              oprot.writeString(_iter657);
+              oprot.writeString(_iter665);
             }
             oprot.writeListEnd();
           }
@@ -60141,9 +60282,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter658 : struct.part_vals)
+            for (String _iter666 : struct.part_vals)
             {
-              oprot.writeString(_iter658);
+              oprot.writeString(_iter666);
             }
           }
         }
@@ -60166,13 +60307,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list659 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list659.size);
-            String _elem660;
-            for (int _i661 = 0; _i661 < _list659.size; ++_i661)
+            org.apache.thrift.protocol.TList _list667 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list667.size);
+            String _elem668;
+            for (int _i669 = 0; _i669 < _list667.size; ++_i669)
             {
-              _elem660 = iprot.readString();
-              struct.part_vals.add(_elem660);
+              _elem668 = iprot.readString();
+              struct.part_vals.add(_elem668);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -61411,13 +61552,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list662 = 
iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list662.size);
-                  String _elem663;
-                  for (int _i664 = 0; _i664 < _list662.size; ++_i664)
+                  org.apache.thrift.protocol.TList _list670 = 
iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list670.size);
+                  String _elem671;
+                  for (int _i672 = 0; _i672 < _list670.size; ++_i672)
                   {
-                    _elem663 = iprot.readString();
-                    struct.part_vals.add(_elem663);
+                    _elem671 = iprot.readString();
+                    struct.part_vals.add(_elem671);
                   }
                   iprot.readListEnd();
                 }
@@ -61470,9 +61611,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 _iter665 : struct.part_vals)
+            for (String _iter673 : struct.part_vals)
             {
-              oprot.writeString(_iter665);
+              oprot.writeString(_iter673);
             }
             oprot.writeListEnd();
           }
@@ -61529,9 +61670,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter666 : struct.part_vals)
+            for (String _iter674 : struct.part_vals)
             {
-              oprot.writeString(_iter666);
+              oprot.writeString(_iter674);
             }
           }
         }
@@ -61557,13 +61698,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list667 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list667.size);
-            String _elem668;
-            for (int _i669 = 0; _i669 < _list667.size; ++_i669)
+            org.apache.thrift.protocol.TList _list675 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list675.size);
+            String _elem676;
+            for (int _i677 = 0; _i677 < _list675.size; ++_i677)
             {
-              _elem668 = iprot.readString();
-              struct.part_vals.add(_elem668);
+              _elem676 = iprot.readString();
+              struct.part_vals.add(_elem676);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -66165,13 +66306,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list670 = 
iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list670.size);
-                  String _elem671;
-                  for (int _i672 = 0; _i672 < _list670.size; ++_i672)
+                  org.apache.thrift.protocol.TList _list678 = 
iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list678.size);
+                  String _elem679;
+                  for (int _i680 = 0; _i680 < _list678.size; ++_i680)
                   {
-                    _elem671 = iprot.readString();
-                    struct.part_vals.add(_elem671);
+                    _elem679 = iprot.readString();
+                    struct.part_vals.add(_elem679);
                   }
                   iprot.readListEnd();
                 }
@@ -66207,9 +66348,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 _iter673 : struct.part_vals)
+            for (String _iter681 : struct.part_vals)
             {
-              oprot.writeString(_iter673);
+              oprot.writeString(_iter681);
             }
             oprot.writeListEnd();
           }
@@ -66252,9 +66393,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter674 : struct.part_vals)
+            for (String _iter682 : struct.part_vals)
             {
-              oprot.writeString(_iter674);
+              oprot.writeString(_iter682);
             }
           }
         }
@@ -66274,13 +66415,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list675 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list675.size);
-            String _elem676;
-            for (int _i677 = 0; _i677 < _list675.size; ++_i677)
+            org.apache.thrift.protocol.TList _list683 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list683.size);
+            String _elem684;
+            for (int _i685 = 0; _i685 < _list683.size; ++_i685)
             {
-              _elem676 = iprot.readString();
-              struct.part_vals.add(_elem676);
+              _elem684 = iprot.readString();
+              struct.part_vals.add(_elem684);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -67498,15 +67639,15 @@ public class ThriftHiveMetastore {
             case 1: // PARTITION_SPECS
               if (schemeField.type == org.apache.thrift.protocol.TType.MAP) {
                 {
-                  org.apache.thrift.protocol.TMap _map678 = 
iprot.readMapBegin();
-                  struct.partitionSpecs = new 
HashMap<String,String>(2*_map678.size);
-                  String _key679;
-                  String _val680;
-                  for (int _i681 = 0; _i681 < _map678.size; ++_i681)
+                  org.apache.thrift.protocol.TMap _map686 = 
iprot.readMapBegin();
+                  struct.partitionSpecs = new 
HashMap<String,String>(2*_map686.size);
+                  String _key687;
+                  String _val688;
+                  for (int _i689 = 0; _i689 < _map686.size; ++_i689)
                   {
-                    _key679 = iprot.readString();
-                    _val680 = iprot.readString();
-                    struct.partitionSpecs.put(_key679, _val680);
+                    _key687 = iprot.readString();
+                    _val688 = iprot.readString();
+                    struct.partitionSpecs.put(_key687, _val688);
                   }
                   iprot.readMapEnd();
                 }
@@ -67564,10 +67705,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> _iter682 : 
struct.partitionSpecs.entrySet())
+            for (Map.Entry<String, String> _iter690 : 
struct.partitionSpecs.entrySet())
             {
-              oprot.writeString(_iter682.getKey());
-              oprot.writeString(_iter682.getValue());
+              oprot.writeString(_iter690.getKey());
+              oprot.writeString(_iter690.getValue());
             }
             oprot.writeMapEnd();
           }
@@ -67630,10 +67771,10 @@ public class ThriftHiveMetastore {
         if (struct.isSetPartitionSpecs()) {
           {
             oprot.writeI32(struct.partitionSpecs.size());
-            for (Map.Entry<String, String> _iter683 : 
struct.partitionSpecs.entrySet())
+            for (Map.Entry<String, String> _iter691 : 
struct.partitionSpecs.entrySet())
             {
-              oprot.writeString(_iter683.getKey());
-              oprot.writeString(_iter683.getValue());
+              oprot.writeString(_iter691.getKey());
+              oprot.writeString(_iter691.getValue());
             }
           }
         }
@@ -67657,15 +67798,15 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(5);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TMap _map684 = 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*_map684.size);
-            String _key685;
-            String _val686;
-            for (int _i687 = 0; _i687 < _map684.size; ++_i687)
+            org.apache.thrift.protocol.TMap _map692 = 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*_map692.size);
+            String _key693;
+            String _val694;
+            for (int _i695 = 0; _i695 < _map692.size; ++_i695)
             {
-              _key685 = iprot.readString();
-              _val686 = iprot.readString();
-              struct.partitionSpecs.put(_key685, _val686);
+              _key693 = iprot.readString();
+              _val694 = iprot.readString();
+              struct.partitionSpecs.put(_key693, _val694);
             }
           }
           struct.setPartitionSpecsIsSet(true);
@@ -69147,13 +69288,13 @@ public class ThriftHiveMetastore {
             case 3: // PART_VALS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list688 = 
iprot.readListBegin();
-                  struct.part_vals = new ArrayList<String>(_list688.size);
-                  String _elem689;
-                  for (int _i690 = 0; _i690 < _list688.size; ++_i690)
+                  org.apache.thrift.protocol.TList _list696 = 
iprot.readListBegin();
+                  struct.part_vals = new ArrayList<String>(_list696.size);
+                  String _elem697;
+                  for (int _i698 = 0; _i698 < _list696.size; ++_i698)
                   {
-                    _elem689 = iprot.readString();
-                    struct.part_vals.add(_elem689);
+                    _elem697 = iprot.readString();
+                    struct.part_vals.add(_elem697);
                   }
                   iprot.readListEnd();
                 }
@@ -69173,13 +69314,13 @@ public class ThriftHiveMetastore {
             case 5: // GROUP_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list691 = 
iprot.readListBegin();
-                  struct.group_names = new ArrayList<String>(_list691.size);
-                  String _elem692;
-                  for (int _i693 = 0; _i693 < _list691.size; ++_i693)
+                  org.apache.thrift.protocol.TList _list699 = 
iprot.readListBegin();
+                  struct.group_names = new ArrayList<String>(_list699.size);
+                  String _elem700;
+                  for (int _i701 = 0; _i701 < _list699.size; ++_i701)
                   {
-                    _elem692 = iprot.readString();
-                    struct.group_names.add(_elem692);
+                    _elem700 = iprot.readString();
+                    struct.group_names.add(_elem700);
                   }
                   iprot.readListEnd();
                 }
@@ -69215,9 +69356,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 _iter694 : struct.part_vals)
+            for (String _iter702 : struct.part_vals)
             {
-              oprot.writeString(_iter694);
+              oprot.writeString(_iter702);
             }
             oprot.writeListEnd();
           }
@@ -69232,9 +69373,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 _iter695 : struct.group_names)
+            for (String _iter703 : struct.group_names)
             {
-              oprot.writeString(_iter695);
+              oprot.writeString(_iter703);
             }
             oprot.writeListEnd();
           }
@@ -69283,9 +69424,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetPart_vals()) {
           {
             oprot.writeI32(struct.part_vals.size());
-            for (String _iter696 : struct.part_vals)
+            for (String _iter704 : struct.part_vals)
             {
-              oprot.writeString(_iter696);
+              oprot.writeString(_iter704);
             }
           }
         }
@@ -69295,9 +69436,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetGroup_names()) {
           {
             oprot.writeI32(struct.group_names.size());
-            for (String _iter697 : struct.group_names)
+            for (String _iter705 : struct.group_names)
             {
-              oprot.writeString(_iter697);
+              oprot.writeString(_iter705);
             }
           }
         }
@@ -69317,13 +69458,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(2)) {
           {
-            org.apache.thrift.protocol.TList _list698 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.part_vals = new ArrayList<String>(_list698.size);
-            String _elem699;
-            for (int _i700 = 0; _i700 < _list698.size; ++_i700)
+            org.apache.thrift.protocol.TList _list706 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.part_vals = new ArrayList<String>(_list706.size);
+            String _elem707;
+            for (int _i708 = 0; _i708 < _list706.size; ++_i708)
             {
-              _elem699 = iprot.readString();
-              struct.part_vals.add(_elem699);
+              _elem707 = iprot.readString();
+              struct.part_vals.add(_elem707);
             }
           }
           struct.setPart_valsIsSet(true);
@@ -69334,13 +69475,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(4)) {
           {
-            org.apache.thrift.protocol.TList _list701 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.group_names = new ArrayList<String>(_list701.size);
-            String _elem702;
-            for (int _i703 = 0; _i703 < _list701.size; ++_i703)
+            org.apache.thrift.protocol.TList _list709 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.group_names = new ArrayList<String>(_list709.size);
+            String _elem710;
+            for (int _i711 = 0; _i711 < _list709.size; ++_i711)
             {
-              _elem702 = iprot.readString();
-              struct.group_names.add(_elem702);
+              _elem710 = iprot.readString();
+              struct.group_names.add(_elem710);
             }
           }
           struct.setGroup_namesIsSet(true);
@@ -72109,14 +72250,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list704 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<Partition>(_list704.size);
-                  Partition _elem705;
-                  for (int _i706 = 0; _i706 < _list704.size; ++_i706)
+                  org.apache.thrift.protocol.TList _list712 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<Partition>(_list712.size);
+                  Partition _elem713;
+                  for (int _i714 = 0; _i714 < _list712.size; ++_i714)
                   {
-                    _elem705 = new Partition();
-                    _elem705.read(iprot);
-                    struct.success.add(_elem705);
+                    _elem713 = new Partition();
+                    _elem713.read(iprot);
+                    struct.success.add(_elem713);
                   }
                   iprot.readListEnd();
                 }
@@ -72160,9 +72301,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 _iter707 : struct.success)
+            for (Partition _iter715 : struct.success)
             {
-              _iter707.write(oprot);
+              _iter715.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -72209,9 +72350,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Partition _iter708 : struct.success)
+            for (Partition _iter716 : struct.success)
             {
-              _iter708.write(oprot);
+              _iter716.write(oprot);
             }
           }
         }
@@ -72229,14 +72370,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list709 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
-            struct.success = new ArrayList<Partition>(_list709.size);
-            Partition _elem710;
-            for (int _i711 = 0; _i711 < _list709.size; ++_i711)
+            org.apache.thrift.protocol.TList _list717 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.success = new ArrayList<Partition>(_list717.size);
+            Partition _elem718;
+            for (int _i719 = 0; _i719 < _list717.size; ++_i719)
             {
-              _elem710 = new Partition();
-              _elem710.read(iprot);
-              struct.success.add(_elem710);
+              _elem718 = new Partition();
+              _elem718.read(iprot);
+              struct.success.add(_elem718);
             }
           }
           struct.setSuccessIsSet(true);
@@ -72926,13 +73067,13 @@ public class ThriftHiveMetastore {
             case 5: // GROUP_NAMES
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list712 = 
iprot.readListBegin();
-                  struct.group_names = new ArrayList<String>(_list712.size);
-                  String _elem713;
-                  for (int _i714 = 0; _i714 < _list712.size; ++_i714)
+                  org.apache.thrift.protocol.TList _list720 = 
iprot.readListBegin();
+                  struct.group_names = new ArrayList<String>(_list720.size);
+                  String _elem721;
+                  for (int _i722 = 0; _i722 < _list720.size; ++_i722)
                   {
-                    _elem713 = iprot.readString();
-                    struct.group_names.add(_elem713);
+                    _elem721 = iprot.readString();
+                    struct.group_names.add(_elem721);
                   }
                   iprot.readListEnd();
                 }
@@ -72976,9 +73117,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 _iter715 : struct.group_names)
+            for (String _iter723 : struct.group_names)
             {
-              oprot.writeString(_iter715);
+              oprot.writeString(_iter723);
             }
             oprot.writeListEnd();
           }
@@ -73033,9 +73174,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetGroup_names()) {
           {
             oprot.writeI32(struct.group_names.size());
-            for (String _iter716 : struct.group_names)
+            for (String _iter724 : struct.group_names)
             {
-              oprot.writeString(_iter716);
+              oprot.writeString(_iter724);
             }
           }
         }
@@ -73063,13 +73204,13 @@ public class ThriftHiveMetastore {
         }
         if (incoming.get(4)) {
           {
-            org.apache.thrift.protocol.TList _list717 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
-            struct.group_names = new ArrayList<String>(_list717.size);
-            String _elem718;
-            for (int _i719 = 0; _i719 < _list717.size; ++_i719)
+            org.apache.thrift.protocol.TList _list725 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, 
iprot.readI32());
+            struct.group_names = new ArrayList<String>(_list725.size);
+            String _elem726;
+            for (int _i727 = 0; _i727 < _list725.size; ++_i727)
             {
-              _elem718 = iprot.readString();
-              struct.group_names.add(_elem718);
+              _elem726 = iprot.readString();
+              struct.group_names.add(_elem726);
             }
           }
           struct.setGroup_namesIsSet(true);
@@ -73556,14 +73697,14 @@ public class ThriftHiveMetastore {
             case 0: // SUCCESS
               if (schemeField.type == org.apache.thrift.protocol.TType.LIST) {
                 {
-                  org.apache.thrift.protocol.TList _list720 = 
iprot.readListBegin();
-                  struct.success = new ArrayList<Partition>(_list720.size);
-                  Partition _elem721;
-                  for (int _i722 = 0; _i722 < _list720.size; ++_i722)
+                  org.apache.thrift.protocol.TList _list728 = 
iprot.readListBegin();
+                  struct.success = new ArrayList<Partition>(_list728.size);
+                  Partition _elem729;
+                  for (int _i730 = 0; _i730 < _list728.size; ++_i730)
                   {
-                    _elem721 = new Partition();
-                    _elem721.read(iprot);
-                    struct.success.add(_elem721);
+                    _elem729 = new Partition();
+                    _elem729.read(iprot);
+                    struct.success.add(_elem729);
                   }
                   iprot.readListEnd();
                 }
@@ -73607,9 +73748,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 _iter723 : struct.success)
+            for (Partition _iter731 : struct.success)
             {
-              _iter723.write(oprot);
+              _iter731.write(oprot);
             }
             oprot.writeListEnd();
           }
@@ -73656,9 +73797,9 @@ public class ThriftHiveMetastore {
         if (struct.isSetSuccess()) {
           {
             oprot.writeI32(struct.success.size());
-            for (Partition _iter724 : struct.success)
+            for (Partition _iter732 : struct.success)
             {
-              _iter724.write(oprot);
+              _iter732.write(oprot);
             }
           }
         }
@@ -73676,14 +73817,14 @@ public class ThriftHiveMetastore {
         BitSet incoming = iprot.readBitSet(3);
         if (incoming.get(0)) {
           {
-            org.apache.thrift.protocol.TList _list725 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
-            struct.success = new ArrayList<Partition>(_list725.size);
-            Partition _elem726;
-            for (int _i727 = 0; _i727 < _list725.size; ++_i727)
+            org.apache.thrift.protocol.TList _list733 = new 
org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, 
iprot.readI32());
+            struct.success = new ArrayList<Partition>(_list733.size);
+            Partition _elem734;
+            for (int _i735 = 0; _i735 < _list733.size; ++_i735)
             {
-              _elem726 = new Partition();
-              _elem726.read(iprot);
-             

<TRUNCATED>

Reply via email to