diff --git a/hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/listener/DbNotificationListener.java b/hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/listener/DbNotificationListener.java index 7f21573182..59d1e3ad8c 100644 --- a/hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/listener/DbNotificationListener.java +++ b/hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/listener/DbNotificationListener.java @@ -18,6 +18,7 @@ package org.apache.hive.hcatalog.listener; import java.io.IOException; +import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; @@ -72,6 +73,7 @@ import org.apache.hadoop.hive.metastore.events.OpenTxnEvent; import org.apache.hadoop.hive.metastore.events.CommitTxnEvent; import org.apache.hadoop.hive.metastore.events.AbortTxnEvent; +import org.apache.hadoop.hive.metastore.events.AllocWriteIdEvent; import org.apache.hadoop.hive.metastore.events.ListenerEvent; import org.apache.hadoop.hive.metastore.messaging.EventMessage.EventType; import org.apache.hadoop.hive.metastore.messaging.MessageFactory; @@ -449,7 +451,7 @@ public void onInsert(InsertEvent insertEvent) throws MetaException { } @Override - public void onOpenTxn(OpenTxnEvent openTxnEvent) throws MetaException { + public void onOpenTxn(OpenTxnEvent openTxnEvent, Connection dbConn, SQLGenerator sqlGenerator) throws MetaException { int lastTxnIdx = openTxnEvent.getTxnIds().size() - 1; OpenTxnMessage msg = msgFactory.buildOpenTxnMessage(openTxnEvent.getTxnIds().get(0), openTxnEvent.getTxnIds().get(lastTxnIdx)); @@ -457,35 +459,37 @@ public void onOpenTxn(OpenTxnEvent openTxnEvent) throws MetaException { new NotificationEvent(0, now(), EventType.OPEN_TXN.toString(), msg.toString()); try { - addNotificationLog(event, openTxnEvent); + addNotificationLog(event, openTxnEvent, dbConn, sqlGenerator); } catch (SQLException e) { throw new MetaException("Unable to execute direct SQL " + StringUtils.stringifyException(e)); } } @Override - public void onCommitTxn(CommitTxnEvent commitTxnEvent) throws MetaException { + public void onCommitTxn(CommitTxnEvent commitTxnEvent, Connection dbConn, SQLGenerator sqlGenerator) + throws MetaException { NotificationEvent event = new NotificationEvent(0, now(), EventType.COMMIT_TXN.toString(), msgFactory.buildCommitTxnMessage( commitTxnEvent.getTxnId()) .toString()); try { - addNotificationLog(event, commitTxnEvent); + addNotificationLog(event, commitTxnEvent, dbConn, sqlGenerator); } catch (SQLException e) { throw new MetaException("Unable to execute direct SQL " + StringUtils.stringifyException(e)); } } @Override - public void onAbortTxn(AbortTxnEvent abortTxnEvent) throws MetaException { + public void onAbortTxn(AbortTxnEvent abortTxnEvent, Connection dbConn, SQLGenerator sqlGenerator) + throws MetaException { NotificationEvent event = new NotificationEvent(0, now(), EventType.ABORT_TXN.toString(), msgFactory.buildAbortTxnMessage( abortTxnEvent.getTxnId()) .toString()); try { - addNotificationLog(event, abortTxnEvent); + addNotificationLog(event, abortTxnEvent, dbConn, sqlGenerator); } catch (SQLException e) { throw new MetaException("Unable to execute direct SQL " + StringUtils.stringifyException(e)); } @@ -591,6 +595,27 @@ public void onDropConstraint(DropConstraintEvent dropConstraintEvent) throws Met process(event, dropConstraintEvent); } + /*** + * @param allocWriteIdEvent Alloc write id event + * @throws MetaException + */ + @Override + public void onAllocWriteId(AllocWriteIdEvent allocWriteIdEvent, Connection dbConn, SQLGenerator sqlGenerator) + throws MetaException { + String tableName = allocWriteIdEvent.getTableName(); + String dbName = allocWriteIdEvent.getDbName(); + NotificationEvent event = + new NotificationEvent(0, now(), EventType.ALLOC_WRITE_ID.toString(), msgFactory + .buildAllocWriteIdMessage(allocWriteIdEvent.getTxnToWriteIdList(), dbName, tableName).toString()); + event.setTableName(tableName); + event.setDbName(dbName); + try { + addNotificationLog(event, allocWriteIdEvent, dbConn, sqlGenerator); + } catch (SQLException e) { + throw new MetaException("Unable to execute direct SQL " + StringUtils.stringifyException(e)); + } + } + private int now() { long millis = System.currentTimeMillis(); millis /= 1000; @@ -606,9 +631,9 @@ static String quoteString(String input) { return "'" + input + "'"; } - private void addNotificationLog(NotificationEvent event, ListenerEvent listenerEvent) - throws MetaException, SQLException { - if ((listenerEvent.getConnection() == null) || (listenerEvent.getSqlGenerator() == null)) { + private void addNotificationLog(NotificationEvent event, ListenerEvent listenerEvent, Connection dbConn, + SQLGenerator sqlGenerator) throws MetaException, SQLException { + if ((dbConn == null) || (sqlGenerator == null)) { LOG.info("connection or sql generator is not set so executing sql via DN"); process(event, listenerEvent); return; @@ -616,8 +641,7 @@ private void addNotificationLog(NotificationEvent event, ListenerEvent listenerE Statement stmt = null; ResultSet rs = null; try { - stmt = listenerEvent.getConnection().createStatement(); - SQLGenerator sqlGenerator = listenerEvent.getSqlGenerator(); + stmt = dbConn.createStatement(); event.setMessageFormat(msgFactory.getMessageFormat()); if (sqlGenerator.getDbProduct() == MYSQL) { diff --git a/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/TestDbNotificationListener.java b/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/TestDbNotificationListener.java index 70c6a94e57..eef917e9f4 100644 --- a/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/TestDbNotificationListener.java +++ b/itests/hcatalog-unit/src/test/java/org/apache/hive/hcatalog/listener/TestDbNotificationListener.java @@ -74,6 +74,7 @@ import org.apache.hadoop.hive.metastore.events.CommitTxnEvent; import org.apache.hadoop.hive.metastore.events.AbortTxnEvent; import org.apache.hadoop.hive.metastore.events.ListenerEvent; +import org.apache.hadoop.hive.metastore.events.AllocWriteIdEvent; import org.apache.hadoop.hive.metastore.messaging.AddPartitionMessage; import org.apache.hadoop.hive.metastore.messaging.AlterPartitionMessage; import org.apache.hadoop.hive.metastore.messaging.AlterTableMessage; @@ -233,6 +234,10 @@ public void onCommitTxn(CommitTxnEvent commitTxnEvent) throws MetaException { public void onAbortTxn(AbortTxnEvent abortTxnEvent) throws MetaException { pushEventId(EventType.ABORT_TXN, abortTxnEvent); } + + public void onAllocWriteId(AllocWriteIdEvent allocWriteIdEvent) throws MetaException { + pushEventId(EventType.ALLOC_WRITE_ID, allocWriteIdEvent); + } } @SuppressWarnings("rawtypes") diff --git a/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/parse/TestReplicationScenariosAcidTables.java b/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/parse/TestReplicationScenariosAcidTables.java index cac992275e..2ad83b60e1 100644 --- a/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/parse/TestReplicationScenariosAcidTables.java +++ b/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/parse/TestReplicationScenariosAcidTables.java @@ -100,7 +100,8 @@ public void testOpenTxnEvent() throws Throwable { .verifyResult(bootStrapDump.lastReplicationId); // create table will start and coomit the transaction - primary.run("CREATE TABLE " + tableName + + primary.run("use " + primaryDbName) + .run("CREATE TABLE " + tableName + " (key int, value int) PARTITIONED BY (load_date date) " + "CLUSTERED BY(key) INTO 3 BUCKETS STORED AS ORC TBLPROPERTIES ('transactional'='true')") .run("SHOW TABLES LIKE '" + tableName + "'") @@ -113,16 +114,12 @@ public void testOpenTxnEvent() throws Throwable { primary.dump(primaryDbName, bootStrapDump.lastReplicationId); replica.load(replicatedDbName, incrementalDump.dumpLocation) .run("REPL STATUS " + replicatedDbName) - .verifyResult(incrementalDump.lastReplicationId) - .run("SHOW TABLES LIKE '" + tableName + "'") - .verifyResult(tableName); + .verifyResult(incrementalDump.lastReplicationId); // Test the idempotent behavior of Open and Commit Txn replica.load(replicatedDbName, incrementalDump.dumpLocation) .run("REPL STATUS " + replicatedDbName) - .verifyResult(incrementalDump.lastReplicationId) - .run("SHOW TABLES LIKE '" + tableName + "'") - .verifyResult(tableName); + .verifyResult(incrementalDump.lastReplicationId); } @Test @@ -135,7 +132,8 @@ public void testAbortTxnEvent() throws Throwable { .verifyResult(bootStrapDump.lastReplicationId); // this should fail - primary.runFailure("CREATE TABLE " + tableNameFail + + primary.run("use " + primaryDbName) + .runFailure("CREATE TABLE " + tableNameFail + " (key int, value int) PARTITIONED BY (load_date date) " + "CLUSTERED BY(key) ('transactional'='true')") .run("SHOW TABLES LIKE '" + tableNameFail + "'") @@ -145,16 +143,12 @@ public void testAbortTxnEvent() throws Throwable { primary.dump(primaryDbName, bootStrapDump.lastReplicationId); replica.load(replicatedDbName, incrementalDump.dumpLocation) .run("REPL STATUS " + replicatedDbName) - .verifyResult(incrementalDump.lastReplicationId) - .run("SHOW TABLES LIKE '" + tableNameFail + "'") - .verifyFailure(new String[]{tableNameFail}); + .verifyResult(incrementalDump.lastReplicationId); // Test the idempotent behavior of Abort Txn replica.load(replicatedDbName, incrementalDump.dumpLocation) .run("REPL STATUS " + replicatedDbName) - .verifyResult(incrementalDump.lastReplicationId) - .run("SHOW TABLES LIKE '" + tableNameFail + "'") - .verifyFailure(new String[]{tableNameFail}); + .verifyResult(incrementalDump.lastReplicationId); } @Test @@ -165,7 +159,8 @@ public void testTxnEventNonAcid() throws Throwable { .run("REPL STATUS " + replicatedDbName) .verifyResult(bootStrapDump.lastReplicationId); - primary.run("CREATE TABLE " + tableName + + primary.run("use " + primaryDbName) + .run("CREATE TABLE " + tableName + " (key int, value int) PARTITIONED BY (load_date date) " + "CLUSTERED BY(key) INTO 3 BUCKETS STORED AS ORC TBLPROPERTIES ('transactional'='true')") .run("SHOW TABLES LIKE '" + tableName + "'") diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnTask.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnTask.java index 1cdeeb6604..6377539c0b 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnTask.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnTask.java @@ -18,12 +18,19 @@ package org.apache.hadoop.hive.ql.exec; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; import org.apache.hadoop.hive.ql.DriverContext; import org.apache.hadoop.hive.ql.lockmgr.HiveTxnManager; +import org.apache.hadoop.hive.ql.metadata.Hive; +import org.apache.hadoop.hive.ql.metadata.HiveException; +import org.apache.hadoop.hive.ql.metadata.InvalidTableException; +import org.apache.hadoop.hive.ql.metadata.Table; +import org.apache.hadoop.hive.ql.parse.ReplicationSpec; import org.apache.hadoop.hive.ql.plan.api.StageType; import org.apache.hadoop.security.UserGroupInformation; import org.apache.hadoop.util.StringUtils; import java.util.List; +import java.util.Map; /** * ReplTxnTask. @@ -44,11 +51,32 @@ public int execute(DriverContext driverContext) { Utilities.FILE_OP_LOGGER.trace("Executing ReplTxnTask " + work.getOperationType().toString() + " for txn ids : " + work.getTxnIds().toString() + " replPolicy : " + replPolicy); } + + String tableName = work.getTableName() == null || work.getTableName().isEmpty() ? null : work.getTableName(); + if (tableName != null) { + Table tbl; + try { + tbl = Hive.get().getTable(work.getDbName(), tableName); + ReplicationSpec replicationSpec = work.getReplicationSpec(); + if (replicationSpec != null && !replicationSpec.allowReplacementInto(tbl.getParameters())) { + // if the event is already replayed, then no need to replay it again. + LOG.debug("ReplTxnTask: Event is skipped as it is already replayed. Event Id: " + + replicationSpec.getReplicationState() + "Event Type: " + work.getOperationType()); + return 0; + } + } catch (InvalidTableException e) { + LOG.info("Table does not exist so, ignoring the operation as it might be a retry(idempotent) case."); + return 0; + } catch (HiveException e) { + LOG.error("Get table failed with exception " + e.getMessage()); + return 1; + } + } + try { HiveTxnManager txnManager = driverContext.getCtx().getHiveTxnManager(); String user = UserGroupInformation.getCurrentUser().getUserName(); - LOG.debug("Replaying " + work.getOperationType().toString() + " Event for policy " + - replPolicy + " with srcTxn " + work.getTxnIds().toString()); + LOG.debug("Replaying " + work.getOperationType().toString() + " Event for policy " + replPolicy); switch(work.getOperationType()) { case REPL_OPEN_TXN: List txnIds = txnManager.replOpenTxn(replPolicy, work.getTxnIds(), user); @@ -68,6 +96,15 @@ public int execute(DriverContext driverContext) { LOG.info("Replayed CommitTxn Event for policy " + replPolicy + " with srcTxn " + txnId); } return 0; + case REPL_ALLOC_WRITE_ID: + assert work.getTxnToWriteIdList() != null; + String dbName = work.getDbName(); + String tblName = work.getTableName(); + List txnToWriteIdList = work.getTxnToWriteIdList(); + txnManager.replAllocateTableWriteIdsBatch(dbName, tblName, replPolicy, txnToWriteIdList); + LOG.info("Replayed alloc write Id Event for repl policy: " + replPolicy + " db Name : " + dbName + + " txnToWriteIdList: " +txnToWriteIdList.toString() + " table name: " + tblName); + return 0; default: LOG.error("Operation Type " + work.getOperationType() + " is not supported "); return 1; diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnWork.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnWork.java index 9467415175..530e9be884 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnWork.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/ReplTxnWork.java @@ -19,9 +19,11 @@ import java.io.Serializable; -import com.google.common.collect.Lists; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; +import org.apache.hadoop.hive.ql.parse.ReplicationSpec; import org.apache.hadoop.hive.ql.plan.Explain; import org.apache.hadoop.hive.ql.plan.Explain.Level; +import java.util.Collections; import java.util.List; /** @@ -33,38 +35,49 @@ private static final long serialVersionUID = 1L; private String dbName; private String tableName; + private String replPolicy; private List txnIds; + private List txnToWriteIdList; + private ReplicationSpec replicationSpec; /** * OperationType. * Different kind of events supported for replaying. */ public enum OperationType { - REPL_OPEN_TXN, REPL_ABORT_TXN, REPL_COMMIT_TXN + REPL_OPEN_TXN, REPL_ABORT_TXN, REPL_COMMIT_TXN, REPL_ALLOC_WRITE_ID } OperationType operation; - public ReplTxnWork(String dbName, String tableName, List txnIds, OperationType type) { + public ReplTxnWork(String replPolicy, String dbName, String tableName, List txnIds, OperationType type, + List txnToWriteIdList, ReplicationSpec replicationSpec) { this.txnIds = txnIds; this.dbName = dbName; this.tableName = tableName; this.operation = type; + this.replPolicy = replPolicy; + this.txnToWriteIdList = txnToWriteIdList; + this.replicationSpec = replicationSpec; } - public ReplTxnWork(String dbName, String tableName, Long txnId, OperationType type) { - this.txnIds = Lists.newArrayList(txnId); - this.dbName = dbName; - this.tableName = tableName; - this.operation = type; + public ReplTxnWork(String replPolicy, String dbName, String tableName, List txnIds, OperationType type, + ReplicationSpec replicationSpec) { + this(replPolicy, dbName, tableName, txnIds, type, null, replicationSpec); } - public List getTxnIds() { - return txnIds; + public ReplTxnWork(String replPolicy, String dbName, String tableName, Long txnId, + OperationType type, ReplicationSpec replicationSpec) { + this(replPolicy, dbName, tableName, Collections.singletonList(txnId), type, null, replicationSpec); } - public Long getTxnId(int idx) { - return txnIds.get(idx); + public ReplTxnWork(String replPolicy, String dbName, String tableName, OperationType type, + List txnToWriteIdList, ReplicationSpec replicationSpec) { + this(replPolicy, dbName, tableName, null, type, txnToWriteIdList, replicationSpec); + } + + public List getTxnIds() { + return txnIds; } public String getDbName() { @@ -75,17 +88,19 @@ public String getTableName() { return tableName; } - public String getReplPolicy() { - if ((dbName == null) || (dbName.isEmpty())) { - return null; - } else if ((tableName == null) || (tableName.isEmpty())) { - return dbName.toLowerCase() + ".*"; - } else { - return dbName.toLowerCase() + "." + tableName.toLowerCase(); - } + public String getReplPolicy() { + return replPolicy; } public OperationType getOperationType() { return operation; } + + public List getTxnToWriteIdList() { + return txnToWriteIdList; + } + + public ReplicationSpec getReplicationSpec() { + return replicationSpec; + } } diff --git a/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbTxnManager.java b/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbTxnManager.java index f566842e19..7b7fd5d198 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbTxnManager.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DbTxnManager.java @@ -1013,6 +1013,15 @@ private boolean heartbeatMaterializationRebuildLock(String dbName, String tableN throw new LockException(ErrorMsg.METASTORE_COMMUNICATION_FAILED.getMsg(), e); } } + + public void replAllocateTableWriteIdsBatch(String dbName, String tableName, String replPolicy, + List srcTxnToWriteIdList) throws LockException { + try { + getMS().replAllocateTableWriteIdsBatch(dbName, tableName, replPolicy, srcTxnToWriteIdList); + } catch (TException e) { + throw new LockException(ErrorMsg.METASTORE_COMMUNICATION_FAILED.getMsg(), e); + } + } private static long getHeartbeatInterval(Configuration conf) throws LockException { // Retrieve HIVE_TXN_TIMEOUT in MILLISECONDS (it's defined as SECONDS), diff --git a/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DummyTxnManager.java b/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DummyTxnManager.java index 9057bb94b0..78eedd34f3 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DummyTxnManager.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/DummyTxnManager.java @@ -18,6 +18,7 @@ package org.apache.hadoop.hive.ql.lockmgr; import org.apache.hadoop.hive.common.ValidTxnWriteIdList; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.hadoop.hive.common.ValidTxnList; @@ -77,6 +78,11 @@ public long getTableWriteId(String dbName, String tableName) throws LockExceptio return 0L; } @Override + public void replAllocateTableWriteIdsBatch(String dbName, String tableName, String replPolicy, + List srcTxnToWriteIdList) throws LockException { + return; + } + @Override public HiveLockManager getLockManager() throws LockException { if (lockMgr == null) { boolean supportConcurrency = diff --git a/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/HiveTxnManager.java b/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/HiveTxnManager.java index e0e235b46a..ec11fecba7 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/HiveTxnManager.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/lockmgr/HiveTxnManager.java @@ -20,6 +20,7 @@ import org.apache.hadoop.hive.common.ValidTxnList; import org.apache.hadoop.hive.common.ValidTxnWriteIdList; import org.apache.hadoop.hive.metastore.api.LockResponse; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; import org.apache.hadoop.hive.ql.Context; import org.apache.hadoop.hive.ql.Driver.LockedDriverState; import org.apache.hadoop.hive.ql.QueryPlan; @@ -264,6 +265,17 @@ */ long getTableWriteId(String dbName, String tableName) throws LockException; + /** + * Allocates write id for each transaction in the list. + * @param dbName database name + * @param tableName the name of the table to allocate the write id + * @param replPolicy used by replication task to identify the source cluster + * @param srcTxnToWriteIdList List of txn id to write id Map + * @throws LockException + */ + void replAllocateTableWriteIdsBatch(String dbName, String tableName, String replPolicy, + List srcTxnToWriteIdList) throws LockException; + /** * Should be though of more as a unique write operation ID in a given txn (at QueryPlan level). * Each statement writing data within a multi statement txn should have a unique WriteId. diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveUtils.java b/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveUtils.java index dae18fb9b1..f1c4d9827b 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveUtils.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/HiveUtils.java @@ -428,4 +428,14 @@ public static String getLocalDirList(Configuration conf) { return null; } + + public static String getReplPolicy(String dbName, String tableName) { + if ((dbName == null) || (dbName.isEmpty())) { + return null; + } else if ((tableName == null) || (tableName.isEmpty())) { + return dbName.toLowerCase() + ".*"; + } else { + return dbName.toLowerCase() + "." + tableName.toLowerCase(); + } + } } diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/ReplicationSemanticAnalyzer.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/ReplicationSemanticAnalyzer.java index 79b2e48ee2..e2bea2e9b0 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/ReplicationSemanticAnalyzer.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/ReplicationSemanticAnalyzer.java @@ -244,16 +244,19 @@ private void initReplLoad(ASTNode ast) throws SemanticException { } } - private boolean shouldReplayEvent(FileStatus dir, DumpType dumpType) throws SemanticException { - // This functions filters out all the events which are already replayed. This can be done only - // for transaction related events as for other kind of events we can not gurantee that the last - // repl id stored in the database/table is valid. - if ((dumpType != DumpType.EVENT_ABORT_TXN) && - (dumpType != DumpType.EVENT_OPEN_TXN) && - (dumpType != DumpType.EVENT_COMMIT_TXN)) { - return true; + private boolean isEventNotReplayed(Map params, FileStatus dir, DumpType dumpType) { + if (params != null && (params.containsKey(ReplicationSpec.KEY.CURR_STATE_ID.toString()))) { + String replLastId = params.get(ReplicationSpec.KEY.CURR_STATE_ID.toString()); + if (Long.parseLong(replLastId) >= Long.parseLong(dir.getPath().getName())) { + LOG.debug("Event " + dumpType + " with replId " + Long.parseLong(dir.getPath().getName()) + + " is already replayed. LastReplId - " + Long.parseLong(replLastId)); + return false; + } } + return true; + } + private boolean shouldReplayEvent(FileStatus dir, DumpType dumpType) throws SemanticException { // if database itself is null then we can not filter out anything. if (dbNameOrPattern == null || dbNameOrPattern.isEmpty()) { return true; @@ -261,41 +264,23 @@ private boolean shouldReplayEvent(FileStatus dir, DumpType dumpType) throws Sema Database database; try { database = Hive.get().getDatabase(dbNameOrPattern); + return isEventNotReplayed(database.getParameters(), dir, dumpType); } catch (HiveException e) { - LOG.error("failed to get the database " + dbNameOrPattern); - throw new SemanticException(e); - } - String replLastId; - Map params = database.getParameters(); - if (params != null && (params.containsKey(ReplicationSpec.KEY.CURR_STATE_ID.toString()))) { - replLastId = params.get(ReplicationSpec.KEY.CURR_STATE_ID.toString()); - if (Long.parseLong(replLastId) >= Long.parseLong(dir.getPath().getName())) { - LOG.debug("Event " + dumpType + " with replId " + Long.parseLong(dir.getPath().getName()) - + " is already replayed. LastReplId - " + Long.parseLong(replLastId)); - return false; - } + //may be the db is getting created in this load + LOG.debug("failed to get the database " + dbNameOrPattern); + return true; } } else { Table tbl; try { tbl = Hive.get().getTable(dbNameOrPattern, tblNameOrPattern); + return isEventNotReplayed(tbl.getParameters(), dir, dumpType); } catch (HiveException e) { - LOG.error("failed to get the table " + dbNameOrPattern + "." + tblNameOrPattern); - throw new SemanticException(e); - } - if (tbl != null) { - Map params = tbl.getParameters(); - if (params != null && (params.containsKey(ReplicationSpec.KEY.CURR_STATE_ID.toString()))) { - String replLastId = params.get(ReplicationSpec.KEY.CURR_STATE_ID.toString()); - if (Long.parseLong(replLastId) >= Long.parseLong(dir.getPath().getName())) { - LOG.debug("Event " + dumpType + " with replId " + Long.parseLong(dir.getPath().getName()) - + " is already replayed. LastReplId - " + Long.parseLong(replLastId)); - return false; - } - } + // may be the table is getting created in this load + LOG.debug("failed to get the table " + dbNameOrPattern + "." + tblNameOrPattern); + return true; } } - return true; } /* diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/DumpType.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/DumpType.java index 5fab0d2ebf..2e42267e82 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/DumpType.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/DumpType.java @@ -40,6 +40,7 @@ import org.apache.hadoop.hive.ql.parse.repl.load.message.OpenTxnHandler; import org.apache.hadoop.hive.ql.parse.repl.load.message.CommitTxnHandler; import org.apache.hadoop.hive.ql.parse.repl.load.message.AbortTxnHandler; +import org.apache.hadoop.hive.ql.parse.repl.load.message.AllocWriteIdHandler; public enum DumpType { @@ -204,6 +205,12 @@ public MessageHandler handler() { public MessageHandler handler() { return new AbortTxnHandler(); } + }, + EVENT_ALLOC_WRITE_ID("EVENT_ALLOC_WRITE_ID") { + @Override + public MessageHandler handler() { + return new AllocWriteIdHandler(); + } }; String type = null; diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/events/AllocWriteIdHandler.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/events/AllocWriteIdHandler.java new file mode 100644 index 0000000000..38efbd7a53 --- /dev/null +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/events/AllocWriteIdHandler.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.hadoop.hive.ql.parse.repl.dump.events; + +import org.apache.hadoop.hive.metastore.api.NotificationEvent; +import org.apache.hadoop.hive.ql.parse.repl.DumpType; +import org.apache.hadoop.hive.ql.parse.repl.load.DumpMetaData; + +class AllocWriteIdHandler extends AbstractEventHandler { + AllocWriteIdHandler(NotificationEvent event) { + super(event); + } + + @Override + public void handle(Context withinContext) throws Exception { + LOG.info("Processing#{} ALLOC_WRITE_ID message : {}", fromEventId(), event.getMessage()); + DumpMetaData dmd = withinContext.createDmd(this); + dmd.setPayload(event.getMessage()); + dmd.write(); + } + + @Override + public DumpType dumpType() { + return DumpType.EVENT_ALLOC_WRITE_ID; + } +} diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/events/EventHandlerFactory.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/events/EventHandlerFactory.java index 10ff21c430..a1d61f9250 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/events/EventHandlerFactory.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/dump/events/EventHandlerFactory.java @@ -53,6 +53,7 @@ private EventHandlerFactory() { register(MessageFactory.OPEN_TXN_EVENT, OpenTxnHandler.class); register(MessageFactory.COMMIT_TXN_EVENT, CommitTxnHandler.class); register(MessageFactory.ABORT_TXN_EVENT, AbortTxnHandler.class); + register(MessageFactory.ALLOC_WRITE_ID_EVENT, AllocWriteIdHandler.class); } static void register(String event, Class handlerClazz) { diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/AbortTxnHandler.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/AbortTxnHandler.java index 5b2c85b29f..3c28f8403f 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/AbortTxnHandler.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/AbortTxnHandler.java @@ -22,6 +22,7 @@ import org.apache.hadoop.hive.ql.exec.Task; import org.apache.hadoop.hive.ql.exec.TaskFactory; import org.apache.hadoop.hive.ql.io.AcidUtils; +import org.apache.hadoop.hive.ql.metadata.HiveUtils; import org.apache.hadoop.hive.ql.parse.SemanticException; import java.io.Serializable; import java.util.Collections; @@ -43,7 +44,8 @@ AbortTxnMessage msg = deserializer.getAbortTxnMessage(context.dmd.getPayload()); Task abortTxnTask = TaskFactory.get( - new ReplTxnWork(context.dbName, context.tableName, msg.getTxnId(), ReplTxnWork.OperationType.REPL_ABORT_TXN), + new ReplTxnWork(HiveUtils.getReplPolicy(context.dbName, context.tableName), context.dbName, context.tableName, + msg.getTxnId(), ReplTxnWork.OperationType.REPL_ABORT_TXN, context.eventOnlyReplicationSpec()), context.hiveConf ); updatedMetadata.set(context.dmd.getEventTo().toString(), context.dbName, context.tableName, null); diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/AllocWriteIdHandler.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/AllocWriteIdHandler.java new file mode 100644 index 0000000000..ef513965c9 --- /dev/null +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/AllocWriteIdHandler.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.hadoop.hive.ql.parse.repl.load.message; + +import org.apache.hadoop.hive.metastore.messaging.AllocWriteIdMessage; +import org.apache.hadoop.hive.ql.exec.ReplTxnWork; +import org.apache.hadoop.hive.ql.exec.Task; +import org.apache.hadoop.hive.ql.exec.TaskFactory; +import org.apache.hadoop.hive.ql.io.AcidUtils; +import org.apache.hadoop.hive.ql.metadata.HiveUtils; +import org.apache.hadoop.hive.ql.parse.SemanticException; +import java.io.Serializable; +import java.util.Collections; +import java.util.List; + +/** + * AllocWriteIdHandler + * Target(Load) side handler for alloc write id event. + */ +public class AllocWriteIdHandler extends AbstractMessageHandler { + @Override + public List> handle(Context context) + throws SemanticException { + if (!AcidUtils.isAcidEnabled(context.hiveConf)) { + context.log.error("Cannot load alloc write id event as acid is not enabled"); + throw new SemanticException("Cannot load alloc write id event as acid is not enabled"); + } + + AllocWriteIdMessage msg = + deserializer.getAllocWriteIdMessage(context.dmd.getPayload()); + + String dbName = (context.dbName != null && !context.dbName.isEmpty() ? context.dbName : msg.getDB()); + + // The context table name can be null if repl load is done on a full db. + // But we need table name for alloc write id and that is received from source. + String tableName = (context.tableName != null && !context.tableName.isEmpty() ? context.tableName : msg + .getTableName()); + + // Repl policy should be created based on the table name in context. + ReplTxnWork work = new ReplTxnWork(HiveUtils.getReplPolicy(dbName, context.tableName), dbName, tableName, + ReplTxnWork.OperationType.REPL_ALLOC_WRITE_ID, msg.getTxnToWriteIdList(), context.eventOnlyReplicationSpec()); + + Task allocWriteIdTask = TaskFactory.get(work, context.hiveConf); + context.log.info("Added alloc write id task : {}", allocWriteIdTask.getId()); + updatedMetadata.set(context.dmd.getEventTo().toString(), dbName, tableName, null); + return Collections.singletonList(allocWriteIdTask); + } +} + diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/CommitTxnHandler.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/CommitTxnHandler.java index 461a0f1419..127421320a 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/CommitTxnHandler.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/CommitTxnHandler.java @@ -22,6 +22,7 @@ import org.apache.hadoop.hive.ql.exec.Task; import org.apache.hadoop.hive.ql.exec.TaskFactory; import org.apache.hadoop.hive.ql.io.AcidUtils; +import org.apache.hadoop.hive.ql.metadata.HiveUtils; import org.apache.hadoop.hive.ql.parse.SemanticException; import java.io.Serializable; import java.util.Collections; @@ -41,10 +42,10 @@ } CommitTxnMessage msg = deserializer.getCommitTxnMessage(context.dmd.getPayload()); - Task commitTxnTask = TaskFactory.get( - new ReplTxnWork(context.dbName, context.tableName, msg.getTxnId(), - ReplTxnWork.OperationType.REPL_COMMIT_TXN), context.hiveConf + new ReplTxnWork(HiveUtils.getReplPolicy(context.dbName, context.tableName), context.dbName, context.tableName, + msg.getTxnId(), ReplTxnWork.OperationType.REPL_COMMIT_TXN, context.eventOnlyReplicationSpec()), + context.hiveConf ); updatedMetadata.set(context.dmd.getEventTo().toString(), context.dbName, context.tableName, null); context.log.debug("Added Commit txn task : {}", commitTxnTask.getId()); diff --git a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/OpenTxnHandler.java b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/OpenTxnHandler.java index c6349ea2b0..a5021178b2 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/OpenTxnHandler.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/parse/repl/load/message/OpenTxnHandler.java @@ -22,6 +22,7 @@ import org.apache.hadoop.hive.ql.exec.Task; import org.apache.hadoop.hive.ql.exec.TaskFactory; import org.apache.hadoop.hive.ql.io.AcidUtils; +import org.apache.hadoop.hive.ql.metadata.HiveUtils; import org.apache.hadoop.hive.ql.parse.SemanticException; import java.io.Serializable; import java.util.Collections; @@ -42,7 +43,8 @@ OpenTxnMessage msg = deserializer.getOpenTxnMessage(context.dmd.getPayload()); Task openTxnTask = TaskFactory.get( - new ReplTxnWork(context.dbName, context.tableName, msg.getTxnIds(), ReplTxnWork.OperationType.REPL_OPEN_TXN), + new ReplTxnWork(HiveUtils.getReplPolicy(context.dbName, context.tableName), context.dbName, context.tableName, + msg.getTxnIds(), ReplTxnWork.OperationType.REPL_OPEN_TXN, context.eventOnlyReplicationSpec()), context.hiveConf ); updatedMetadata.set(context.dmd.getEventTo().toString(), context.dbName, context.tableName, null); diff --git a/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestCompactionTxnHandler.java b/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestCompactionTxnHandler.java index 45890edddd..f27a5b0ceb 100644 --- a/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestCompactionTxnHandler.java +++ b/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestCompactionTxnHandler.java @@ -481,8 +481,9 @@ public void addDynamicPartitions() throws Exception { OpenTxnsResponse openTxns = txnHandler.openTxns(new OpenTxnRequest(1, "me", "localhost")); long txnId = openTxns.getTxn_ids().get(0); - AllocateTableWriteIdsResponse writeIds - = txnHandler.allocateTableWriteIds(new AllocateTableWriteIdsRequest(openTxns.getTxn_ids(), dbName, tableName)); + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest(dbName, tableName); + rqst.setTxnIds(openTxns.getTxn_ids()); + AllocateTableWriteIdsResponse writeIds = txnHandler.allocateTableWriteIds(rqst); long writeId = writeIds.getTxnToWriteIds().get(0).getWriteId(); assertEquals(txnId, writeIds.getTxnToWriteIds().get(0).getTxnId()); assertEquals(1, writeId); diff --git a/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestTxnHandler.java b/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestTxnHandler.java index f1da15b73e..372c709bed 100644 --- a/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestTxnHandler.java +++ b/ql/src/test/org/apache/hadoop/hive/metastore/txn/TestTxnHandler.java @@ -57,6 +57,7 @@ import org.apache.hadoop.hive.metastore.api.TxnOpenException; import org.apache.hadoop.hive.metastore.api.TxnState; import org.apache.hadoop.hive.metastore.api.UnlockRequest; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; import org.apache.hadoop.util.StringUtils; import org.apache.logging.log4j.Level; import org.apache.logging.log4j.LogManager; @@ -156,8 +157,9 @@ public void testAbortTxn() throws Exception { List parts = new ArrayList(); parts.add("p=1"); - AllocateTableWriteIdsResponse writeIds - = txnHandler.allocateTableWriteIds(new AllocateTableWriteIdsRequest(Collections.singletonList(3L), "default", "T")); + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest("default", "T"); + rqst.setTxnIds(Collections.singletonList(3L)); + AllocateTableWriteIdsResponse writeIds = txnHandler.allocateTableWriteIds(rqst); long writeId = writeIds.getTxnToWriteIds().get(0).getWriteId(); assertEquals(3, writeIds.getTxnToWriteIds().get(0).getTxnId()); assertEquals(1, writeId); @@ -1544,24 +1546,117 @@ public void testRetryableRegex() throws Exception { Assert.assertTrue("regex should be retryable", result); } - @Test - public void testReplOpenTxn() throws Exception { - int numTxn = 50000; + private List replOpenTxnForTest(long startId, int numTxn, String replPolicy) + throws Exception { conf.setIntVar(HiveConf.ConfVars.HIVE_TXN_MAX_OPEN_BATCH, numTxn); + long lastId = startId + numTxn - 1; OpenTxnRequest rqst = new OpenTxnRequest(numTxn, "me", "localhost"); - rqst.setReplPolicy("default.*"); - rqst.setReplSrcTxnIds(LongStream.rangeClosed(1, numTxn) + rqst.setReplPolicy(replPolicy); + rqst.setReplSrcTxnIds(LongStream.rangeClosed(startId, lastId) .boxed().collect(Collectors.toList())); + OpenTxnsResponse openedTxns = txnHandler.openTxns(rqst); List txnList = openedTxns.getTxn_ids(); assertEquals(txnList.size(), numTxn); - for (long i = 0; i < numTxn; i++) { - long txnId = txnList.get((int) i); - assertEquals(i+1, txnId); + int numTxnPresentNow = TxnDbUtil.countQueryAgent(conf, "select count(*) from TXNS where TXN_ID >= " + + txnList.get(0) + " and TXN_ID <= " + txnList.get(numTxn - 1)); + assertEquals(numTxn, numTxnPresentNow); + + checkReplTxnForTest(startId, lastId, replPolicy, txnList); + return txnList; + } + + private void replAbortTxnForTest(List txnList, String replPolicy) + throws Exception { + for (Long txnId : txnList) { + AbortTxnRequest rqst = new AbortTxnRequest(txnId); + rqst.setReplPolicy(replPolicy); + txnHandler.abortTxn(rqst); } + checkReplTxnForTest(txnList.get(0), txnList.get(txnList.size() - 1), replPolicy, new ArrayList<>()); + } + + private void checkReplTxnForTest(Long startTxnId, Long endTxnId, String replPolicy, List targetTxnId) + throws Exception { + String[] output = TxnDbUtil.queryToString(conf, "select RTM_TARGET_TXN_ID from REPL_TXN_MAP where " + + " RTM_SRC_TXN_ID >= " + startTxnId + "and RTM_SRC_TXN_ID <= " + endTxnId + + " and RTM_REPL_POLICY = \'" + replPolicy + "\'").split("\n"); + assertEquals(output.length - 1, targetTxnId.size()); + for (int idx = 1; idx < output.length; idx++) { + long txnId = Long.parseLong(output[idx].trim()); + assertEquals(txnId, targetTxnId.get(idx-1).longValue()); + } + } + + @Test + public void testReplOpenTxn() throws Exception { + int numTxn = 50000; + String[] output = TxnDbUtil.queryToString(conf, "select ntxn_next from NEXT_TXN_ID").split("\n"); + long startTxnId = Long.parseLong(output[1].trim()); + List txnList = replOpenTxnForTest(startTxnId, numTxn, "default.*"); + assert(txnList.size() == numTxn); txnHandler.abortTxns(new AbortTxnsRequest(txnList)); } + @Test + public void testReplAllocWriteId() throws Exception { + int numTxn = 2; + String[] output = TxnDbUtil.queryToString(conf, "select ntxn_next from NEXT_TXN_ID").split("\n"); + long startTxnId = Long.parseLong(output[1].trim()); + List srcTxnIdList = LongStream.rangeClosed(startTxnId, numTxn+startTxnId-1) + .boxed().collect(Collectors.toList()); + List targetTxnList = replOpenTxnForTest(startTxnId, numTxn, "destdb.*"); + assert(targetTxnList.size() == numTxn); + + List srcTxnToWriteId; + List targetTxnToWriteId; + srcTxnToWriteId = new ArrayList<>(); + + for (int idx = 0; idx < numTxn; idx++) { + srcTxnToWriteId.add(new TxnToWriteId(startTxnId+idx, idx+1)); + } + AllocateTableWriteIdsRequest allocMsg = new AllocateTableWriteIdsRequest("destdb", "tbl1"); + allocMsg.setReplPolicy("destdb.*"); + allocMsg.setSrcTxnToWriteIdList(srcTxnToWriteId); + targetTxnToWriteId = txnHandler.allocateTableWriteIds(allocMsg).getTxnToWriteIds(); + for (int idx = 0; idx < targetTxnList.size(); idx++) { + assertEquals(targetTxnToWriteId.get(idx).getWriteId(), srcTxnToWriteId.get(idx).getWriteId()); + assertEquals(Long.valueOf(targetTxnToWriteId.get(idx).getTxnId()), targetTxnList.get(idx)); + } + + // idempotent case for destdb db + targetTxnToWriteId = txnHandler.allocateTableWriteIds(allocMsg).getTxnToWriteIds(); + for (int idx = 0; idx < targetTxnList.size(); idx++) { + assertEquals(targetTxnToWriteId.get(idx).getWriteId(), srcTxnToWriteId.get(idx).getWriteId()); + assertEquals(Long.valueOf(targetTxnToWriteId.get(idx).getTxnId()), targetTxnList.get(idx)); + } + + //invalid case + boolean failed = false; + srcTxnToWriteId = new ArrayList<>(); + srcTxnToWriteId.add(new TxnToWriteId(startTxnId, 2*numTxn+1)); + allocMsg = new AllocateTableWriteIdsRequest("destdb", "tbl2"); + allocMsg.setReplPolicy("destdb.*"); + allocMsg.setSrcTxnToWriteIdList(srcTxnToWriteId); + try { + txnHandler.allocateTableWriteIds(allocMsg).getTxnToWriteIds(); + } catch (IllegalStateException e) { + failed = true; + } + assertTrue(failed); + + replAbortTxnForTest(srcTxnIdList, "destdb.*"); + + // Test for aborted transactions + failed = false; + try { + txnHandler.allocateTableWriteIds(allocMsg).getTxnToWriteIds(); + } catch (RuntimeException e) { + failed = true; + } + assertTrue(failed); + } + private void updateTxns(Connection conn) throws SQLException { Statement stmt = conn.createStatement(); stmt.executeUpdate("update TXNS set txn_last_heartbeat = txn_last_heartbeat + 1"); diff --git a/ql/src/test/org/apache/hadoop/hive/ql/lockmgr/TestDbTxnManager2.java b/ql/src/test/org/apache/hadoop/hive/ql/lockmgr/TestDbTxnManager2.java index 8406caa761..0926663eab 100644 --- a/ql/src/test/org/apache/hadoop/hive/ql/lockmgr/TestDbTxnManager2.java +++ b/ql/src/test/org/apache/hadoop/hive/ql/lockmgr/TestDbTxnManager2.java @@ -1031,9 +1031,9 @@ public void testWriteSetTracking4() throws Exception { //update stmt has p=blah, thus nothing is actually update and we generate empty dyn part list Assert.assertEquals(0, TxnDbUtil.countQueryAgent(conf, "select count(*) from WRITE_SET")); - AllocateTableWriteIdsResponse writeIds - = txnHandler.allocateTableWriteIds(new AllocateTableWriteIdsRequest(Collections.singletonList(txnMgr2.getCurrentTxnId()), - "default", "tab2")); + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest("default", "tab2"); + rqst.setTxnIds(Collections.singletonList(txnMgr2.getCurrentTxnId())); + AllocateTableWriteIdsResponse writeIds = txnHandler.allocateTableWriteIds(rqst); Assert.assertEquals(txnMgr2.getCurrentTxnId(), writeIds.getTxnToWriteIds().get(0).getTxnId()); AddDynamicPartitions adp = new AddDynamicPartitions(txnMgr2.getCurrentTxnId(), writeIds.getTxnToWriteIds().get(0).getWriteId(), @@ -1054,8 +1054,9 @@ public void testWriteSetTracking4() throws Exception { //update stmt has p=blah, thus nothing is actually update and we generate empty dyn part list Assert.assertEquals(0, TxnDbUtil.countQueryAgent(conf, "select count(*) from WRITE_SET")); - writeIds = txnHandler.allocateTableWriteIds(new AllocateTableWriteIdsRequest(Collections.singletonList(txnMgr2.getCurrentTxnId()), - "default", "tab2")); + rqst = new AllocateTableWriteIdsRequest("default", "tab2"); + rqst.setTxnIds(Collections.singletonList(txnMgr2.getCurrentTxnId())); + writeIds = txnHandler.allocateTableWriteIds(rqst); Assert.assertEquals(txnMgr2.getCurrentTxnId(), writeIds.getTxnToWriteIds().get(0).getTxnId()); adp = new AddDynamicPartitions(txnMgr2.getCurrentTxnId(), writeIds.getTxnToWriteIds().get(0).getWriteId(), @@ -1074,8 +1075,9 @@ public void testWriteSetTracking4() throws Exception { checkCmdOnDriver(driver.compileAndRespond("update TAB2 set b = 17 where a = 1", true));//no rows match txnMgr.acquireLocks(driver.getPlan(), ctx, "Long Running"); - writeIds = txnHandler.allocateTableWriteIds(new AllocateTableWriteIdsRequest(Collections.singletonList(txnMgr.getCurrentTxnId()), - "default", "tab2")); + rqst = new AllocateTableWriteIdsRequest("default", "tab2"); + rqst.setTxnIds(Collections.singletonList(txnMgr.getCurrentTxnId())); + writeIds = txnHandler.allocateTableWriteIds(rqst); Assert.assertEquals(txnMgr.getCurrentTxnId(), writeIds.getTxnToWriteIds().get(0).getTxnId()); //so generate empty Dyn Part call @@ -1119,8 +1121,9 @@ public void testWriteSetTracking5() throws Exception { checkLock(LockType.SHARED_WRITE, LockState.WAITING, "default", "TAB_PART", "p=blah", locks); txnMgr.rollbackTxn(); - AllocateTableWriteIdsResponse writeIds - = txnHandler.allocateTableWriteIds(new AllocateTableWriteIdsRequest(Collections.singletonList(txnId), "default", "TAB_PART")); + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest("default", "TAB_PART"); + rqst.setTxnIds(Collections.singletonList(txnId)); + AllocateTableWriteIdsResponse writeIds = txnHandler.allocateTableWriteIds(rqst); Assert.assertEquals(txnId, writeIds.getTxnToWriteIds().get(0).getTxnId()); AddDynamicPartitions adp = new AddDynamicPartitions(txnId, writeIds.getTxnToWriteIds().get(0).getWriteId(), diff --git a/ql/src/test/org/apache/hadoop/hive/ql/txn/compactor/CompactorTest.java b/ql/src/test/org/apache/hadoop/hive/ql/txn/compactor/CompactorTest.java index 083c67182f..124c97e092 100644 --- a/ql/src/test/org/apache/hadoop/hive/ql/txn/compactor/CompactorTest.java +++ b/ql/src/test/org/apache/hadoop/hive/ql/txn/compactor/CompactorTest.java @@ -202,7 +202,8 @@ protected long openTxn() throws MetaException { protected long allocateWriteId(String dbName, String tblName, long txnid) throws MetaException, TxnAbortedException, NoSuchTxnException { AllocateTableWriteIdsRequest awiRqst - = new AllocateTableWriteIdsRequest(Collections.singletonList(txnid), dbName, tblName); + = new AllocateTableWriteIdsRequest(dbName, tblName); + awiRqst.setTxnIds(Collections.singletonList(txnid)); AllocateTableWriteIdsResponse awiResp = txnHandler.allocateTableWriteIds(awiRqst); return awiResp.getTxnToWriteIds().get(0).getWriteId(); } @@ -254,7 +255,8 @@ protected void burnThroughTransactions(String dbName, String tblName, int num) protected void burnThroughTransactions(String dbName, String tblName, int num, Set open, Set aborted) throws MetaException, NoSuchTxnException, TxnAbortedException { OpenTxnsResponse rsp = txnHandler.openTxns(new OpenTxnRequest(num, "me", "localhost")); - AllocateTableWriteIdsRequest awiRqst = new AllocateTableWriteIdsRequest(rsp.getTxn_ids(), dbName, tblName); + AllocateTableWriteIdsRequest awiRqst = new AllocateTableWriteIdsRequest(dbName, tblName); + awiRqst.setTxnIds(rsp.getTxn_ids()); AllocateTableWriteIdsResponse awiResp = txnHandler.allocateTableWriteIds(awiRqst); int i = 0; for (long tid : rsp.getTxn_ids()) { diff --git a/standalone-metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp b/standalone-metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp index fd52f09fd6..dfa13a0614 100644 --- a/standalone-metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp +++ b/standalone-metastore/src/gen/thrift/gen-cpp/ThriftHiveMetastore.cpp @@ -2107,14 +2107,14 @@ uint32_t ThriftHiveMetastore_get_databases_result::read(::apache::thrift::protoc if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1181; - ::apache::thrift::protocol::TType _etype1184; - xfer += iprot->readListBegin(_etype1184, _size1181); - this->success.resize(_size1181); - uint32_t _i1185; - for (_i1185 = 0; _i1185 < _size1181; ++_i1185) + uint32_t _size1187; + ::apache::thrift::protocol::TType _etype1190; + xfer += iprot->readListBegin(_etype1190, _size1187); + this->success.resize(_size1187); + uint32_t _i1191; + for (_i1191 = 0; _i1191 < _size1187; ++_i1191) { - xfer += iprot->readString(this->success[_i1185]); + xfer += iprot->readString(this->success[_i1191]); } xfer += iprot->readListEnd(); } @@ -2153,10 +2153,10 @@ uint32_t ThriftHiveMetastore_get_databases_result::write(::apache::thrift::proto xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1186; - for (_iter1186 = this->success.begin(); _iter1186 != this->success.end(); ++_iter1186) + std::vector ::const_iterator _iter1192; + for (_iter1192 = this->success.begin(); _iter1192 != this->success.end(); ++_iter1192) { - xfer += oprot->writeString((*_iter1186)); + xfer += oprot->writeString((*_iter1192)); } xfer += oprot->writeListEnd(); } @@ -2201,14 +2201,14 @@ uint32_t ThriftHiveMetastore_get_databases_presult::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1187; - ::apache::thrift::protocol::TType _etype1190; - xfer += iprot->readListBegin(_etype1190, _size1187); - (*(this->success)).resize(_size1187); - uint32_t _i1191; - for (_i1191 = 0; _i1191 < _size1187; ++_i1191) + uint32_t _size1193; + ::apache::thrift::protocol::TType _etype1196; + xfer += iprot->readListBegin(_etype1196, _size1193); + (*(this->success)).resize(_size1193); + uint32_t _i1197; + for (_i1197 = 0; _i1197 < _size1193; ++_i1197) { - xfer += iprot->readString((*(this->success))[_i1191]); + xfer += iprot->readString((*(this->success))[_i1197]); } xfer += iprot->readListEnd(); } @@ -2325,14 +2325,14 @@ uint32_t ThriftHiveMetastore_get_all_databases_result::read(::apache::thrift::pr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1192; - ::apache::thrift::protocol::TType _etype1195; - xfer += iprot->readListBegin(_etype1195, _size1192); - this->success.resize(_size1192); - uint32_t _i1196; - for (_i1196 = 0; _i1196 < _size1192; ++_i1196) + uint32_t _size1198; + ::apache::thrift::protocol::TType _etype1201; + xfer += iprot->readListBegin(_etype1201, _size1198); + this->success.resize(_size1198); + uint32_t _i1202; + for (_i1202 = 0; _i1202 < _size1198; ++_i1202) { - xfer += iprot->readString(this->success[_i1196]); + xfer += iprot->readString(this->success[_i1202]); } xfer += iprot->readListEnd(); } @@ -2371,10 +2371,10 @@ uint32_t ThriftHiveMetastore_get_all_databases_result::write(::apache::thrift::p xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1197; - for (_iter1197 = this->success.begin(); _iter1197 != this->success.end(); ++_iter1197) + std::vector ::const_iterator _iter1203; + for (_iter1203 = this->success.begin(); _iter1203 != this->success.end(); ++_iter1203) { - xfer += oprot->writeString((*_iter1197)); + xfer += oprot->writeString((*_iter1203)); } xfer += oprot->writeListEnd(); } @@ -2419,14 +2419,14 @@ uint32_t ThriftHiveMetastore_get_all_databases_presult::read(::apache::thrift::p if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1198; - ::apache::thrift::protocol::TType _etype1201; - xfer += iprot->readListBegin(_etype1201, _size1198); - (*(this->success)).resize(_size1198); - uint32_t _i1202; - for (_i1202 = 0; _i1202 < _size1198; ++_i1202) + uint32_t _size1204; + ::apache::thrift::protocol::TType _etype1207; + xfer += iprot->readListBegin(_etype1207, _size1204); + (*(this->success)).resize(_size1204); + uint32_t _i1208; + for (_i1208 = 0; _i1208 < _size1204; ++_i1208) { - xfer += iprot->readString((*(this->success))[_i1202]); + xfer += iprot->readString((*(this->success))[_i1208]); } xfer += iprot->readListEnd(); } @@ -3488,17 +3488,17 @@ uint32_t ThriftHiveMetastore_get_type_all_result::read(::apache::thrift::protoco if (ftype == ::apache::thrift::protocol::T_MAP) { { this->success.clear(); - uint32_t _size1203; - ::apache::thrift::protocol::TType _ktype1204; - ::apache::thrift::protocol::TType _vtype1205; - xfer += iprot->readMapBegin(_ktype1204, _vtype1205, _size1203); - uint32_t _i1207; - for (_i1207 = 0; _i1207 < _size1203; ++_i1207) + uint32_t _size1209; + ::apache::thrift::protocol::TType _ktype1210; + ::apache::thrift::protocol::TType _vtype1211; + xfer += iprot->readMapBegin(_ktype1210, _vtype1211, _size1209); + uint32_t _i1213; + for (_i1213 = 0; _i1213 < _size1209; ++_i1213) { - std::string _key1208; - xfer += iprot->readString(_key1208); - Type& _val1209 = this->success[_key1208]; - xfer += _val1209.read(iprot); + std::string _key1214; + xfer += iprot->readString(_key1214); + Type& _val1215 = this->success[_key1214]; + xfer += _val1215.read(iprot); } xfer += iprot->readMapEnd(); } @@ -3537,11 +3537,11 @@ uint32_t ThriftHiveMetastore_get_type_all_result::write(::apache::thrift::protoc xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_MAP, 0); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::map ::const_iterator _iter1210; - for (_iter1210 = this->success.begin(); _iter1210 != this->success.end(); ++_iter1210) + std::map ::const_iterator _iter1216; + for (_iter1216 = this->success.begin(); _iter1216 != this->success.end(); ++_iter1216) { - xfer += oprot->writeString(_iter1210->first); - xfer += _iter1210->second.write(oprot); + xfer += oprot->writeString(_iter1216->first); + xfer += _iter1216->second.write(oprot); } xfer += oprot->writeMapEnd(); } @@ -3586,17 +3586,17 @@ uint32_t ThriftHiveMetastore_get_type_all_presult::read(::apache::thrift::protoc if (ftype == ::apache::thrift::protocol::T_MAP) { { (*(this->success)).clear(); - uint32_t _size1211; - ::apache::thrift::protocol::TType _ktype1212; - ::apache::thrift::protocol::TType _vtype1213; - xfer += iprot->readMapBegin(_ktype1212, _vtype1213, _size1211); - uint32_t _i1215; - for (_i1215 = 0; _i1215 < _size1211; ++_i1215) + uint32_t _size1217; + ::apache::thrift::protocol::TType _ktype1218; + ::apache::thrift::protocol::TType _vtype1219; + xfer += iprot->readMapBegin(_ktype1218, _vtype1219, _size1217); + uint32_t _i1221; + for (_i1221 = 0; _i1221 < _size1217; ++_i1221) { - std::string _key1216; - xfer += iprot->readString(_key1216); - Type& _val1217 = (*(this->success))[_key1216]; - xfer += _val1217.read(iprot); + std::string _key1222; + xfer += iprot->readString(_key1222); + Type& _val1223 = (*(this->success))[_key1222]; + xfer += _val1223.read(iprot); } xfer += iprot->readMapEnd(); } @@ -3750,14 +3750,14 @@ uint32_t ThriftHiveMetastore_get_fields_result::read(::apache::thrift::protocol: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1218; - ::apache::thrift::protocol::TType _etype1221; - xfer += iprot->readListBegin(_etype1221, _size1218); - this->success.resize(_size1218); - uint32_t _i1222; - for (_i1222 = 0; _i1222 < _size1218; ++_i1222) + uint32_t _size1224; + ::apache::thrift::protocol::TType _etype1227; + xfer += iprot->readListBegin(_etype1227, _size1224); + this->success.resize(_size1224); + uint32_t _i1228; + for (_i1228 = 0; _i1228 < _size1224; ++_i1228) { - xfer += this->success[_i1222].read(iprot); + xfer += this->success[_i1228].read(iprot); } xfer += iprot->readListEnd(); } @@ -3812,10 +3812,10 @@ uint32_t ThriftHiveMetastore_get_fields_result::write(::apache::thrift::protocol xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1223; - for (_iter1223 = this->success.begin(); _iter1223 != this->success.end(); ++_iter1223) + std::vector ::const_iterator _iter1229; + for (_iter1229 = this->success.begin(); _iter1229 != this->success.end(); ++_iter1229) { - xfer += (*_iter1223).write(oprot); + xfer += (*_iter1229).write(oprot); } xfer += oprot->writeListEnd(); } @@ -3868,14 +3868,14 @@ uint32_t ThriftHiveMetastore_get_fields_presult::read(::apache::thrift::protocol if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1224; - ::apache::thrift::protocol::TType _etype1227; - xfer += iprot->readListBegin(_etype1227, _size1224); - (*(this->success)).resize(_size1224); - uint32_t _i1228; - for (_i1228 = 0; _i1228 < _size1224; ++_i1228) + uint32_t _size1230; + ::apache::thrift::protocol::TType _etype1233; + xfer += iprot->readListBegin(_etype1233, _size1230); + (*(this->success)).resize(_size1230); + uint32_t _i1234; + for (_i1234 = 0; _i1234 < _size1230; ++_i1234) { - xfer += (*(this->success))[_i1228].read(iprot); + xfer += (*(this->success))[_i1234].read(iprot); } xfer += iprot->readListEnd(); } @@ -4061,14 +4061,14 @@ uint32_t ThriftHiveMetastore_get_fields_with_environment_context_result::read(:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1229; - ::apache::thrift::protocol::TType _etype1232; - xfer += iprot->readListBegin(_etype1232, _size1229); - this->success.resize(_size1229); - uint32_t _i1233; - for (_i1233 = 0; _i1233 < _size1229; ++_i1233) + uint32_t _size1235; + ::apache::thrift::protocol::TType _etype1238; + xfer += iprot->readListBegin(_etype1238, _size1235); + this->success.resize(_size1235); + uint32_t _i1239; + for (_i1239 = 0; _i1239 < _size1235; ++_i1239) { - xfer += this->success[_i1233].read(iprot); + xfer += this->success[_i1239].read(iprot); } xfer += iprot->readListEnd(); } @@ -4123,10 +4123,10 @@ uint32_t ThriftHiveMetastore_get_fields_with_environment_context_result::write(: xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1234; - for (_iter1234 = this->success.begin(); _iter1234 != this->success.end(); ++_iter1234) + std::vector ::const_iterator _iter1240; + for (_iter1240 = this->success.begin(); _iter1240 != this->success.end(); ++_iter1240) { - xfer += (*_iter1234).write(oprot); + xfer += (*_iter1240).write(oprot); } xfer += oprot->writeListEnd(); } @@ -4179,14 +4179,14 @@ uint32_t ThriftHiveMetastore_get_fields_with_environment_context_presult::read(: if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1235; - ::apache::thrift::protocol::TType _etype1238; - xfer += iprot->readListBegin(_etype1238, _size1235); - (*(this->success)).resize(_size1235); - uint32_t _i1239; - for (_i1239 = 0; _i1239 < _size1235; ++_i1239) + uint32_t _size1241; + ::apache::thrift::protocol::TType _etype1244; + xfer += iprot->readListBegin(_etype1244, _size1241); + (*(this->success)).resize(_size1241); + uint32_t _i1245; + for (_i1245 = 0; _i1245 < _size1241; ++_i1245) { - xfer += (*(this->success))[_i1239].read(iprot); + xfer += (*(this->success))[_i1245].read(iprot); } xfer += iprot->readListEnd(); } @@ -4356,14 +4356,14 @@ uint32_t ThriftHiveMetastore_get_schema_result::read(::apache::thrift::protocol: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1240; - ::apache::thrift::protocol::TType _etype1243; - xfer += iprot->readListBegin(_etype1243, _size1240); - this->success.resize(_size1240); - uint32_t _i1244; - for (_i1244 = 0; _i1244 < _size1240; ++_i1244) + uint32_t _size1246; + ::apache::thrift::protocol::TType _etype1249; + xfer += iprot->readListBegin(_etype1249, _size1246); + this->success.resize(_size1246); + uint32_t _i1250; + for (_i1250 = 0; _i1250 < _size1246; ++_i1250) { - xfer += this->success[_i1244].read(iprot); + xfer += this->success[_i1250].read(iprot); } xfer += iprot->readListEnd(); } @@ -4418,10 +4418,10 @@ uint32_t ThriftHiveMetastore_get_schema_result::write(::apache::thrift::protocol xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1245; - for (_iter1245 = this->success.begin(); _iter1245 != this->success.end(); ++_iter1245) + std::vector ::const_iterator _iter1251; + for (_iter1251 = this->success.begin(); _iter1251 != this->success.end(); ++_iter1251) { - xfer += (*_iter1245).write(oprot); + xfer += (*_iter1251).write(oprot); } xfer += oprot->writeListEnd(); } @@ -4474,14 +4474,14 @@ uint32_t ThriftHiveMetastore_get_schema_presult::read(::apache::thrift::protocol if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1246; - ::apache::thrift::protocol::TType _etype1249; - xfer += iprot->readListBegin(_etype1249, _size1246); - (*(this->success)).resize(_size1246); - uint32_t _i1250; - for (_i1250 = 0; _i1250 < _size1246; ++_i1250) + uint32_t _size1252; + ::apache::thrift::protocol::TType _etype1255; + xfer += iprot->readListBegin(_etype1255, _size1252); + (*(this->success)).resize(_size1252); + uint32_t _i1256; + for (_i1256 = 0; _i1256 < _size1252; ++_i1256) { - xfer += (*(this->success))[_i1250].read(iprot); + xfer += (*(this->success))[_i1256].read(iprot); } xfer += iprot->readListEnd(); } @@ -4667,14 +4667,14 @@ uint32_t ThriftHiveMetastore_get_schema_with_environment_context_result::read(:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1251; - ::apache::thrift::protocol::TType _etype1254; - xfer += iprot->readListBegin(_etype1254, _size1251); - this->success.resize(_size1251); - uint32_t _i1255; - for (_i1255 = 0; _i1255 < _size1251; ++_i1255) + uint32_t _size1257; + ::apache::thrift::protocol::TType _etype1260; + xfer += iprot->readListBegin(_etype1260, _size1257); + this->success.resize(_size1257); + uint32_t _i1261; + for (_i1261 = 0; _i1261 < _size1257; ++_i1261) { - xfer += this->success[_i1255].read(iprot); + xfer += this->success[_i1261].read(iprot); } xfer += iprot->readListEnd(); } @@ -4729,10 +4729,10 @@ uint32_t ThriftHiveMetastore_get_schema_with_environment_context_result::write(: xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1256; - for (_iter1256 = this->success.begin(); _iter1256 != this->success.end(); ++_iter1256) + std::vector ::const_iterator _iter1262; + for (_iter1262 = this->success.begin(); _iter1262 != this->success.end(); ++_iter1262) { - xfer += (*_iter1256).write(oprot); + xfer += (*_iter1262).write(oprot); } xfer += oprot->writeListEnd(); } @@ -4785,14 +4785,14 @@ uint32_t ThriftHiveMetastore_get_schema_with_environment_context_presult::read(: if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1257; - ::apache::thrift::protocol::TType _etype1260; - xfer += iprot->readListBegin(_etype1260, _size1257); - (*(this->success)).resize(_size1257); - uint32_t _i1261; - for (_i1261 = 0; _i1261 < _size1257; ++_i1261) + uint32_t _size1263; + ::apache::thrift::protocol::TType _etype1266; + xfer += iprot->readListBegin(_etype1266, _size1263); + (*(this->success)).resize(_size1263); + uint32_t _i1267; + for (_i1267 = 0; _i1267 < _size1263; ++_i1267) { - xfer += (*(this->success))[_i1261].read(iprot); + xfer += (*(this->success))[_i1267].read(iprot); } xfer += iprot->readListEnd(); } @@ -5385,14 +5385,14 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::read(::apache:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->primaryKeys.clear(); - uint32_t _size1262; - ::apache::thrift::protocol::TType _etype1265; - xfer += iprot->readListBegin(_etype1265, _size1262); - this->primaryKeys.resize(_size1262); - uint32_t _i1266; - for (_i1266 = 0; _i1266 < _size1262; ++_i1266) + uint32_t _size1268; + ::apache::thrift::protocol::TType _etype1271; + xfer += iprot->readListBegin(_etype1271, _size1268); + this->primaryKeys.resize(_size1268); + uint32_t _i1272; + for (_i1272 = 0; _i1272 < _size1268; ++_i1272) { - xfer += this->primaryKeys[_i1266].read(iprot); + xfer += this->primaryKeys[_i1272].read(iprot); } xfer += iprot->readListEnd(); } @@ -5405,14 +5405,14 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::read(::apache:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->foreignKeys.clear(); - uint32_t _size1267; - ::apache::thrift::protocol::TType _etype1270; - xfer += iprot->readListBegin(_etype1270, _size1267); - this->foreignKeys.resize(_size1267); - uint32_t _i1271; - for (_i1271 = 0; _i1271 < _size1267; ++_i1271) + uint32_t _size1273; + ::apache::thrift::protocol::TType _etype1276; + xfer += iprot->readListBegin(_etype1276, _size1273); + this->foreignKeys.resize(_size1273); + uint32_t _i1277; + for (_i1277 = 0; _i1277 < _size1273; ++_i1277) { - xfer += this->foreignKeys[_i1271].read(iprot); + xfer += this->foreignKeys[_i1277].read(iprot); } xfer += iprot->readListEnd(); } @@ -5425,14 +5425,14 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::read(::apache:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->uniqueConstraints.clear(); - uint32_t _size1272; - ::apache::thrift::protocol::TType _etype1275; - xfer += iprot->readListBegin(_etype1275, _size1272); - this->uniqueConstraints.resize(_size1272); - uint32_t _i1276; - for (_i1276 = 0; _i1276 < _size1272; ++_i1276) + uint32_t _size1278; + ::apache::thrift::protocol::TType _etype1281; + xfer += iprot->readListBegin(_etype1281, _size1278); + this->uniqueConstraints.resize(_size1278); + uint32_t _i1282; + for (_i1282 = 0; _i1282 < _size1278; ++_i1282) { - xfer += this->uniqueConstraints[_i1276].read(iprot); + xfer += this->uniqueConstraints[_i1282].read(iprot); } xfer += iprot->readListEnd(); } @@ -5445,14 +5445,14 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::read(::apache:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->notNullConstraints.clear(); - uint32_t _size1277; - ::apache::thrift::protocol::TType _etype1280; - xfer += iprot->readListBegin(_etype1280, _size1277); - this->notNullConstraints.resize(_size1277); - uint32_t _i1281; - for (_i1281 = 0; _i1281 < _size1277; ++_i1281) + uint32_t _size1283; + ::apache::thrift::protocol::TType _etype1286; + xfer += iprot->readListBegin(_etype1286, _size1283); + this->notNullConstraints.resize(_size1283); + uint32_t _i1287; + for (_i1287 = 0; _i1287 < _size1283; ++_i1287) { - xfer += this->notNullConstraints[_i1281].read(iprot); + xfer += this->notNullConstraints[_i1287].read(iprot); } xfer += iprot->readListEnd(); } @@ -5465,14 +5465,14 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::read(::apache:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->defaultConstraints.clear(); - uint32_t _size1282; - ::apache::thrift::protocol::TType _etype1285; - xfer += iprot->readListBegin(_etype1285, _size1282); - this->defaultConstraints.resize(_size1282); - uint32_t _i1286; - for (_i1286 = 0; _i1286 < _size1282; ++_i1286) + uint32_t _size1288; + ::apache::thrift::protocol::TType _etype1291; + xfer += iprot->readListBegin(_etype1291, _size1288); + this->defaultConstraints.resize(_size1288); + uint32_t _i1292; + for (_i1292 = 0; _i1292 < _size1288; ++_i1292) { - xfer += this->defaultConstraints[_i1286].read(iprot); + xfer += this->defaultConstraints[_i1292].read(iprot); } xfer += iprot->readListEnd(); } @@ -5485,14 +5485,14 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::read(::apache:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->checkConstraints.clear(); - uint32_t _size1287; - ::apache::thrift::protocol::TType _etype1290; - xfer += iprot->readListBegin(_etype1290, _size1287); - this->checkConstraints.resize(_size1287); - uint32_t _i1291; - for (_i1291 = 0; _i1291 < _size1287; ++_i1291) + uint32_t _size1293; + ::apache::thrift::protocol::TType _etype1296; + xfer += iprot->readListBegin(_etype1296, _size1293); + this->checkConstraints.resize(_size1293); + uint32_t _i1297; + for (_i1297 = 0; _i1297 < _size1293; ++_i1297) { - xfer += this->checkConstraints[_i1291].read(iprot); + xfer += this->checkConstraints[_i1297].read(iprot); } xfer += iprot->readListEnd(); } @@ -5525,10 +5525,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::write(::apache: xfer += oprot->writeFieldBegin("primaryKeys", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->primaryKeys.size())); - std::vector ::const_iterator _iter1292; - for (_iter1292 = this->primaryKeys.begin(); _iter1292 != this->primaryKeys.end(); ++_iter1292) + std::vector ::const_iterator _iter1298; + for (_iter1298 = this->primaryKeys.begin(); _iter1298 != this->primaryKeys.end(); ++_iter1298) { - xfer += (*_iter1292).write(oprot); + xfer += (*_iter1298).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5537,10 +5537,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::write(::apache: xfer += oprot->writeFieldBegin("foreignKeys", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->foreignKeys.size())); - std::vector ::const_iterator _iter1293; - for (_iter1293 = this->foreignKeys.begin(); _iter1293 != this->foreignKeys.end(); ++_iter1293) + std::vector ::const_iterator _iter1299; + for (_iter1299 = this->foreignKeys.begin(); _iter1299 != this->foreignKeys.end(); ++_iter1299) { - xfer += (*_iter1293).write(oprot); + xfer += (*_iter1299).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5549,10 +5549,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::write(::apache: xfer += oprot->writeFieldBegin("uniqueConstraints", ::apache::thrift::protocol::T_LIST, 4); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->uniqueConstraints.size())); - std::vector ::const_iterator _iter1294; - for (_iter1294 = this->uniqueConstraints.begin(); _iter1294 != this->uniqueConstraints.end(); ++_iter1294) + std::vector ::const_iterator _iter1300; + for (_iter1300 = this->uniqueConstraints.begin(); _iter1300 != this->uniqueConstraints.end(); ++_iter1300) { - xfer += (*_iter1294).write(oprot); + xfer += (*_iter1300).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5561,10 +5561,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::write(::apache: xfer += oprot->writeFieldBegin("notNullConstraints", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->notNullConstraints.size())); - std::vector ::const_iterator _iter1295; - for (_iter1295 = this->notNullConstraints.begin(); _iter1295 != this->notNullConstraints.end(); ++_iter1295) + std::vector ::const_iterator _iter1301; + for (_iter1301 = this->notNullConstraints.begin(); _iter1301 != this->notNullConstraints.end(); ++_iter1301) { - xfer += (*_iter1295).write(oprot); + xfer += (*_iter1301).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5573,10 +5573,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::write(::apache: xfer += oprot->writeFieldBegin("defaultConstraints", ::apache::thrift::protocol::T_LIST, 6); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->defaultConstraints.size())); - std::vector ::const_iterator _iter1296; - for (_iter1296 = this->defaultConstraints.begin(); _iter1296 != this->defaultConstraints.end(); ++_iter1296) + std::vector ::const_iterator _iter1302; + for (_iter1302 = this->defaultConstraints.begin(); _iter1302 != this->defaultConstraints.end(); ++_iter1302) { - xfer += (*_iter1296).write(oprot); + xfer += (*_iter1302).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5585,10 +5585,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_args::write(::apache: xfer += oprot->writeFieldBegin("checkConstraints", ::apache::thrift::protocol::T_LIST, 7); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->checkConstraints.size())); - std::vector ::const_iterator _iter1297; - for (_iter1297 = this->checkConstraints.begin(); _iter1297 != this->checkConstraints.end(); ++_iter1297) + std::vector ::const_iterator _iter1303; + for (_iter1303 = this->checkConstraints.begin(); _iter1303 != this->checkConstraints.end(); ++_iter1303) { - xfer += (*_iter1297).write(oprot); + xfer += (*_iter1303).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5616,10 +5616,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_pargs::write(::apache xfer += oprot->writeFieldBegin("primaryKeys", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->primaryKeys)).size())); - std::vector ::const_iterator _iter1298; - for (_iter1298 = (*(this->primaryKeys)).begin(); _iter1298 != (*(this->primaryKeys)).end(); ++_iter1298) + std::vector ::const_iterator _iter1304; + for (_iter1304 = (*(this->primaryKeys)).begin(); _iter1304 != (*(this->primaryKeys)).end(); ++_iter1304) { - xfer += (*_iter1298).write(oprot); + xfer += (*_iter1304).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5628,10 +5628,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_pargs::write(::apache xfer += oprot->writeFieldBegin("foreignKeys", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->foreignKeys)).size())); - std::vector ::const_iterator _iter1299; - for (_iter1299 = (*(this->foreignKeys)).begin(); _iter1299 != (*(this->foreignKeys)).end(); ++_iter1299) + std::vector ::const_iterator _iter1305; + for (_iter1305 = (*(this->foreignKeys)).begin(); _iter1305 != (*(this->foreignKeys)).end(); ++_iter1305) { - xfer += (*_iter1299).write(oprot); + xfer += (*_iter1305).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5640,10 +5640,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_pargs::write(::apache xfer += oprot->writeFieldBegin("uniqueConstraints", ::apache::thrift::protocol::T_LIST, 4); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->uniqueConstraints)).size())); - std::vector ::const_iterator _iter1300; - for (_iter1300 = (*(this->uniqueConstraints)).begin(); _iter1300 != (*(this->uniqueConstraints)).end(); ++_iter1300) + std::vector ::const_iterator _iter1306; + for (_iter1306 = (*(this->uniqueConstraints)).begin(); _iter1306 != (*(this->uniqueConstraints)).end(); ++_iter1306) { - xfer += (*_iter1300).write(oprot); + xfer += (*_iter1306).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5652,10 +5652,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_pargs::write(::apache xfer += oprot->writeFieldBegin("notNullConstraints", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->notNullConstraints)).size())); - std::vector ::const_iterator _iter1301; - for (_iter1301 = (*(this->notNullConstraints)).begin(); _iter1301 != (*(this->notNullConstraints)).end(); ++_iter1301) + std::vector ::const_iterator _iter1307; + for (_iter1307 = (*(this->notNullConstraints)).begin(); _iter1307 != (*(this->notNullConstraints)).end(); ++_iter1307) { - xfer += (*_iter1301).write(oprot); + xfer += (*_iter1307).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5664,10 +5664,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_pargs::write(::apache xfer += oprot->writeFieldBegin("defaultConstraints", ::apache::thrift::protocol::T_LIST, 6); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->defaultConstraints)).size())); - std::vector ::const_iterator _iter1302; - for (_iter1302 = (*(this->defaultConstraints)).begin(); _iter1302 != (*(this->defaultConstraints)).end(); ++_iter1302) + std::vector ::const_iterator _iter1308; + for (_iter1308 = (*(this->defaultConstraints)).begin(); _iter1308 != (*(this->defaultConstraints)).end(); ++_iter1308) { - xfer += (*_iter1302).write(oprot); + xfer += (*_iter1308).write(oprot); } xfer += oprot->writeListEnd(); } @@ -5676,10 +5676,10 @@ uint32_t ThriftHiveMetastore_create_table_with_constraints_pargs::write(::apache xfer += oprot->writeFieldBegin("checkConstraints", ::apache::thrift::protocol::T_LIST, 7); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->checkConstraints)).size())); - std::vector ::const_iterator _iter1303; - for (_iter1303 = (*(this->checkConstraints)).begin(); _iter1303 != (*(this->checkConstraints)).end(); ++_iter1303) + std::vector ::const_iterator _iter1309; + for (_iter1309 = (*(this->checkConstraints)).begin(); _iter1309 != (*(this->checkConstraints)).end(); ++_iter1309) { - xfer += (*_iter1303).write(oprot); + xfer += (*_iter1309).write(oprot); } xfer += oprot->writeListEnd(); } @@ -7847,14 +7847,14 @@ uint32_t ThriftHiveMetastore_truncate_table_args::read(::apache::thrift::protoco if (ftype == ::apache::thrift::protocol::T_LIST) { { this->partNames.clear(); - uint32_t _size1304; - ::apache::thrift::protocol::TType _etype1307; - xfer += iprot->readListBegin(_etype1307, _size1304); - this->partNames.resize(_size1304); - uint32_t _i1308; - for (_i1308 = 0; _i1308 < _size1304; ++_i1308) + uint32_t _size1310; + ::apache::thrift::protocol::TType _etype1313; + xfer += iprot->readListBegin(_etype1313, _size1310); + this->partNames.resize(_size1310); + uint32_t _i1314; + for (_i1314 = 0; _i1314 < _size1310; ++_i1314) { - xfer += iprot->readString(this->partNames[_i1308]); + xfer += iprot->readString(this->partNames[_i1314]); } xfer += iprot->readListEnd(); } @@ -7891,10 +7891,10 @@ uint32_t ThriftHiveMetastore_truncate_table_args::write(::apache::thrift::protoc xfer += oprot->writeFieldBegin("partNames", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->partNames.size())); - std::vector ::const_iterator _iter1309; - for (_iter1309 = this->partNames.begin(); _iter1309 != this->partNames.end(); ++_iter1309) + std::vector ::const_iterator _iter1315; + for (_iter1315 = this->partNames.begin(); _iter1315 != this->partNames.end(); ++_iter1315) { - xfer += oprot->writeString((*_iter1309)); + xfer += oprot->writeString((*_iter1315)); } xfer += oprot->writeListEnd(); } @@ -7926,10 +7926,10 @@ uint32_t ThriftHiveMetastore_truncate_table_pargs::write(::apache::thrift::proto xfer += oprot->writeFieldBegin("partNames", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->partNames)).size())); - std::vector ::const_iterator _iter1310; - for (_iter1310 = (*(this->partNames)).begin(); _iter1310 != (*(this->partNames)).end(); ++_iter1310) + std::vector ::const_iterator _iter1316; + for (_iter1316 = (*(this->partNames)).begin(); _iter1316 != (*(this->partNames)).end(); ++_iter1316) { - xfer += oprot->writeString((*_iter1310)); + xfer += oprot->writeString((*_iter1316)); } xfer += oprot->writeListEnd(); } @@ -8173,14 +8173,14 @@ uint32_t ThriftHiveMetastore_get_tables_result::read(::apache::thrift::protocol: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1311; - ::apache::thrift::protocol::TType _etype1314; - xfer += iprot->readListBegin(_etype1314, _size1311); - this->success.resize(_size1311); - uint32_t _i1315; - for (_i1315 = 0; _i1315 < _size1311; ++_i1315) + uint32_t _size1317; + ::apache::thrift::protocol::TType _etype1320; + xfer += iprot->readListBegin(_etype1320, _size1317); + this->success.resize(_size1317); + uint32_t _i1321; + for (_i1321 = 0; _i1321 < _size1317; ++_i1321) { - xfer += iprot->readString(this->success[_i1315]); + xfer += iprot->readString(this->success[_i1321]); } xfer += iprot->readListEnd(); } @@ -8219,10 +8219,10 @@ uint32_t ThriftHiveMetastore_get_tables_result::write(::apache::thrift::protocol xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1316; - for (_iter1316 = this->success.begin(); _iter1316 != this->success.end(); ++_iter1316) + std::vector ::const_iterator _iter1322; + for (_iter1322 = this->success.begin(); _iter1322 != this->success.end(); ++_iter1322) { - xfer += oprot->writeString((*_iter1316)); + xfer += oprot->writeString((*_iter1322)); } xfer += oprot->writeListEnd(); } @@ -8267,14 +8267,14 @@ uint32_t ThriftHiveMetastore_get_tables_presult::read(::apache::thrift::protocol if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1317; - ::apache::thrift::protocol::TType _etype1320; - xfer += iprot->readListBegin(_etype1320, _size1317); - (*(this->success)).resize(_size1317); - uint32_t _i1321; - for (_i1321 = 0; _i1321 < _size1317; ++_i1321) + uint32_t _size1323; + ::apache::thrift::protocol::TType _etype1326; + xfer += iprot->readListBegin(_etype1326, _size1323); + (*(this->success)).resize(_size1323); + uint32_t _i1327; + for (_i1327 = 0; _i1327 < _size1323; ++_i1327) { - xfer += iprot->readString((*(this->success))[_i1321]); + xfer += iprot->readString((*(this->success))[_i1327]); } xfer += iprot->readListEnd(); } @@ -8444,14 +8444,14 @@ uint32_t ThriftHiveMetastore_get_tables_by_type_result::read(::apache::thrift::p if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1322; - ::apache::thrift::protocol::TType _etype1325; - xfer += iprot->readListBegin(_etype1325, _size1322); - this->success.resize(_size1322); - uint32_t _i1326; - for (_i1326 = 0; _i1326 < _size1322; ++_i1326) + uint32_t _size1328; + ::apache::thrift::protocol::TType _etype1331; + xfer += iprot->readListBegin(_etype1331, _size1328); + this->success.resize(_size1328); + uint32_t _i1332; + for (_i1332 = 0; _i1332 < _size1328; ++_i1332) { - xfer += iprot->readString(this->success[_i1326]); + xfer += iprot->readString(this->success[_i1332]); } xfer += iprot->readListEnd(); } @@ -8490,10 +8490,10 @@ uint32_t ThriftHiveMetastore_get_tables_by_type_result::write(::apache::thrift:: xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1327; - for (_iter1327 = this->success.begin(); _iter1327 != this->success.end(); ++_iter1327) + std::vector ::const_iterator _iter1333; + for (_iter1333 = this->success.begin(); _iter1333 != this->success.end(); ++_iter1333) { - xfer += oprot->writeString((*_iter1327)); + xfer += oprot->writeString((*_iter1333)); } xfer += oprot->writeListEnd(); } @@ -8538,14 +8538,14 @@ uint32_t ThriftHiveMetastore_get_tables_by_type_presult::read(::apache::thrift:: if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1328; - ::apache::thrift::protocol::TType _etype1331; - xfer += iprot->readListBegin(_etype1331, _size1328); - (*(this->success)).resize(_size1328); - uint32_t _i1332; - for (_i1332 = 0; _i1332 < _size1328; ++_i1332) + uint32_t _size1334; + ::apache::thrift::protocol::TType _etype1337; + xfer += iprot->readListBegin(_etype1337, _size1334); + (*(this->success)).resize(_size1334); + uint32_t _i1338; + for (_i1338 = 0; _i1338 < _size1334; ++_i1338) { - xfer += iprot->readString((*(this->success))[_i1332]); + xfer += iprot->readString((*(this->success))[_i1338]); } xfer += iprot->readListEnd(); } @@ -8683,14 +8683,14 @@ uint32_t ThriftHiveMetastore_get_materialized_views_for_rewriting_result::read(: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1333; - ::apache::thrift::protocol::TType _etype1336; - xfer += iprot->readListBegin(_etype1336, _size1333); - this->success.resize(_size1333); - uint32_t _i1337; - for (_i1337 = 0; _i1337 < _size1333; ++_i1337) + uint32_t _size1339; + ::apache::thrift::protocol::TType _etype1342; + xfer += iprot->readListBegin(_etype1342, _size1339); + this->success.resize(_size1339); + uint32_t _i1343; + for (_i1343 = 0; _i1343 < _size1339; ++_i1343) { - xfer += iprot->readString(this->success[_i1337]); + xfer += iprot->readString(this->success[_i1343]); } xfer += iprot->readListEnd(); } @@ -8729,10 +8729,10 @@ uint32_t ThriftHiveMetastore_get_materialized_views_for_rewriting_result::write( xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1338; - for (_iter1338 = this->success.begin(); _iter1338 != this->success.end(); ++_iter1338) + std::vector ::const_iterator _iter1344; + for (_iter1344 = this->success.begin(); _iter1344 != this->success.end(); ++_iter1344) { - xfer += oprot->writeString((*_iter1338)); + xfer += oprot->writeString((*_iter1344)); } xfer += oprot->writeListEnd(); } @@ -8777,14 +8777,14 @@ uint32_t ThriftHiveMetastore_get_materialized_views_for_rewriting_presult::read( if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1339; - ::apache::thrift::protocol::TType _etype1342; - xfer += iprot->readListBegin(_etype1342, _size1339); - (*(this->success)).resize(_size1339); - uint32_t _i1343; - for (_i1343 = 0; _i1343 < _size1339; ++_i1343) + uint32_t _size1345; + ::apache::thrift::protocol::TType _etype1348; + xfer += iprot->readListBegin(_etype1348, _size1345); + (*(this->success)).resize(_size1345); + uint32_t _i1349; + for (_i1349 = 0; _i1349 < _size1345; ++_i1349) { - xfer += iprot->readString((*(this->success))[_i1343]); + xfer += iprot->readString((*(this->success))[_i1349]); } xfer += iprot->readListEnd(); } @@ -8859,14 +8859,14 @@ uint32_t ThriftHiveMetastore_get_table_meta_args::read(::apache::thrift::protoco if (ftype == ::apache::thrift::protocol::T_LIST) { { this->tbl_types.clear(); - uint32_t _size1344; - ::apache::thrift::protocol::TType _etype1347; - xfer += iprot->readListBegin(_etype1347, _size1344); - this->tbl_types.resize(_size1344); - uint32_t _i1348; - for (_i1348 = 0; _i1348 < _size1344; ++_i1348) + uint32_t _size1350; + ::apache::thrift::protocol::TType _etype1353; + xfer += iprot->readListBegin(_etype1353, _size1350); + this->tbl_types.resize(_size1350); + uint32_t _i1354; + for (_i1354 = 0; _i1354 < _size1350; ++_i1354) { - xfer += iprot->readString(this->tbl_types[_i1348]); + xfer += iprot->readString(this->tbl_types[_i1354]); } xfer += iprot->readListEnd(); } @@ -8903,10 +8903,10 @@ uint32_t ThriftHiveMetastore_get_table_meta_args::write(::apache::thrift::protoc xfer += oprot->writeFieldBegin("tbl_types", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->tbl_types.size())); - std::vector ::const_iterator _iter1349; - for (_iter1349 = this->tbl_types.begin(); _iter1349 != this->tbl_types.end(); ++_iter1349) + std::vector ::const_iterator _iter1355; + for (_iter1355 = this->tbl_types.begin(); _iter1355 != this->tbl_types.end(); ++_iter1355) { - xfer += oprot->writeString((*_iter1349)); + xfer += oprot->writeString((*_iter1355)); } xfer += oprot->writeListEnd(); } @@ -8938,10 +8938,10 @@ uint32_t ThriftHiveMetastore_get_table_meta_pargs::write(::apache::thrift::proto xfer += oprot->writeFieldBegin("tbl_types", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->tbl_types)).size())); - std::vector ::const_iterator _iter1350; - for (_iter1350 = (*(this->tbl_types)).begin(); _iter1350 != (*(this->tbl_types)).end(); ++_iter1350) + std::vector ::const_iterator _iter1356; + for (_iter1356 = (*(this->tbl_types)).begin(); _iter1356 != (*(this->tbl_types)).end(); ++_iter1356) { - xfer += oprot->writeString((*_iter1350)); + xfer += oprot->writeString((*_iter1356)); } xfer += oprot->writeListEnd(); } @@ -8982,14 +8982,14 @@ uint32_t ThriftHiveMetastore_get_table_meta_result::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1351; - ::apache::thrift::protocol::TType _etype1354; - xfer += iprot->readListBegin(_etype1354, _size1351); - this->success.resize(_size1351); - uint32_t _i1355; - for (_i1355 = 0; _i1355 < _size1351; ++_i1355) + uint32_t _size1357; + ::apache::thrift::protocol::TType _etype1360; + xfer += iprot->readListBegin(_etype1360, _size1357); + this->success.resize(_size1357); + uint32_t _i1361; + for (_i1361 = 0; _i1361 < _size1357; ++_i1361) { - xfer += this->success[_i1355].read(iprot); + xfer += this->success[_i1361].read(iprot); } xfer += iprot->readListEnd(); } @@ -9028,10 +9028,10 @@ uint32_t ThriftHiveMetastore_get_table_meta_result::write(::apache::thrift::prot xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1356; - for (_iter1356 = this->success.begin(); _iter1356 != this->success.end(); ++_iter1356) + std::vector ::const_iterator _iter1362; + for (_iter1362 = this->success.begin(); _iter1362 != this->success.end(); ++_iter1362) { - xfer += (*_iter1356).write(oprot); + xfer += (*_iter1362).write(oprot); } xfer += oprot->writeListEnd(); } @@ -9076,14 +9076,14 @@ uint32_t ThriftHiveMetastore_get_table_meta_presult::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1357; - ::apache::thrift::protocol::TType _etype1360; - xfer += iprot->readListBegin(_etype1360, _size1357); - (*(this->success)).resize(_size1357); - uint32_t _i1361; - for (_i1361 = 0; _i1361 < _size1357; ++_i1361) + uint32_t _size1363; + ::apache::thrift::protocol::TType _etype1366; + xfer += iprot->readListBegin(_etype1366, _size1363); + (*(this->success)).resize(_size1363); + uint32_t _i1367; + for (_i1367 = 0; _i1367 < _size1363; ++_i1367) { - xfer += (*(this->success))[_i1361].read(iprot); + xfer += (*(this->success))[_i1367].read(iprot); } xfer += iprot->readListEnd(); } @@ -9221,14 +9221,14 @@ uint32_t ThriftHiveMetastore_get_all_tables_result::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1362; - ::apache::thrift::protocol::TType _etype1365; - xfer += iprot->readListBegin(_etype1365, _size1362); - this->success.resize(_size1362); - uint32_t _i1366; - for (_i1366 = 0; _i1366 < _size1362; ++_i1366) + uint32_t _size1368; + ::apache::thrift::protocol::TType _etype1371; + xfer += iprot->readListBegin(_etype1371, _size1368); + this->success.resize(_size1368); + uint32_t _i1372; + for (_i1372 = 0; _i1372 < _size1368; ++_i1372) { - xfer += iprot->readString(this->success[_i1366]); + xfer += iprot->readString(this->success[_i1372]); } xfer += iprot->readListEnd(); } @@ -9267,10 +9267,10 @@ uint32_t ThriftHiveMetastore_get_all_tables_result::write(::apache::thrift::prot xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1367; - for (_iter1367 = this->success.begin(); _iter1367 != this->success.end(); ++_iter1367) + std::vector ::const_iterator _iter1373; + for (_iter1373 = this->success.begin(); _iter1373 != this->success.end(); ++_iter1373) { - xfer += oprot->writeString((*_iter1367)); + xfer += oprot->writeString((*_iter1373)); } xfer += oprot->writeListEnd(); } @@ -9315,14 +9315,14 @@ uint32_t ThriftHiveMetastore_get_all_tables_presult::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1368; - ::apache::thrift::protocol::TType _etype1371; - xfer += iprot->readListBegin(_etype1371, _size1368); - (*(this->success)).resize(_size1368); - uint32_t _i1372; - for (_i1372 = 0; _i1372 < _size1368; ++_i1372) + uint32_t _size1374; + ::apache::thrift::protocol::TType _etype1377; + xfer += iprot->readListBegin(_etype1377, _size1374); + (*(this->success)).resize(_size1374); + uint32_t _i1378; + for (_i1378 = 0; _i1378 < _size1374; ++_i1378) { - xfer += iprot->readString((*(this->success))[_i1372]); + xfer += iprot->readString((*(this->success))[_i1378]); } xfer += iprot->readListEnd(); } @@ -9632,14 +9632,14 @@ uint32_t ThriftHiveMetastore_get_table_objects_by_name_args::read(::apache::thri if (ftype == ::apache::thrift::protocol::T_LIST) { { this->tbl_names.clear(); - uint32_t _size1373; - ::apache::thrift::protocol::TType _etype1376; - xfer += iprot->readListBegin(_etype1376, _size1373); - this->tbl_names.resize(_size1373); - uint32_t _i1377; - for (_i1377 = 0; _i1377 < _size1373; ++_i1377) + uint32_t _size1379; + ::apache::thrift::protocol::TType _etype1382; + xfer += iprot->readListBegin(_etype1382, _size1379); + this->tbl_names.resize(_size1379); + uint32_t _i1383; + for (_i1383 = 0; _i1383 < _size1379; ++_i1383) { - xfer += iprot->readString(this->tbl_names[_i1377]); + xfer += iprot->readString(this->tbl_names[_i1383]); } xfer += iprot->readListEnd(); } @@ -9672,10 +9672,10 @@ uint32_t ThriftHiveMetastore_get_table_objects_by_name_args::write(::apache::thr xfer += oprot->writeFieldBegin("tbl_names", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->tbl_names.size())); - std::vector ::const_iterator _iter1378; - for (_iter1378 = this->tbl_names.begin(); _iter1378 != this->tbl_names.end(); ++_iter1378) + std::vector ::const_iterator _iter1384; + for (_iter1384 = this->tbl_names.begin(); _iter1384 != this->tbl_names.end(); ++_iter1384) { - xfer += oprot->writeString((*_iter1378)); + xfer += oprot->writeString((*_iter1384)); } xfer += oprot->writeListEnd(); } @@ -9703,10 +9703,10 @@ uint32_t ThriftHiveMetastore_get_table_objects_by_name_pargs::write(::apache::th xfer += oprot->writeFieldBegin("tbl_names", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->tbl_names)).size())); - std::vector ::const_iterator _iter1379; - for (_iter1379 = (*(this->tbl_names)).begin(); _iter1379 != (*(this->tbl_names)).end(); ++_iter1379) + std::vector ::const_iterator _iter1385; + for (_iter1385 = (*(this->tbl_names)).begin(); _iter1385 != (*(this->tbl_names)).end(); ++_iter1385) { - xfer += oprot->writeString((*_iter1379)); + xfer += oprot->writeString((*_iter1385)); } xfer += oprot->writeListEnd(); } @@ -9747,14 +9747,14 @@ uint32_t ThriftHiveMetastore_get_table_objects_by_name_result::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1380; - ::apache::thrift::protocol::TType _etype1383; - xfer += iprot->readListBegin(_etype1383, _size1380); - this->success.resize(_size1380); - uint32_t _i1384; - for (_i1384 = 0; _i1384 < _size1380; ++_i1384) + uint32_t _size1386; + ::apache::thrift::protocol::TType _etype1389; + xfer += iprot->readListBegin(_etype1389, _size1386); + this->success.resize(_size1386); + uint32_t _i1390; + for (_i1390 = 0; _i1390 < _size1386; ++_i1390) { - xfer += this->success[_i1384].read(iprot); + xfer += this->success[_i1390].read(iprot); } xfer += iprot->readListEnd(); } @@ -9785,10 +9785,10 @@ uint32_t ThriftHiveMetastore_get_table_objects_by_name_result::write(::apache::t xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1385; - for (_iter1385 = this->success.begin(); _iter1385 != this->success.end(); ++_iter1385) + std::vector
::const_iterator _iter1391; + for (_iter1391 = this->success.begin(); _iter1391 != this->success.end(); ++_iter1391) { - xfer += (*_iter1385).write(oprot); + xfer += (*_iter1391).write(oprot); } xfer += oprot->writeListEnd(); } @@ -9829,14 +9829,14 @@ uint32_t ThriftHiveMetastore_get_table_objects_by_name_presult::read(::apache::t if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1386; - ::apache::thrift::protocol::TType _etype1389; - xfer += iprot->readListBegin(_etype1389, _size1386); - (*(this->success)).resize(_size1386); - uint32_t _i1390; - for (_i1390 = 0; _i1390 < _size1386; ++_i1390) + uint32_t _size1392; + ::apache::thrift::protocol::TType _etype1395; + xfer += iprot->readListBegin(_etype1395, _size1392); + (*(this->success)).resize(_size1392); + uint32_t _i1396; + for (_i1396 = 0; _i1396 < _size1392; ++_i1396) { - xfer += (*(this->success))[_i1390].read(iprot); + xfer += (*(this->success))[_i1396].read(iprot); } xfer += iprot->readListEnd(); } @@ -10369,14 +10369,14 @@ uint32_t ThriftHiveMetastore_get_materialization_invalidation_info_args::read(:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->tbl_names.clear(); - uint32_t _size1391; - ::apache::thrift::protocol::TType _etype1394; - xfer += iprot->readListBegin(_etype1394, _size1391); - this->tbl_names.resize(_size1391); - uint32_t _i1395; - for (_i1395 = 0; _i1395 < _size1391; ++_i1395) + uint32_t _size1397; + ::apache::thrift::protocol::TType _etype1400; + xfer += iprot->readListBegin(_etype1400, _size1397); + this->tbl_names.resize(_size1397); + uint32_t _i1401; + for (_i1401 = 0; _i1401 < _size1397; ++_i1401) { - xfer += iprot->readString(this->tbl_names[_i1395]); + xfer += iprot->readString(this->tbl_names[_i1401]); } xfer += iprot->readListEnd(); } @@ -10409,10 +10409,10 @@ uint32_t ThriftHiveMetastore_get_materialization_invalidation_info_args::write(: xfer += oprot->writeFieldBegin("tbl_names", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->tbl_names.size())); - std::vector ::const_iterator _iter1396; - for (_iter1396 = this->tbl_names.begin(); _iter1396 != this->tbl_names.end(); ++_iter1396) + std::vector ::const_iterator _iter1402; + for (_iter1402 = this->tbl_names.begin(); _iter1402 != this->tbl_names.end(); ++_iter1402) { - xfer += oprot->writeString((*_iter1396)); + xfer += oprot->writeString((*_iter1402)); } xfer += oprot->writeListEnd(); } @@ -10440,10 +10440,10 @@ uint32_t ThriftHiveMetastore_get_materialization_invalidation_info_pargs::write( xfer += oprot->writeFieldBegin("tbl_names", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->tbl_names)).size())); - std::vector ::const_iterator _iter1397; - for (_iter1397 = (*(this->tbl_names)).begin(); _iter1397 != (*(this->tbl_names)).end(); ++_iter1397) + std::vector ::const_iterator _iter1403; + for (_iter1403 = (*(this->tbl_names)).begin(); _iter1403 != (*(this->tbl_names)).end(); ++_iter1403) { - xfer += oprot->writeString((*_iter1397)); + xfer += oprot->writeString((*_iter1403)); } xfer += oprot->writeListEnd(); } @@ -10484,17 +10484,17 @@ uint32_t ThriftHiveMetastore_get_materialization_invalidation_info_result::read( if (ftype == ::apache::thrift::protocol::T_MAP) { { this->success.clear(); - uint32_t _size1398; - ::apache::thrift::protocol::TType _ktype1399; - ::apache::thrift::protocol::TType _vtype1400; - xfer += iprot->readMapBegin(_ktype1399, _vtype1400, _size1398); - uint32_t _i1402; - for (_i1402 = 0; _i1402 < _size1398; ++_i1402) + uint32_t _size1404; + ::apache::thrift::protocol::TType _ktype1405; + ::apache::thrift::protocol::TType _vtype1406; + xfer += iprot->readMapBegin(_ktype1405, _vtype1406, _size1404); + uint32_t _i1408; + for (_i1408 = 0; _i1408 < _size1404; ++_i1408) { - std::string _key1403; - xfer += iprot->readString(_key1403); - Materialization& _val1404 = this->success[_key1403]; - xfer += _val1404.read(iprot); + std::string _key1409; + xfer += iprot->readString(_key1409); + Materialization& _val1410 = this->success[_key1409]; + xfer += _val1410.read(iprot); } xfer += iprot->readMapEnd(); } @@ -10549,11 +10549,11 @@ uint32_t ThriftHiveMetastore_get_materialization_invalidation_info_result::write xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_MAP, 0); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::map ::const_iterator _iter1405; - for (_iter1405 = this->success.begin(); _iter1405 != this->success.end(); ++_iter1405) + std::map ::const_iterator _iter1411; + for (_iter1411 = this->success.begin(); _iter1411 != this->success.end(); ++_iter1411) { - xfer += oprot->writeString(_iter1405->first); - xfer += _iter1405->second.write(oprot); + xfer += oprot->writeString(_iter1411->first); + xfer += _iter1411->second.write(oprot); } xfer += oprot->writeMapEnd(); } @@ -10606,17 +10606,17 @@ uint32_t ThriftHiveMetastore_get_materialization_invalidation_info_presult::read if (ftype == ::apache::thrift::protocol::T_MAP) { { (*(this->success)).clear(); - uint32_t _size1406; - ::apache::thrift::protocol::TType _ktype1407; - ::apache::thrift::protocol::TType _vtype1408; - xfer += iprot->readMapBegin(_ktype1407, _vtype1408, _size1406); - uint32_t _i1410; - for (_i1410 = 0; _i1410 < _size1406; ++_i1410) + uint32_t _size1412; + ::apache::thrift::protocol::TType _ktype1413; + ::apache::thrift::protocol::TType _vtype1414; + xfer += iprot->readMapBegin(_ktype1413, _vtype1414, _size1412); + uint32_t _i1416; + for (_i1416 = 0; _i1416 < _size1412; ++_i1416) { - std::string _key1411; - xfer += iprot->readString(_key1411); - Materialization& _val1412 = (*(this->success))[_key1411]; - xfer += _val1412.read(iprot); + std::string _key1417; + xfer += iprot->readString(_key1417); + Materialization& _val1418 = (*(this->success))[_key1417]; + xfer += _val1418.read(iprot); } xfer += iprot->readMapEnd(); } @@ -11077,14 +11077,14 @@ uint32_t ThriftHiveMetastore_get_table_names_by_filter_result::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1413; - ::apache::thrift::protocol::TType _etype1416; - xfer += iprot->readListBegin(_etype1416, _size1413); - this->success.resize(_size1413); - uint32_t _i1417; - for (_i1417 = 0; _i1417 < _size1413; ++_i1417) + uint32_t _size1419; + ::apache::thrift::protocol::TType _etype1422; + xfer += iprot->readListBegin(_etype1422, _size1419); + this->success.resize(_size1419); + uint32_t _i1423; + for (_i1423 = 0; _i1423 < _size1419; ++_i1423) { - xfer += iprot->readString(this->success[_i1417]); + xfer += iprot->readString(this->success[_i1423]); } xfer += iprot->readListEnd(); } @@ -11139,10 +11139,10 @@ uint32_t ThriftHiveMetastore_get_table_names_by_filter_result::write(::apache::t xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1418; - for (_iter1418 = this->success.begin(); _iter1418 != this->success.end(); ++_iter1418) + std::vector ::const_iterator _iter1424; + for (_iter1424 = this->success.begin(); _iter1424 != this->success.end(); ++_iter1424) { - xfer += oprot->writeString((*_iter1418)); + xfer += oprot->writeString((*_iter1424)); } xfer += oprot->writeListEnd(); } @@ -11195,14 +11195,14 @@ uint32_t ThriftHiveMetastore_get_table_names_by_filter_presult::read(::apache::t if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1419; - ::apache::thrift::protocol::TType _etype1422; - xfer += iprot->readListBegin(_etype1422, _size1419); - (*(this->success)).resize(_size1419); - uint32_t _i1423; - for (_i1423 = 0; _i1423 < _size1419; ++_i1423) + uint32_t _size1425; + ::apache::thrift::protocol::TType _etype1428; + xfer += iprot->readListBegin(_etype1428, _size1425); + (*(this->success)).resize(_size1425); + uint32_t _i1429; + for (_i1429 = 0; _i1429 < _size1425; ++_i1429) { - xfer += iprot->readString((*(this->success))[_i1423]); + xfer += iprot->readString((*(this->success))[_i1429]); } xfer += iprot->readListEnd(); } @@ -12536,14 +12536,14 @@ uint32_t ThriftHiveMetastore_add_partitions_args::read(::apache::thrift::protoco if (ftype == ::apache::thrift::protocol::T_LIST) { { this->new_parts.clear(); - uint32_t _size1424; - ::apache::thrift::protocol::TType _etype1427; - xfer += iprot->readListBegin(_etype1427, _size1424); - this->new_parts.resize(_size1424); - uint32_t _i1428; - for (_i1428 = 0; _i1428 < _size1424; ++_i1428) + uint32_t _size1430; + ::apache::thrift::protocol::TType _etype1433; + xfer += iprot->readListBegin(_etype1433, _size1430); + this->new_parts.resize(_size1430); + uint32_t _i1434; + for (_i1434 = 0; _i1434 < _size1430; ++_i1434) { - xfer += this->new_parts[_i1428].read(iprot); + xfer += this->new_parts[_i1434].read(iprot); } xfer += iprot->readListEnd(); } @@ -12572,10 +12572,10 @@ uint32_t ThriftHiveMetastore_add_partitions_args::write(::apache::thrift::protoc xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->new_parts.size())); - std::vector ::const_iterator _iter1429; - for (_iter1429 = this->new_parts.begin(); _iter1429 != this->new_parts.end(); ++_iter1429) + std::vector ::const_iterator _iter1435; + for (_iter1435 = this->new_parts.begin(); _iter1435 != this->new_parts.end(); ++_iter1435) { - xfer += (*_iter1429).write(oprot); + xfer += (*_iter1435).write(oprot); } xfer += oprot->writeListEnd(); } @@ -12599,10 +12599,10 @@ uint32_t ThriftHiveMetastore_add_partitions_pargs::write(::apache::thrift::proto xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->new_parts)).size())); - std::vector ::const_iterator _iter1430; - for (_iter1430 = (*(this->new_parts)).begin(); _iter1430 != (*(this->new_parts)).end(); ++_iter1430) + std::vector ::const_iterator _iter1436; + for (_iter1436 = (*(this->new_parts)).begin(); _iter1436 != (*(this->new_parts)).end(); ++_iter1436) { - xfer += (*_iter1430).write(oprot); + xfer += (*_iter1436).write(oprot); } xfer += oprot->writeListEnd(); } @@ -12811,14 +12811,14 @@ uint32_t ThriftHiveMetastore_add_partitions_pspec_args::read(::apache::thrift::p if (ftype == ::apache::thrift::protocol::T_LIST) { { this->new_parts.clear(); - uint32_t _size1431; - ::apache::thrift::protocol::TType _etype1434; - xfer += iprot->readListBegin(_etype1434, _size1431); - this->new_parts.resize(_size1431); - uint32_t _i1435; - for (_i1435 = 0; _i1435 < _size1431; ++_i1435) + uint32_t _size1437; + ::apache::thrift::protocol::TType _etype1440; + xfer += iprot->readListBegin(_etype1440, _size1437); + this->new_parts.resize(_size1437); + uint32_t _i1441; + for (_i1441 = 0; _i1441 < _size1437; ++_i1441) { - xfer += this->new_parts[_i1435].read(iprot); + xfer += this->new_parts[_i1441].read(iprot); } xfer += iprot->readListEnd(); } @@ -12847,10 +12847,10 @@ uint32_t ThriftHiveMetastore_add_partitions_pspec_args::write(::apache::thrift:: xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->new_parts.size())); - std::vector ::const_iterator _iter1436; - for (_iter1436 = this->new_parts.begin(); _iter1436 != this->new_parts.end(); ++_iter1436) + std::vector ::const_iterator _iter1442; + for (_iter1442 = this->new_parts.begin(); _iter1442 != this->new_parts.end(); ++_iter1442) { - xfer += (*_iter1436).write(oprot); + xfer += (*_iter1442).write(oprot); } xfer += oprot->writeListEnd(); } @@ -12874,10 +12874,10 @@ uint32_t ThriftHiveMetastore_add_partitions_pspec_pargs::write(::apache::thrift: xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->new_parts)).size())); - std::vector ::const_iterator _iter1437; - for (_iter1437 = (*(this->new_parts)).begin(); _iter1437 != (*(this->new_parts)).end(); ++_iter1437) + std::vector ::const_iterator _iter1443; + for (_iter1443 = (*(this->new_parts)).begin(); _iter1443 != (*(this->new_parts)).end(); ++_iter1443) { - xfer += (*_iter1437).write(oprot); + xfer += (*_iter1443).write(oprot); } xfer += oprot->writeListEnd(); } @@ -13102,14 +13102,14 @@ uint32_t ThriftHiveMetastore_append_partition_args::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1438; - ::apache::thrift::protocol::TType _etype1441; - xfer += iprot->readListBegin(_etype1441, _size1438); - this->part_vals.resize(_size1438); - uint32_t _i1442; - for (_i1442 = 0; _i1442 < _size1438; ++_i1442) + uint32_t _size1444; + ::apache::thrift::protocol::TType _etype1447; + xfer += iprot->readListBegin(_etype1447, _size1444); + this->part_vals.resize(_size1444); + uint32_t _i1448; + for (_i1448 = 0; _i1448 < _size1444; ++_i1448) { - xfer += iprot->readString(this->part_vals[_i1442]); + xfer += iprot->readString(this->part_vals[_i1448]); } xfer += iprot->readListEnd(); } @@ -13146,10 +13146,10 @@ uint32_t ThriftHiveMetastore_append_partition_args::write(::apache::thrift::prot xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1443; - for (_iter1443 = this->part_vals.begin(); _iter1443 != this->part_vals.end(); ++_iter1443) + std::vector ::const_iterator _iter1449; + for (_iter1449 = this->part_vals.begin(); _iter1449 != this->part_vals.end(); ++_iter1449) { - xfer += oprot->writeString((*_iter1443)); + xfer += oprot->writeString((*_iter1449)); } xfer += oprot->writeListEnd(); } @@ -13181,10 +13181,10 @@ uint32_t ThriftHiveMetastore_append_partition_pargs::write(::apache::thrift::pro xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1444; - for (_iter1444 = (*(this->part_vals)).begin(); _iter1444 != (*(this->part_vals)).end(); ++_iter1444) + std::vector ::const_iterator _iter1450; + for (_iter1450 = (*(this->part_vals)).begin(); _iter1450 != (*(this->part_vals)).end(); ++_iter1450) { - xfer += oprot->writeString((*_iter1444)); + xfer += oprot->writeString((*_iter1450)); } xfer += oprot->writeListEnd(); } @@ -13656,14 +13656,14 @@ uint32_t ThriftHiveMetastore_append_partition_with_environment_context_args::rea if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1445; - ::apache::thrift::protocol::TType _etype1448; - xfer += iprot->readListBegin(_etype1448, _size1445); - this->part_vals.resize(_size1445); - uint32_t _i1449; - for (_i1449 = 0; _i1449 < _size1445; ++_i1449) + uint32_t _size1451; + ::apache::thrift::protocol::TType _etype1454; + xfer += iprot->readListBegin(_etype1454, _size1451); + this->part_vals.resize(_size1451); + uint32_t _i1455; + for (_i1455 = 0; _i1455 < _size1451; ++_i1455) { - xfer += iprot->readString(this->part_vals[_i1449]); + xfer += iprot->readString(this->part_vals[_i1455]); } xfer += iprot->readListEnd(); } @@ -13708,10 +13708,10 @@ uint32_t ThriftHiveMetastore_append_partition_with_environment_context_args::wri xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1450; - for (_iter1450 = this->part_vals.begin(); _iter1450 != this->part_vals.end(); ++_iter1450) + std::vector ::const_iterator _iter1456; + for (_iter1456 = this->part_vals.begin(); _iter1456 != this->part_vals.end(); ++_iter1456) { - xfer += oprot->writeString((*_iter1450)); + xfer += oprot->writeString((*_iter1456)); } xfer += oprot->writeListEnd(); } @@ -13747,10 +13747,10 @@ uint32_t ThriftHiveMetastore_append_partition_with_environment_context_pargs::wr xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1451; - for (_iter1451 = (*(this->part_vals)).begin(); _iter1451 != (*(this->part_vals)).end(); ++_iter1451) + std::vector ::const_iterator _iter1457; + for (_iter1457 = (*(this->part_vals)).begin(); _iter1457 != (*(this->part_vals)).end(); ++_iter1457) { - xfer += oprot->writeString((*_iter1451)); + xfer += oprot->writeString((*_iter1457)); } xfer += oprot->writeListEnd(); } @@ -14553,14 +14553,14 @@ uint32_t ThriftHiveMetastore_drop_partition_args::read(::apache::thrift::protoco if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1452; - ::apache::thrift::protocol::TType _etype1455; - xfer += iprot->readListBegin(_etype1455, _size1452); - this->part_vals.resize(_size1452); - uint32_t _i1456; - for (_i1456 = 0; _i1456 < _size1452; ++_i1456) + uint32_t _size1458; + ::apache::thrift::protocol::TType _etype1461; + xfer += iprot->readListBegin(_etype1461, _size1458); + this->part_vals.resize(_size1458); + uint32_t _i1462; + for (_i1462 = 0; _i1462 < _size1458; ++_i1462) { - xfer += iprot->readString(this->part_vals[_i1456]); + xfer += iprot->readString(this->part_vals[_i1462]); } xfer += iprot->readListEnd(); } @@ -14605,10 +14605,10 @@ uint32_t ThriftHiveMetastore_drop_partition_args::write(::apache::thrift::protoc xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1457; - for (_iter1457 = this->part_vals.begin(); _iter1457 != this->part_vals.end(); ++_iter1457) + std::vector ::const_iterator _iter1463; + for (_iter1463 = this->part_vals.begin(); _iter1463 != this->part_vals.end(); ++_iter1463) { - xfer += oprot->writeString((*_iter1457)); + xfer += oprot->writeString((*_iter1463)); } xfer += oprot->writeListEnd(); } @@ -14644,10 +14644,10 @@ uint32_t ThriftHiveMetastore_drop_partition_pargs::write(::apache::thrift::proto xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1458; - for (_iter1458 = (*(this->part_vals)).begin(); _iter1458 != (*(this->part_vals)).end(); ++_iter1458) + std::vector ::const_iterator _iter1464; + for (_iter1464 = (*(this->part_vals)).begin(); _iter1464 != (*(this->part_vals)).end(); ++_iter1464) { - xfer += oprot->writeString((*_iter1458)); + xfer += oprot->writeString((*_iter1464)); } xfer += oprot->writeListEnd(); } @@ -14856,14 +14856,14 @@ uint32_t ThriftHiveMetastore_drop_partition_with_environment_context_args::read( if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1459; - ::apache::thrift::protocol::TType _etype1462; - xfer += iprot->readListBegin(_etype1462, _size1459); - this->part_vals.resize(_size1459); - uint32_t _i1463; - for (_i1463 = 0; _i1463 < _size1459; ++_i1463) + uint32_t _size1465; + ::apache::thrift::protocol::TType _etype1468; + xfer += iprot->readListBegin(_etype1468, _size1465); + this->part_vals.resize(_size1465); + uint32_t _i1469; + for (_i1469 = 0; _i1469 < _size1465; ++_i1469) { - xfer += iprot->readString(this->part_vals[_i1463]); + xfer += iprot->readString(this->part_vals[_i1469]); } xfer += iprot->readListEnd(); } @@ -14916,10 +14916,10 @@ uint32_t ThriftHiveMetastore_drop_partition_with_environment_context_args::write xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1464; - for (_iter1464 = this->part_vals.begin(); _iter1464 != this->part_vals.end(); ++_iter1464) + std::vector ::const_iterator _iter1470; + for (_iter1470 = this->part_vals.begin(); _iter1470 != this->part_vals.end(); ++_iter1470) { - xfer += oprot->writeString((*_iter1464)); + xfer += oprot->writeString((*_iter1470)); } xfer += oprot->writeListEnd(); } @@ -14959,10 +14959,10 @@ uint32_t ThriftHiveMetastore_drop_partition_with_environment_context_pargs::writ xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1465; - for (_iter1465 = (*(this->part_vals)).begin(); _iter1465 != (*(this->part_vals)).end(); ++_iter1465) + std::vector ::const_iterator _iter1471; + for (_iter1471 = (*(this->part_vals)).begin(); _iter1471 != (*(this->part_vals)).end(); ++_iter1471) { - xfer += oprot->writeString((*_iter1465)); + xfer += oprot->writeString((*_iter1471)); } xfer += oprot->writeListEnd(); } @@ -15968,14 +15968,14 @@ uint32_t ThriftHiveMetastore_get_partition_args::read(::apache::thrift::protocol if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1466; - ::apache::thrift::protocol::TType _etype1469; - xfer += iprot->readListBegin(_etype1469, _size1466); - this->part_vals.resize(_size1466); - uint32_t _i1470; - for (_i1470 = 0; _i1470 < _size1466; ++_i1470) + uint32_t _size1472; + ::apache::thrift::protocol::TType _etype1475; + xfer += iprot->readListBegin(_etype1475, _size1472); + this->part_vals.resize(_size1472); + uint32_t _i1476; + for (_i1476 = 0; _i1476 < _size1472; ++_i1476) { - xfer += iprot->readString(this->part_vals[_i1470]); + xfer += iprot->readString(this->part_vals[_i1476]); } xfer += iprot->readListEnd(); } @@ -16012,10 +16012,10 @@ uint32_t ThriftHiveMetastore_get_partition_args::write(::apache::thrift::protoco xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1471; - for (_iter1471 = this->part_vals.begin(); _iter1471 != this->part_vals.end(); ++_iter1471) + std::vector ::const_iterator _iter1477; + for (_iter1477 = this->part_vals.begin(); _iter1477 != this->part_vals.end(); ++_iter1477) { - xfer += oprot->writeString((*_iter1471)); + xfer += oprot->writeString((*_iter1477)); } xfer += oprot->writeListEnd(); } @@ -16047,10 +16047,10 @@ uint32_t ThriftHiveMetastore_get_partition_pargs::write(::apache::thrift::protoc xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1472; - for (_iter1472 = (*(this->part_vals)).begin(); _iter1472 != (*(this->part_vals)).end(); ++_iter1472) + std::vector ::const_iterator _iter1478; + for (_iter1478 = (*(this->part_vals)).begin(); _iter1478 != (*(this->part_vals)).end(); ++_iter1478) { - xfer += oprot->writeString((*_iter1472)); + xfer += oprot->writeString((*_iter1478)); } xfer += oprot->writeListEnd(); } @@ -16239,17 +16239,17 @@ uint32_t ThriftHiveMetastore_exchange_partition_args::read(::apache::thrift::pro if (ftype == ::apache::thrift::protocol::T_MAP) { { this->partitionSpecs.clear(); - uint32_t _size1473; - ::apache::thrift::protocol::TType _ktype1474; - ::apache::thrift::protocol::TType _vtype1475; - xfer += iprot->readMapBegin(_ktype1474, _vtype1475, _size1473); - uint32_t _i1477; - for (_i1477 = 0; _i1477 < _size1473; ++_i1477) + uint32_t _size1479; + ::apache::thrift::protocol::TType _ktype1480; + ::apache::thrift::protocol::TType _vtype1481; + xfer += iprot->readMapBegin(_ktype1480, _vtype1481, _size1479); + uint32_t _i1483; + for (_i1483 = 0; _i1483 < _size1479; ++_i1483) { - std::string _key1478; - xfer += iprot->readString(_key1478); - std::string& _val1479 = this->partitionSpecs[_key1478]; - xfer += iprot->readString(_val1479); + std::string _key1484; + xfer += iprot->readString(_key1484); + std::string& _val1485 = this->partitionSpecs[_key1484]; + xfer += iprot->readString(_val1485); } xfer += iprot->readMapEnd(); } @@ -16310,11 +16310,11 @@ uint32_t ThriftHiveMetastore_exchange_partition_args::write(::apache::thrift::pr xfer += oprot->writeFieldBegin("partitionSpecs", ::apache::thrift::protocol::T_MAP, 1); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast(this->partitionSpecs.size())); - std::map ::const_iterator _iter1480; - for (_iter1480 = this->partitionSpecs.begin(); _iter1480 != this->partitionSpecs.end(); ++_iter1480) + std::map ::const_iterator _iter1486; + for (_iter1486 = this->partitionSpecs.begin(); _iter1486 != this->partitionSpecs.end(); ++_iter1486) { - xfer += oprot->writeString(_iter1480->first); - xfer += oprot->writeString(_iter1480->second); + xfer += oprot->writeString(_iter1486->first); + xfer += oprot->writeString(_iter1486->second); } xfer += oprot->writeMapEnd(); } @@ -16354,11 +16354,11 @@ uint32_t ThriftHiveMetastore_exchange_partition_pargs::write(::apache::thrift::p xfer += oprot->writeFieldBegin("partitionSpecs", ::apache::thrift::protocol::T_MAP, 1); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast((*(this->partitionSpecs)).size())); - std::map ::const_iterator _iter1481; - for (_iter1481 = (*(this->partitionSpecs)).begin(); _iter1481 != (*(this->partitionSpecs)).end(); ++_iter1481) + std::map ::const_iterator _iter1487; + for (_iter1487 = (*(this->partitionSpecs)).begin(); _iter1487 != (*(this->partitionSpecs)).end(); ++_iter1487) { - xfer += oprot->writeString(_iter1481->first); - xfer += oprot->writeString(_iter1481->second); + xfer += oprot->writeString(_iter1487->first); + xfer += oprot->writeString(_iter1487->second); } xfer += oprot->writeMapEnd(); } @@ -16603,17 +16603,17 @@ uint32_t ThriftHiveMetastore_exchange_partitions_args::read(::apache::thrift::pr if (ftype == ::apache::thrift::protocol::T_MAP) { { this->partitionSpecs.clear(); - uint32_t _size1482; - ::apache::thrift::protocol::TType _ktype1483; - ::apache::thrift::protocol::TType _vtype1484; - xfer += iprot->readMapBegin(_ktype1483, _vtype1484, _size1482); - uint32_t _i1486; - for (_i1486 = 0; _i1486 < _size1482; ++_i1486) + uint32_t _size1488; + ::apache::thrift::protocol::TType _ktype1489; + ::apache::thrift::protocol::TType _vtype1490; + xfer += iprot->readMapBegin(_ktype1489, _vtype1490, _size1488); + uint32_t _i1492; + for (_i1492 = 0; _i1492 < _size1488; ++_i1492) { - std::string _key1487; - xfer += iprot->readString(_key1487); - std::string& _val1488 = this->partitionSpecs[_key1487]; - xfer += iprot->readString(_val1488); + std::string _key1493; + xfer += iprot->readString(_key1493); + std::string& _val1494 = this->partitionSpecs[_key1493]; + xfer += iprot->readString(_val1494); } xfer += iprot->readMapEnd(); } @@ -16674,11 +16674,11 @@ uint32_t ThriftHiveMetastore_exchange_partitions_args::write(::apache::thrift::p xfer += oprot->writeFieldBegin("partitionSpecs", ::apache::thrift::protocol::T_MAP, 1); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast(this->partitionSpecs.size())); - std::map ::const_iterator _iter1489; - for (_iter1489 = this->partitionSpecs.begin(); _iter1489 != this->partitionSpecs.end(); ++_iter1489) + std::map ::const_iterator _iter1495; + for (_iter1495 = this->partitionSpecs.begin(); _iter1495 != this->partitionSpecs.end(); ++_iter1495) { - xfer += oprot->writeString(_iter1489->first); - xfer += oprot->writeString(_iter1489->second); + xfer += oprot->writeString(_iter1495->first); + xfer += oprot->writeString(_iter1495->second); } xfer += oprot->writeMapEnd(); } @@ -16718,11 +16718,11 @@ uint32_t ThriftHiveMetastore_exchange_partitions_pargs::write(::apache::thrift:: xfer += oprot->writeFieldBegin("partitionSpecs", ::apache::thrift::protocol::T_MAP, 1); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast((*(this->partitionSpecs)).size())); - std::map ::const_iterator _iter1490; - for (_iter1490 = (*(this->partitionSpecs)).begin(); _iter1490 != (*(this->partitionSpecs)).end(); ++_iter1490) + std::map ::const_iterator _iter1496; + for (_iter1496 = (*(this->partitionSpecs)).begin(); _iter1496 != (*(this->partitionSpecs)).end(); ++_iter1496) { - xfer += oprot->writeString(_iter1490->first); - xfer += oprot->writeString(_iter1490->second); + xfer += oprot->writeString(_iter1496->first); + xfer += oprot->writeString(_iter1496->second); } xfer += oprot->writeMapEnd(); } @@ -16779,14 +16779,14 @@ uint32_t ThriftHiveMetastore_exchange_partitions_result::read(::apache::thrift:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1491; - ::apache::thrift::protocol::TType _etype1494; - xfer += iprot->readListBegin(_etype1494, _size1491); - this->success.resize(_size1491); - uint32_t _i1495; - for (_i1495 = 0; _i1495 < _size1491; ++_i1495) + uint32_t _size1497; + ::apache::thrift::protocol::TType _etype1500; + xfer += iprot->readListBegin(_etype1500, _size1497); + this->success.resize(_size1497); + uint32_t _i1501; + for (_i1501 = 0; _i1501 < _size1497; ++_i1501) { - xfer += this->success[_i1495].read(iprot); + xfer += this->success[_i1501].read(iprot); } xfer += iprot->readListEnd(); } @@ -16849,10 +16849,10 @@ uint32_t ThriftHiveMetastore_exchange_partitions_result::write(::apache::thrift: xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1496; - for (_iter1496 = this->success.begin(); _iter1496 != this->success.end(); ++_iter1496) + std::vector ::const_iterator _iter1502; + for (_iter1502 = this->success.begin(); _iter1502 != this->success.end(); ++_iter1502) { - xfer += (*_iter1496).write(oprot); + xfer += (*_iter1502).write(oprot); } xfer += oprot->writeListEnd(); } @@ -16909,14 +16909,14 @@ uint32_t ThriftHiveMetastore_exchange_partitions_presult::read(::apache::thrift: if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1497; - ::apache::thrift::protocol::TType _etype1500; - xfer += iprot->readListBegin(_etype1500, _size1497); - (*(this->success)).resize(_size1497); - uint32_t _i1501; - for (_i1501 = 0; _i1501 < _size1497; ++_i1501) + uint32_t _size1503; + ::apache::thrift::protocol::TType _etype1506; + xfer += iprot->readListBegin(_etype1506, _size1503); + (*(this->success)).resize(_size1503); + uint32_t _i1507; + for (_i1507 = 0; _i1507 < _size1503; ++_i1507) { - xfer += (*(this->success))[_i1501].read(iprot); + xfer += (*(this->success))[_i1507].read(iprot); } xfer += iprot->readListEnd(); } @@ -17015,14 +17015,14 @@ uint32_t ThriftHiveMetastore_get_partition_with_auth_args::read(::apache::thrift if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1502; - ::apache::thrift::protocol::TType _etype1505; - xfer += iprot->readListBegin(_etype1505, _size1502); - this->part_vals.resize(_size1502); - uint32_t _i1506; - for (_i1506 = 0; _i1506 < _size1502; ++_i1506) + uint32_t _size1508; + ::apache::thrift::protocol::TType _etype1511; + xfer += iprot->readListBegin(_etype1511, _size1508); + this->part_vals.resize(_size1508); + uint32_t _i1512; + for (_i1512 = 0; _i1512 < _size1508; ++_i1512) { - xfer += iprot->readString(this->part_vals[_i1506]); + xfer += iprot->readString(this->part_vals[_i1512]); } xfer += iprot->readListEnd(); } @@ -17043,14 +17043,14 @@ uint32_t ThriftHiveMetastore_get_partition_with_auth_args::read(::apache::thrift if (ftype == ::apache::thrift::protocol::T_LIST) { { this->group_names.clear(); - uint32_t _size1507; - ::apache::thrift::protocol::TType _etype1510; - xfer += iprot->readListBegin(_etype1510, _size1507); - this->group_names.resize(_size1507); - uint32_t _i1511; - for (_i1511 = 0; _i1511 < _size1507; ++_i1511) + uint32_t _size1513; + ::apache::thrift::protocol::TType _etype1516; + xfer += iprot->readListBegin(_etype1516, _size1513); + this->group_names.resize(_size1513); + uint32_t _i1517; + for (_i1517 = 0; _i1517 < _size1513; ++_i1517) { - xfer += iprot->readString(this->group_names[_i1511]); + xfer += iprot->readString(this->group_names[_i1517]); } xfer += iprot->readListEnd(); } @@ -17087,10 +17087,10 @@ uint32_t ThriftHiveMetastore_get_partition_with_auth_args::write(::apache::thrif xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1512; - for (_iter1512 = this->part_vals.begin(); _iter1512 != this->part_vals.end(); ++_iter1512) + std::vector ::const_iterator _iter1518; + for (_iter1518 = this->part_vals.begin(); _iter1518 != this->part_vals.end(); ++_iter1518) { - xfer += oprot->writeString((*_iter1512)); + xfer += oprot->writeString((*_iter1518)); } xfer += oprot->writeListEnd(); } @@ -17103,10 +17103,10 @@ uint32_t ThriftHiveMetastore_get_partition_with_auth_args::write(::apache::thrif xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->group_names.size())); - std::vector ::const_iterator _iter1513; - for (_iter1513 = this->group_names.begin(); _iter1513 != this->group_names.end(); ++_iter1513) + std::vector ::const_iterator _iter1519; + for (_iter1519 = this->group_names.begin(); _iter1519 != this->group_names.end(); ++_iter1519) { - xfer += oprot->writeString((*_iter1513)); + xfer += oprot->writeString((*_iter1519)); } xfer += oprot->writeListEnd(); } @@ -17138,10 +17138,10 @@ uint32_t ThriftHiveMetastore_get_partition_with_auth_pargs::write(::apache::thri xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1514; - for (_iter1514 = (*(this->part_vals)).begin(); _iter1514 != (*(this->part_vals)).end(); ++_iter1514) + std::vector ::const_iterator _iter1520; + for (_iter1520 = (*(this->part_vals)).begin(); _iter1520 != (*(this->part_vals)).end(); ++_iter1520) { - xfer += oprot->writeString((*_iter1514)); + xfer += oprot->writeString((*_iter1520)); } xfer += oprot->writeListEnd(); } @@ -17154,10 +17154,10 @@ uint32_t ThriftHiveMetastore_get_partition_with_auth_pargs::write(::apache::thri xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->group_names)).size())); - std::vector ::const_iterator _iter1515; - for (_iter1515 = (*(this->group_names)).begin(); _iter1515 != (*(this->group_names)).end(); ++_iter1515) + std::vector ::const_iterator _iter1521; + for (_iter1521 = (*(this->group_names)).begin(); _iter1521 != (*(this->group_names)).end(); ++_iter1521) { - xfer += oprot->writeString((*_iter1515)); + xfer += oprot->writeString((*_iter1521)); } xfer += oprot->writeListEnd(); } @@ -17716,14 +17716,14 @@ uint32_t ThriftHiveMetastore_get_partitions_result::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1516; - ::apache::thrift::protocol::TType _etype1519; - xfer += iprot->readListBegin(_etype1519, _size1516); - this->success.resize(_size1516); - uint32_t _i1520; - for (_i1520 = 0; _i1520 < _size1516; ++_i1520) + uint32_t _size1522; + ::apache::thrift::protocol::TType _etype1525; + xfer += iprot->readListBegin(_etype1525, _size1522); + this->success.resize(_size1522); + uint32_t _i1526; + for (_i1526 = 0; _i1526 < _size1522; ++_i1526) { - xfer += this->success[_i1520].read(iprot); + xfer += this->success[_i1526].read(iprot); } xfer += iprot->readListEnd(); } @@ -17770,10 +17770,10 @@ uint32_t ThriftHiveMetastore_get_partitions_result::write(::apache::thrift::prot xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1521; - for (_iter1521 = this->success.begin(); _iter1521 != this->success.end(); ++_iter1521) + std::vector ::const_iterator _iter1527; + for (_iter1527 = this->success.begin(); _iter1527 != this->success.end(); ++_iter1527) { - xfer += (*_iter1521).write(oprot); + xfer += (*_iter1527).write(oprot); } xfer += oprot->writeListEnd(); } @@ -17822,14 +17822,14 @@ uint32_t ThriftHiveMetastore_get_partitions_presult::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1522; - ::apache::thrift::protocol::TType _etype1525; - xfer += iprot->readListBegin(_etype1525, _size1522); - (*(this->success)).resize(_size1522); - uint32_t _i1526; - for (_i1526 = 0; _i1526 < _size1522; ++_i1526) + uint32_t _size1528; + ::apache::thrift::protocol::TType _etype1531; + xfer += iprot->readListBegin(_etype1531, _size1528); + (*(this->success)).resize(_size1528); + uint32_t _i1532; + for (_i1532 = 0; _i1532 < _size1528; ++_i1532) { - xfer += (*(this->success))[_i1526].read(iprot); + xfer += (*(this->success))[_i1532].read(iprot); } xfer += iprot->readListEnd(); } @@ -17928,14 +17928,14 @@ uint32_t ThriftHiveMetastore_get_partitions_with_auth_args::read(::apache::thrif if (ftype == ::apache::thrift::protocol::T_LIST) { { this->group_names.clear(); - uint32_t _size1527; - ::apache::thrift::protocol::TType _etype1530; - xfer += iprot->readListBegin(_etype1530, _size1527); - this->group_names.resize(_size1527); - uint32_t _i1531; - for (_i1531 = 0; _i1531 < _size1527; ++_i1531) + uint32_t _size1533; + ::apache::thrift::protocol::TType _etype1536; + xfer += iprot->readListBegin(_etype1536, _size1533); + this->group_names.resize(_size1533); + uint32_t _i1537; + for (_i1537 = 0; _i1537 < _size1533; ++_i1537) { - xfer += iprot->readString(this->group_names[_i1531]); + xfer += iprot->readString(this->group_names[_i1537]); } xfer += iprot->readListEnd(); } @@ -17980,10 +17980,10 @@ uint32_t ThriftHiveMetastore_get_partitions_with_auth_args::write(::apache::thri xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->group_names.size())); - std::vector ::const_iterator _iter1532; - for (_iter1532 = this->group_names.begin(); _iter1532 != this->group_names.end(); ++_iter1532) + std::vector ::const_iterator _iter1538; + for (_iter1538 = this->group_names.begin(); _iter1538 != this->group_names.end(); ++_iter1538) { - xfer += oprot->writeString((*_iter1532)); + xfer += oprot->writeString((*_iter1538)); } xfer += oprot->writeListEnd(); } @@ -18023,10 +18023,10 @@ uint32_t ThriftHiveMetastore_get_partitions_with_auth_pargs::write(::apache::thr xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->group_names)).size())); - std::vector ::const_iterator _iter1533; - for (_iter1533 = (*(this->group_names)).begin(); _iter1533 != (*(this->group_names)).end(); ++_iter1533) + std::vector ::const_iterator _iter1539; + for (_iter1539 = (*(this->group_names)).begin(); _iter1539 != (*(this->group_names)).end(); ++_iter1539) { - xfer += oprot->writeString((*_iter1533)); + xfer += oprot->writeString((*_iter1539)); } xfer += oprot->writeListEnd(); } @@ -18067,14 +18067,14 @@ uint32_t ThriftHiveMetastore_get_partitions_with_auth_result::read(::apache::thr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1534; - ::apache::thrift::protocol::TType _etype1537; - xfer += iprot->readListBegin(_etype1537, _size1534); - this->success.resize(_size1534); - uint32_t _i1538; - for (_i1538 = 0; _i1538 < _size1534; ++_i1538) + uint32_t _size1540; + ::apache::thrift::protocol::TType _etype1543; + xfer += iprot->readListBegin(_etype1543, _size1540); + this->success.resize(_size1540); + uint32_t _i1544; + for (_i1544 = 0; _i1544 < _size1540; ++_i1544) { - xfer += this->success[_i1538].read(iprot); + xfer += this->success[_i1544].read(iprot); } xfer += iprot->readListEnd(); } @@ -18121,10 +18121,10 @@ uint32_t ThriftHiveMetastore_get_partitions_with_auth_result::write(::apache::th xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1539; - for (_iter1539 = this->success.begin(); _iter1539 != this->success.end(); ++_iter1539) + std::vector ::const_iterator _iter1545; + for (_iter1545 = this->success.begin(); _iter1545 != this->success.end(); ++_iter1545) { - xfer += (*_iter1539).write(oprot); + xfer += (*_iter1545).write(oprot); } xfer += oprot->writeListEnd(); } @@ -18173,14 +18173,14 @@ uint32_t ThriftHiveMetastore_get_partitions_with_auth_presult::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1540; - ::apache::thrift::protocol::TType _etype1543; - xfer += iprot->readListBegin(_etype1543, _size1540); - (*(this->success)).resize(_size1540); - uint32_t _i1544; - for (_i1544 = 0; _i1544 < _size1540; ++_i1544) + uint32_t _size1546; + ::apache::thrift::protocol::TType _etype1549; + xfer += iprot->readListBegin(_etype1549, _size1546); + (*(this->success)).resize(_size1546); + uint32_t _i1550; + for (_i1550 = 0; _i1550 < _size1546; ++_i1550) { - xfer += (*(this->success))[_i1544].read(iprot); + xfer += (*(this->success))[_i1550].read(iprot); } xfer += iprot->readListEnd(); } @@ -18358,14 +18358,14 @@ uint32_t ThriftHiveMetastore_get_partitions_pspec_result::read(::apache::thrift: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1545; - ::apache::thrift::protocol::TType _etype1548; - xfer += iprot->readListBegin(_etype1548, _size1545); - this->success.resize(_size1545); - uint32_t _i1549; - for (_i1549 = 0; _i1549 < _size1545; ++_i1549) + uint32_t _size1551; + ::apache::thrift::protocol::TType _etype1554; + xfer += iprot->readListBegin(_etype1554, _size1551); + this->success.resize(_size1551); + uint32_t _i1555; + for (_i1555 = 0; _i1555 < _size1551; ++_i1555) { - xfer += this->success[_i1549].read(iprot); + xfer += this->success[_i1555].read(iprot); } xfer += iprot->readListEnd(); } @@ -18412,10 +18412,10 @@ uint32_t ThriftHiveMetastore_get_partitions_pspec_result::write(::apache::thrift xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1550; - for (_iter1550 = this->success.begin(); _iter1550 != this->success.end(); ++_iter1550) + std::vector ::const_iterator _iter1556; + for (_iter1556 = this->success.begin(); _iter1556 != this->success.end(); ++_iter1556) { - xfer += (*_iter1550).write(oprot); + xfer += (*_iter1556).write(oprot); } xfer += oprot->writeListEnd(); } @@ -18464,14 +18464,14 @@ uint32_t ThriftHiveMetastore_get_partitions_pspec_presult::read(::apache::thrift if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1551; - ::apache::thrift::protocol::TType _etype1554; - xfer += iprot->readListBegin(_etype1554, _size1551); - (*(this->success)).resize(_size1551); - uint32_t _i1555; - for (_i1555 = 0; _i1555 < _size1551; ++_i1555) + uint32_t _size1557; + ::apache::thrift::protocol::TType _etype1560; + xfer += iprot->readListBegin(_etype1560, _size1557); + (*(this->success)).resize(_size1557); + uint32_t _i1561; + for (_i1561 = 0; _i1561 < _size1557; ++_i1561) { - xfer += (*(this->success))[_i1555].read(iprot); + xfer += (*(this->success))[_i1561].read(iprot); } xfer += iprot->readListEnd(); } @@ -18649,14 +18649,14 @@ uint32_t ThriftHiveMetastore_get_partition_names_result::read(::apache::thrift:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1556; - ::apache::thrift::protocol::TType _etype1559; - xfer += iprot->readListBegin(_etype1559, _size1556); - this->success.resize(_size1556); - uint32_t _i1560; - for (_i1560 = 0; _i1560 < _size1556; ++_i1560) + uint32_t _size1562; + ::apache::thrift::protocol::TType _etype1565; + xfer += iprot->readListBegin(_etype1565, _size1562); + this->success.resize(_size1562); + uint32_t _i1566; + for (_i1566 = 0; _i1566 < _size1562; ++_i1566) { - xfer += iprot->readString(this->success[_i1560]); + xfer += iprot->readString(this->success[_i1566]); } xfer += iprot->readListEnd(); } @@ -18703,10 +18703,10 @@ uint32_t ThriftHiveMetastore_get_partition_names_result::write(::apache::thrift: xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1561; - for (_iter1561 = this->success.begin(); _iter1561 != this->success.end(); ++_iter1561) + std::vector ::const_iterator _iter1567; + for (_iter1567 = this->success.begin(); _iter1567 != this->success.end(); ++_iter1567) { - xfer += oprot->writeString((*_iter1561)); + xfer += oprot->writeString((*_iter1567)); } xfer += oprot->writeListEnd(); } @@ -18755,14 +18755,14 @@ uint32_t ThriftHiveMetastore_get_partition_names_presult::read(::apache::thrift: if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1562; - ::apache::thrift::protocol::TType _etype1565; - xfer += iprot->readListBegin(_etype1565, _size1562); - (*(this->success)).resize(_size1562); - uint32_t _i1566; - for (_i1566 = 0; _i1566 < _size1562; ++_i1566) + uint32_t _size1568; + ::apache::thrift::protocol::TType _etype1571; + xfer += iprot->readListBegin(_etype1571, _size1568); + (*(this->success)).resize(_size1568); + uint32_t _i1572; + for (_i1572 = 0; _i1572 < _size1568; ++_i1572) { - xfer += iprot->readString((*(this->success))[_i1566]); + xfer += iprot->readString((*(this->success))[_i1572]); } xfer += iprot->readListEnd(); } @@ -19072,14 +19072,14 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_args::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1567; - ::apache::thrift::protocol::TType _etype1570; - xfer += iprot->readListBegin(_etype1570, _size1567); - this->part_vals.resize(_size1567); - uint32_t _i1571; - for (_i1571 = 0; _i1571 < _size1567; ++_i1571) + uint32_t _size1573; + ::apache::thrift::protocol::TType _etype1576; + xfer += iprot->readListBegin(_etype1576, _size1573); + this->part_vals.resize(_size1573); + uint32_t _i1577; + for (_i1577 = 0; _i1577 < _size1573; ++_i1577) { - xfer += iprot->readString(this->part_vals[_i1571]); + xfer += iprot->readString(this->part_vals[_i1577]); } xfer += iprot->readListEnd(); } @@ -19124,10 +19124,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_args::write(::apache::thrift::pro xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1572; - for (_iter1572 = this->part_vals.begin(); _iter1572 != this->part_vals.end(); ++_iter1572) + std::vector ::const_iterator _iter1578; + for (_iter1578 = this->part_vals.begin(); _iter1578 != this->part_vals.end(); ++_iter1578) { - xfer += oprot->writeString((*_iter1572)); + xfer += oprot->writeString((*_iter1578)); } xfer += oprot->writeListEnd(); } @@ -19163,10 +19163,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_pargs::write(::apache::thrift::pr xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1573; - for (_iter1573 = (*(this->part_vals)).begin(); _iter1573 != (*(this->part_vals)).end(); ++_iter1573) + std::vector ::const_iterator _iter1579; + for (_iter1579 = (*(this->part_vals)).begin(); _iter1579 != (*(this->part_vals)).end(); ++_iter1579) { - xfer += oprot->writeString((*_iter1573)); + xfer += oprot->writeString((*_iter1579)); } xfer += oprot->writeListEnd(); } @@ -19211,14 +19211,14 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_result::read(::apache::thrift::pr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1574; - ::apache::thrift::protocol::TType _etype1577; - xfer += iprot->readListBegin(_etype1577, _size1574); - this->success.resize(_size1574); - uint32_t _i1578; - for (_i1578 = 0; _i1578 < _size1574; ++_i1578) + uint32_t _size1580; + ::apache::thrift::protocol::TType _etype1583; + xfer += iprot->readListBegin(_etype1583, _size1580); + this->success.resize(_size1580); + uint32_t _i1584; + for (_i1584 = 0; _i1584 < _size1580; ++_i1584) { - xfer += this->success[_i1578].read(iprot); + xfer += this->success[_i1584].read(iprot); } xfer += iprot->readListEnd(); } @@ -19265,10 +19265,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_result::write(::apache::thrift::p xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1579; - for (_iter1579 = this->success.begin(); _iter1579 != this->success.end(); ++_iter1579) + std::vector ::const_iterator _iter1585; + for (_iter1585 = this->success.begin(); _iter1585 != this->success.end(); ++_iter1585) { - xfer += (*_iter1579).write(oprot); + xfer += (*_iter1585).write(oprot); } xfer += oprot->writeListEnd(); } @@ -19317,14 +19317,14 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_presult::read(::apache::thrift::p if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1580; - ::apache::thrift::protocol::TType _etype1583; - xfer += iprot->readListBegin(_etype1583, _size1580); - (*(this->success)).resize(_size1580); - uint32_t _i1584; - for (_i1584 = 0; _i1584 < _size1580; ++_i1584) + uint32_t _size1586; + ::apache::thrift::protocol::TType _etype1589; + xfer += iprot->readListBegin(_etype1589, _size1586); + (*(this->success)).resize(_size1586); + uint32_t _i1590; + for (_i1590 = 0; _i1590 < _size1586; ++_i1590) { - xfer += (*(this->success))[_i1584].read(iprot); + xfer += (*(this->success))[_i1590].read(iprot); } xfer += iprot->readListEnd(); } @@ -19407,14 +19407,14 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_args::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1585; - ::apache::thrift::protocol::TType _etype1588; - xfer += iprot->readListBegin(_etype1588, _size1585); - this->part_vals.resize(_size1585); - uint32_t _i1589; - for (_i1589 = 0; _i1589 < _size1585; ++_i1589) + uint32_t _size1591; + ::apache::thrift::protocol::TType _etype1594; + xfer += iprot->readListBegin(_etype1594, _size1591); + this->part_vals.resize(_size1591); + uint32_t _i1595; + for (_i1595 = 0; _i1595 < _size1591; ++_i1595) { - xfer += iprot->readString(this->part_vals[_i1589]); + xfer += iprot->readString(this->part_vals[_i1595]); } xfer += iprot->readListEnd(); } @@ -19443,14 +19443,14 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_args::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { this->group_names.clear(); - uint32_t _size1590; - ::apache::thrift::protocol::TType _etype1593; - xfer += iprot->readListBegin(_etype1593, _size1590); - this->group_names.resize(_size1590); - uint32_t _i1594; - for (_i1594 = 0; _i1594 < _size1590; ++_i1594) + uint32_t _size1596; + ::apache::thrift::protocol::TType _etype1599; + xfer += iprot->readListBegin(_etype1599, _size1596); + this->group_names.resize(_size1596); + uint32_t _i1600; + for (_i1600 = 0; _i1600 < _size1596; ++_i1600) { - xfer += iprot->readString(this->group_names[_i1594]); + xfer += iprot->readString(this->group_names[_i1600]); } xfer += iprot->readListEnd(); } @@ -19487,10 +19487,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_args::write(::apache::t xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1595; - for (_iter1595 = this->part_vals.begin(); _iter1595 != this->part_vals.end(); ++_iter1595) + std::vector ::const_iterator _iter1601; + for (_iter1601 = this->part_vals.begin(); _iter1601 != this->part_vals.end(); ++_iter1601) { - xfer += oprot->writeString((*_iter1595)); + xfer += oprot->writeString((*_iter1601)); } xfer += oprot->writeListEnd(); } @@ -19507,10 +19507,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_args::write(::apache::t xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 6); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->group_names.size())); - std::vector ::const_iterator _iter1596; - for (_iter1596 = this->group_names.begin(); _iter1596 != this->group_names.end(); ++_iter1596) + std::vector ::const_iterator _iter1602; + for (_iter1602 = this->group_names.begin(); _iter1602 != this->group_names.end(); ++_iter1602) { - xfer += oprot->writeString((*_iter1596)); + xfer += oprot->writeString((*_iter1602)); } xfer += oprot->writeListEnd(); } @@ -19542,10 +19542,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_pargs::write(::apache:: xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1597; - for (_iter1597 = (*(this->part_vals)).begin(); _iter1597 != (*(this->part_vals)).end(); ++_iter1597) + std::vector ::const_iterator _iter1603; + for (_iter1603 = (*(this->part_vals)).begin(); _iter1603 != (*(this->part_vals)).end(); ++_iter1603) { - xfer += oprot->writeString((*_iter1597)); + xfer += oprot->writeString((*_iter1603)); } xfer += oprot->writeListEnd(); } @@ -19562,10 +19562,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_pargs::write(::apache:: xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 6); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->group_names)).size())); - std::vector ::const_iterator _iter1598; - for (_iter1598 = (*(this->group_names)).begin(); _iter1598 != (*(this->group_names)).end(); ++_iter1598) + std::vector ::const_iterator _iter1604; + for (_iter1604 = (*(this->group_names)).begin(); _iter1604 != (*(this->group_names)).end(); ++_iter1604) { - xfer += oprot->writeString((*_iter1598)); + xfer += oprot->writeString((*_iter1604)); } xfer += oprot->writeListEnd(); } @@ -19606,14 +19606,14 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_result::read(::apache:: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1599; - ::apache::thrift::protocol::TType _etype1602; - xfer += iprot->readListBegin(_etype1602, _size1599); - this->success.resize(_size1599); - uint32_t _i1603; - for (_i1603 = 0; _i1603 < _size1599; ++_i1603) + uint32_t _size1605; + ::apache::thrift::protocol::TType _etype1608; + xfer += iprot->readListBegin(_etype1608, _size1605); + this->success.resize(_size1605); + uint32_t _i1609; + for (_i1609 = 0; _i1609 < _size1605; ++_i1609) { - xfer += this->success[_i1603].read(iprot); + xfer += this->success[_i1609].read(iprot); } xfer += iprot->readListEnd(); } @@ -19660,10 +19660,10 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_result::write(::apache: xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1604; - for (_iter1604 = this->success.begin(); _iter1604 != this->success.end(); ++_iter1604) + std::vector ::const_iterator _iter1610; + for (_iter1610 = this->success.begin(); _iter1610 != this->success.end(); ++_iter1610) { - xfer += (*_iter1604).write(oprot); + xfer += (*_iter1610).write(oprot); } xfer += oprot->writeListEnd(); } @@ -19712,14 +19712,14 @@ uint32_t ThriftHiveMetastore_get_partitions_ps_with_auth_presult::read(::apache: if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1605; - ::apache::thrift::protocol::TType _etype1608; - xfer += iprot->readListBegin(_etype1608, _size1605); - (*(this->success)).resize(_size1605); - uint32_t _i1609; - for (_i1609 = 0; _i1609 < _size1605; ++_i1609) + uint32_t _size1611; + ::apache::thrift::protocol::TType _etype1614; + xfer += iprot->readListBegin(_etype1614, _size1611); + (*(this->success)).resize(_size1611); + uint32_t _i1615; + for (_i1615 = 0; _i1615 < _size1611; ++_i1615) { - xfer += (*(this->success))[_i1609].read(iprot); + xfer += (*(this->success))[_i1615].read(iprot); } xfer += iprot->readListEnd(); } @@ -19802,14 +19802,14 @@ uint32_t ThriftHiveMetastore_get_partition_names_ps_args::read(::apache::thrift: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1610; - ::apache::thrift::protocol::TType _etype1613; - xfer += iprot->readListBegin(_etype1613, _size1610); - this->part_vals.resize(_size1610); - uint32_t _i1614; - for (_i1614 = 0; _i1614 < _size1610; ++_i1614) + uint32_t _size1616; + ::apache::thrift::protocol::TType _etype1619; + xfer += iprot->readListBegin(_etype1619, _size1616); + this->part_vals.resize(_size1616); + uint32_t _i1620; + for (_i1620 = 0; _i1620 < _size1616; ++_i1620) { - xfer += iprot->readString(this->part_vals[_i1614]); + xfer += iprot->readString(this->part_vals[_i1620]); } xfer += iprot->readListEnd(); } @@ -19854,10 +19854,10 @@ uint32_t ThriftHiveMetastore_get_partition_names_ps_args::write(::apache::thrift xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1615; - for (_iter1615 = this->part_vals.begin(); _iter1615 != this->part_vals.end(); ++_iter1615) + std::vector ::const_iterator _iter1621; + for (_iter1621 = this->part_vals.begin(); _iter1621 != this->part_vals.end(); ++_iter1621) { - xfer += oprot->writeString((*_iter1615)); + xfer += oprot->writeString((*_iter1621)); } xfer += oprot->writeListEnd(); } @@ -19893,10 +19893,10 @@ uint32_t ThriftHiveMetastore_get_partition_names_ps_pargs::write(::apache::thrif xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1616; - for (_iter1616 = (*(this->part_vals)).begin(); _iter1616 != (*(this->part_vals)).end(); ++_iter1616) + std::vector ::const_iterator _iter1622; + for (_iter1622 = (*(this->part_vals)).begin(); _iter1622 != (*(this->part_vals)).end(); ++_iter1622) { - xfer += oprot->writeString((*_iter1616)); + xfer += oprot->writeString((*_iter1622)); } xfer += oprot->writeListEnd(); } @@ -19941,14 +19941,14 @@ uint32_t ThriftHiveMetastore_get_partition_names_ps_result::read(::apache::thrif if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1617; - ::apache::thrift::protocol::TType _etype1620; - xfer += iprot->readListBegin(_etype1620, _size1617); - this->success.resize(_size1617); - uint32_t _i1621; - for (_i1621 = 0; _i1621 < _size1617; ++_i1621) + uint32_t _size1623; + ::apache::thrift::protocol::TType _etype1626; + xfer += iprot->readListBegin(_etype1626, _size1623); + this->success.resize(_size1623); + uint32_t _i1627; + for (_i1627 = 0; _i1627 < _size1623; ++_i1627) { - xfer += iprot->readString(this->success[_i1621]); + xfer += iprot->readString(this->success[_i1627]); } xfer += iprot->readListEnd(); } @@ -19995,10 +19995,10 @@ uint32_t ThriftHiveMetastore_get_partition_names_ps_result::write(::apache::thri xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1622; - for (_iter1622 = this->success.begin(); _iter1622 != this->success.end(); ++_iter1622) + std::vector ::const_iterator _iter1628; + for (_iter1628 = this->success.begin(); _iter1628 != this->success.end(); ++_iter1628) { - xfer += oprot->writeString((*_iter1622)); + xfer += oprot->writeString((*_iter1628)); } xfer += oprot->writeListEnd(); } @@ -20047,14 +20047,14 @@ uint32_t ThriftHiveMetastore_get_partition_names_ps_presult::read(::apache::thri if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1623; - ::apache::thrift::protocol::TType _etype1626; - xfer += iprot->readListBegin(_etype1626, _size1623); - (*(this->success)).resize(_size1623); - uint32_t _i1627; - for (_i1627 = 0; _i1627 < _size1623; ++_i1627) + uint32_t _size1629; + ::apache::thrift::protocol::TType _etype1632; + xfer += iprot->readListBegin(_etype1632, _size1629); + (*(this->success)).resize(_size1629); + uint32_t _i1633; + for (_i1633 = 0; _i1633 < _size1629; ++_i1633) { - xfer += iprot->readString((*(this->success))[_i1627]); + xfer += iprot->readString((*(this->success))[_i1633]); } xfer += iprot->readListEnd(); } @@ -20248,14 +20248,14 @@ uint32_t ThriftHiveMetastore_get_partitions_by_filter_result::read(::apache::thr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1628; - ::apache::thrift::protocol::TType _etype1631; - xfer += iprot->readListBegin(_etype1631, _size1628); - this->success.resize(_size1628); - uint32_t _i1632; - for (_i1632 = 0; _i1632 < _size1628; ++_i1632) + uint32_t _size1634; + ::apache::thrift::protocol::TType _etype1637; + xfer += iprot->readListBegin(_etype1637, _size1634); + this->success.resize(_size1634); + uint32_t _i1638; + for (_i1638 = 0; _i1638 < _size1634; ++_i1638) { - xfer += this->success[_i1632].read(iprot); + xfer += this->success[_i1638].read(iprot); } xfer += iprot->readListEnd(); } @@ -20302,10 +20302,10 @@ uint32_t ThriftHiveMetastore_get_partitions_by_filter_result::write(::apache::th xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1633; - for (_iter1633 = this->success.begin(); _iter1633 != this->success.end(); ++_iter1633) + std::vector ::const_iterator _iter1639; + for (_iter1639 = this->success.begin(); _iter1639 != this->success.end(); ++_iter1639) { - xfer += (*_iter1633).write(oprot); + xfer += (*_iter1639).write(oprot); } xfer += oprot->writeListEnd(); } @@ -20354,14 +20354,14 @@ uint32_t ThriftHiveMetastore_get_partitions_by_filter_presult::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1634; - ::apache::thrift::protocol::TType _etype1637; - xfer += iprot->readListBegin(_etype1637, _size1634); - (*(this->success)).resize(_size1634); - uint32_t _i1638; - for (_i1638 = 0; _i1638 < _size1634; ++_i1638) + uint32_t _size1640; + ::apache::thrift::protocol::TType _etype1643; + xfer += iprot->readListBegin(_etype1643, _size1640); + (*(this->success)).resize(_size1640); + uint32_t _i1644; + for (_i1644 = 0; _i1644 < _size1640; ++_i1644) { - xfer += (*(this->success))[_i1638].read(iprot); + xfer += (*(this->success))[_i1644].read(iprot); } xfer += iprot->readListEnd(); } @@ -20555,14 +20555,14 @@ uint32_t ThriftHiveMetastore_get_part_specs_by_filter_result::read(::apache::thr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1639; - ::apache::thrift::protocol::TType _etype1642; - xfer += iprot->readListBegin(_etype1642, _size1639); - this->success.resize(_size1639); - uint32_t _i1643; - for (_i1643 = 0; _i1643 < _size1639; ++_i1643) + uint32_t _size1645; + ::apache::thrift::protocol::TType _etype1648; + xfer += iprot->readListBegin(_etype1648, _size1645); + this->success.resize(_size1645); + uint32_t _i1649; + for (_i1649 = 0; _i1649 < _size1645; ++_i1649) { - xfer += this->success[_i1643].read(iprot); + xfer += this->success[_i1649].read(iprot); } xfer += iprot->readListEnd(); } @@ -20609,10 +20609,10 @@ uint32_t ThriftHiveMetastore_get_part_specs_by_filter_result::write(::apache::th xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1644; - for (_iter1644 = this->success.begin(); _iter1644 != this->success.end(); ++_iter1644) + std::vector ::const_iterator _iter1650; + for (_iter1650 = this->success.begin(); _iter1650 != this->success.end(); ++_iter1650) { - xfer += (*_iter1644).write(oprot); + xfer += (*_iter1650).write(oprot); } xfer += oprot->writeListEnd(); } @@ -20661,14 +20661,14 @@ uint32_t ThriftHiveMetastore_get_part_specs_by_filter_presult::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1645; - ::apache::thrift::protocol::TType _etype1648; - xfer += iprot->readListBegin(_etype1648, _size1645); - (*(this->success)).resize(_size1645); - uint32_t _i1649; - for (_i1649 = 0; _i1649 < _size1645; ++_i1649) + uint32_t _size1651; + ::apache::thrift::protocol::TType _etype1654; + xfer += iprot->readListBegin(_etype1654, _size1651); + (*(this->success)).resize(_size1651); + uint32_t _i1655; + for (_i1655 = 0; _i1655 < _size1651; ++_i1655) { - xfer += (*(this->success))[_i1649].read(iprot); + xfer += (*(this->success))[_i1655].read(iprot); } xfer += iprot->readListEnd(); } @@ -21237,14 +21237,14 @@ uint32_t ThriftHiveMetastore_get_partitions_by_names_args::read(::apache::thrift if (ftype == ::apache::thrift::protocol::T_LIST) { { this->names.clear(); - uint32_t _size1650; - ::apache::thrift::protocol::TType _etype1653; - xfer += iprot->readListBegin(_etype1653, _size1650); - this->names.resize(_size1650); - uint32_t _i1654; - for (_i1654 = 0; _i1654 < _size1650; ++_i1654) + uint32_t _size1656; + ::apache::thrift::protocol::TType _etype1659; + xfer += iprot->readListBegin(_etype1659, _size1656); + this->names.resize(_size1656); + uint32_t _i1660; + for (_i1660 = 0; _i1660 < _size1656; ++_i1660) { - xfer += iprot->readString(this->names[_i1654]); + xfer += iprot->readString(this->names[_i1660]); } xfer += iprot->readListEnd(); } @@ -21281,10 +21281,10 @@ uint32_t ThriftHiveMetastore_get_partitions_by_names_args::write(::apache::thrif xfer += oprot->writeFieldBegin("names", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->names.size())); - std::vector ::const_iterator _iter1655; - for (_iter1655 = this->names.begin(); _iter1655 != this->names.end(); ++_iter1655) + std::vector ::const_iterator _iter1661; + for (_iter1661 = this->names.begin(); _iter1661 != this->names.end(); ++_iter1661) { - xfer += oprot->writeString((*_iter1655)); + xfer += oprot->writeString((*_iter1661)); } xfer += oprot->writeListEnd(); } @@ -21316,10 +21316,10 @@ uint32_t ThriftHiveMetastore_get_partitions_by_names_pargs::write(::apache::thri xfer += oprot->writeFieldBegin("names", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->names)).size())); - std::vector ::const_iterator _iter1656; - for (_iter1656 = (*(this->names)).begin(); _iter1656 != (*(this->names)).end(); ++_iter1656) + std::vector ::const_iterator _iter1662; + for (_iter1662 = (*(this->names)).begin(); _iter1662 != (*(this->names)).end(); ++_iter1662) { - xfer += oprot->writeString((*_iter1656)); + xfer += oprot->writeString((*_iter1662)); } xfer += oprot->writeListEnd(); } @@ -21360,14 +21360,14 @@ uint32_t ThriftHiveMetastore_get_partitions_by_names_result::read(::apache::thri if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1657; - ::apache::thrift::protocol::TType _etype1660; - xfer += iprot->readListBegin(_etype1660, _size1657); - this->success.resize(_size1657); - uint32_t _i1661; - for (_i1661 = 0; _i1661 < _size1657; ++_i1661) + uint32_t _size1663; + ::apache::thrift::protocol::TType _etype1666; + xfer += iprot->readListBegin(_etype1666, _size1663); + this->success.resize(_size1663); + uint32_t _i1667; + for (_i1667 = 0; _i1667 < _size1663; ++_i1667) { - xfer += this->success[_i1661].read(iprot); + xfer += this->success[_i1667].read(iprot); } xfer += iprot->readListEnd(); } @@ -21414,10 +21414,10 @@ uint32_t ThriftHiveMetastore_get_partitions_by_names_result::write(::apache::thr xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1662; - for (_iter1662 = this->success.begin(); _iter1662 != this->success.end(); ++_iter1662) + std::vector ::const_iterator _iter1668; + for (_iter1668 = this->success.begin(); _iter1668 != this->success.end(); ++_iter1668) { - xfer += (*_iter1662).write(oprot); + xfer += (*_iter1668).write(oprot); } xfer += oprot->writeListEnd(); } @@ -21466,14 +21466,14 @@ uint32_t ThriftHiveMetastore_get_partitions_by_names_presult::read(::apache::thr if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1663; - ::apache::thrift::protocol::TType _etype1666; - xfer += iprot->readListBegin(_etype1666, _size1663); - (*(this->success)).resize(_size1663); - uint32_t _i1667; - for (_i1667 = 0; _i1667 < _size1663; ++_i1667) + uint32_t _size1669; + ::apache::thrift::protocol::TType _etype1672; + xfer += iprot->readListBegin(_etype1672, _size1669); + (*(this->success)).resize(_size1669); + uint32_t _i1673; + for (_i1673 = 0; _i1673 < _size1669; ++_i1673) { - xfer += (*(this->success))[_i1667].read(iprot); + xfer += (*(this->success))[_i1673].read(iprot); } xfer += iprot->readListEnd(); } @@ -21795,14 +21795,14 @@ uint32_t ThriftHiveMetastore_alter_partitions_args::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->new_parts.clear(); - uint32_t _size1668; - ::apache::thrift::protocol::TType _etype1671; - xfer += iprot->readListBegin(_etype1671, _size1668); - this->new_parts.resize(_size1668); - uint32_t _i1672; - for (_i1672 = 0; _i1672 < _size1668; ++_i1672) + uint32_t _size1674; + ::apache::thrift::protocol::TType _etype1677; + xfer += iprot->readListBegin(_etype1677, _size1674); + this->new_parts.resize(_size1674); + uint32_t _i1678; + for (_i1678 = 0; _i1678 < _size1674; ++_i1678) { - xfer += this->new_parts[_i1672].read(iprot); + xfer += this->new_parts[_i1678].read(iprot); } xfer += iprot->readListEnd(); } @@ -21839,10 +21839,10 @@ uint32_t ThriftHiveMetastore_alter_partitions_args::write(::apache::thrift::prot xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->new_parts.size())); - std::vector ::const_iterator _iter1673; - for (_iter1673 = this->new_parts.begin(); _iter1673 != this->new_parts.end(); ++_iter1673) + std::vector ::const_iterator _iter1679; + for (_iter1679 = this->new_parts.begin(); _iter1679 != this->new_parts.end(); ++_iter1679) { - xfer += (*_iter1673).write(oprot); + xfer += (*_iter1679).write(oprot); } xfer += oprot->writeListEnd(); } @@ -21874,10 +21874,10 @@ uint32_t ThriftHiveMetastore_alter_partitions_pargs::write(::apache::thrift::pro xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->new_parts)).size())); - std::vector ::const_iterator _iter1674; - for (_iter1674 = (*(this->new_parts)).begin(); _iter1674 != (*(this->new_parts)).end(); ++_iter1674) + std::vector ::const_iterator _iter1680; + for (_iter1680 = (*(this->new_parts)).begin(); _iter1680 != (*(this->new_parts)).end(); ++_iter1680) { - xfer += (*_iter1674).write(oprot); + xfer += (*_iter1680).write(oprot); } xfer += oprot->writeListEnd(); } @@ -22062,14 +22062,14 @@ uint32_t ThriftHiveMetastore_alter_partitions_with_environment_context_args::rea if (ftype == ::apache::thrift::protocol::T_LIST) { { this->new_parts.clear(); - uint32_t _size1675; - ::apache::thrift::protocol::TType _etype1678; - xfer += iprot->readListBegin(_etype1678, _size1675); - this->new_parts.resize(_size1675); - uint32_t _i1679; - for (_i1679 = 0; _i1679 < _size1675; ++_i1679) + uint32_t _size1681; + ::apache::thrift::protocol::TType _etype1684; + xfer += iprot->readListBegin(_etype1684, _size1681); + this->new_parts.resize(_size1681); + uint32_t _i1685; + for (_i1685 = 0; _i1685 < _size1681; ++_i1685) { - xfer += this->new_parts[_i1679].read(iprot); + xfer += this->new_parts[_i1685].read(iprot); } xfer += iprot->readListEnd(); } @@ -22114,10 +22114,10 @@ uint32_t ThriftHiveMetastore_alter_partitions_with_environment_context_args::wri xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->new_parts.size())); - std::vector ::const_iterator _iter1680; - for (_iter1680 = this->new_parts.begin(); _iter1680 != this->new_parts.end(); ++_iter1680) + std::vector ::const_iterator _iter1686; + for (_iter1686 = this->new_parts.begin(); _iter1686 != this->new_parts.end(); ++_iter1686) { - xfer += (*_iter1680).write(oprot); + xfer += (*_iter1686).write(oprot); } xfer += oprot->writeListEnd(); } @@ -22153,10 +22153,10 @@ uint32_t ThriftHiveMetastore_alter_partitions_with_environment_context_pargs::wr xfer += oprot->writeFieldBegin("new_parts", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast((*(this->new_parts)).size())); - std::vector ::const_iterator _iter1681; - for (_iter1681 = (*(this->new_parts)).begin(); _iter1681 != (*(this->new_parts)).end(); ++_iter1681) + std::vector ::const_iterator _iter1687; + for (_iter1687 = (*(this->new_parts)).begin(); _iter1687 != (*(this->new_parts)).end(); ++_iter1687) { - xfer += (*_iter1681).write(oprot); + xfer += (*_iter1687).write(oprot); } xfer += oprot->writeListEnd(); } @@ -22600,14 +22600,14 @@ uint32_t ThriftHiveMetastore_rename_partition_args::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1682; - ::apache::thrift::protocol::TType _etype1685; - xfer += iprot->readListBegin(_etype1685, _size1682); - this->part_vals.resize(_size1682); - uint32_t _i1686; - for (_i1686 = 0; _i1686 < _size1682; ++_i1686) + uint32_t _size1688; + ::apache::thrift::protocol::TType _etype1691; + xfer += iprot->readListBegin(_etype1691, _size1688); + this->part_vals.resize(_size1688); + uint32_t _i1692; + for (_i1692 = 0; _i1692 < _size1688; ++_i1692) { - xfer += iprot->readString(this->part_vals[_i1686]); + xfer += iprot->readString(this->part_vals[_i1692]); } xfer += iprot->readListEnd(); } @@ -22652,10 +22652,10 @@ uint32_t ThriftHiveMetastore_rename_partition_args::write(::apache::thrift::prot xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1687; - for (_iter1687 = this->part_vals.begin(); _iter1687 != this->part_vals.end(); ++_iter1687) + std::vector ::const_iterator _iter1693; + for (_iter1693 = this->part_vals.begin(); _iter1693 != this->part_vals.end(); ++_iter1693) { - xfer += oprot->writeString((*_iter1687)); + xfer += oprot->writeString((*_iter1693)); } xfer += oprot->writeListEnd(); } @@ -22691,10 +22691,10 @@ uint32_t ThriftHiveMetastore_rename_partition_pargs::write(::apache::thrift::pro xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1688; - for (_iter1688 = (*(this->part_vals)).begin(); _iter1688 != (*(this->part_vals)).end(); ++_iter1688) + std::vector ::const_iterator _iter1694; + for (_iter1694 = (*(this->part_vals)).begin(); _iter1694 != (*(this->part_vals)).end(); ++_iter1694) { - xfer += oprot->writeString((*_iter1688)); + xfer += oprot->writeString((*_iter1694)); } xfer += oprot->writeListEnd(); } @@ -22867,14 +22867,14 @@ uint32_t ThriftHiveMetastore_partition_name_has_valid_characters_args::read(::ap if (ftype == ::apache::thrift::protocol::T_LIST) { { this->part_vals.clear(); - uint32_t _size1689; - ::apache::thrift::protocol::TType _etype1692; - xfer += iprot->readListBegin(_etype1692, _size1689); - this->part_vals.resize(_size1689); - uint32_t _i1693; - for (_i1693 = 0; _i1693 < _size1689; ++_i1693) + uint32_t _size1695; + ::apache::thrift::protocol::TType _etype1698; + xfer += iprot->readListBegin(_etype1698, _size1695); + this->part_vals.resize(_size1695); + uint32_t _i1699; + for (_i1699 = 0; _i1699 < _size1695; ++_i1699) { - xfer += iprot->readString(this->part_vals[_i1693]); + xfer += iprot->readString(this->part_vals[_i1699]); } xfer += iprot->readListEnd(); } @@ -22911,10 +22911,10 @@ uint32_t ThriftHiveMetastore_partition_name_has_valid_characters_args::write(::a xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::vector ::const_iterator _iter1694; - for (_iter1694 = this->part_vals.begin(); _iter1694 != this->part_vals.end(); ++_iter1694) + std::vector ::const_iterator _iter1700; + for (_iter1700 = this->part_vals.begin(); _iter1700 != this->part_vals.end(); ++_iter1700) { - xfer += oprot->writeString((*_iter1694)); + xfer += oprot->writeString((*_iter1700)); } xfer += oprot->writeListEnd(); } @@ -22942,10 +22942,10 @@ uint32_t ThriftHiveMetastore_partition_name_has_valid_characters_pargs::write(:: xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::vector ::const_iterator _iter1695; - for (_iter1695 = (*(this->part_vals)).begin(); _iter1695 != (*(this->part_vals)).end(); ++_iter1695) + std::vector ::const_iterator _iter1701; + for (_iter1701 = (*(this->part_vals)).begin(); _iter1701 != (*(this->part_vals)).end(); ++_iter1701) { - xfer += oprot->writeString((*_iter1695)); + xfer += oprot->writeString((*_iter1701)); } xfer += oprot->writeListEnd(); } @@ -23420,14 +23420,14 @@ uint32_t ThriftHiveMetastore_partition_name_to_vals_result::read(::apache::thrif if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1696; - ::apache::thrift::protocol::TType _etype1699; - xfer += iprot->readListBegin(_etype1699, _size1696); - this->success.resize(_size1696); - uint32_t _i1700; - for (_i1700 = 0; _i1700 < _size1696; ++_i1700) + uint32_t _size1702; + ::apache::thrift::protocol::TType _etype1705; + xfer += iprot->readListBegin(_etype1705, _size1702); + this->success.resize(_size1702); + uint32_t _i1706; + for (_i1706 = 0; _i1706 < _size1702; ++_i1706) { - xfer += iprot->readString(this->success[_i1700]); + xfer += iprot->readString(this->success[_i1706]); } xfer += iprot->readListEnd(); } @@ -23466,10 +23466,10 @@ uint32_t ThriftHiveMetastore_partition_name_to_vals_result::write(::apache::thri xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1701; - for (_iter1701 = this->success.begin(); _iter1701 != this->success.end(); ++_iter1701) + std::vector ::const_iterator _iter1707; + for (_iter1707 = this->success.begin(); _iter1707 != this->success.end(); ++_iter1707) { - xfer += oprot->writeString((*_iter1701)); + xfer += oprot->writeString((*_iter1707)); } xfer += oprot->writeListEnd(); } @@ -23514,14 +23514,14 @@ uint32_t ThriftHiveMetastore_partition_name_to_vals_presult::read(::apache::thri if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1702; - ::apache::thrift::protocol::TType _etype1705; - xfer += iprot->readListBegin(_etype1705, _size1702); - (*(this->success)).resize(_size1702); - uint32_t _i1706; - for (_i1706 = 0; _i1706 < _size1702; ++_i1706) + uint32_t _size1708; + ::apache::thrift::protocol::TType _etype1711; + xfer += iprot->readListBegin(_etype1711, _size1708); + (*(this->success)).resize(_size1708); + uint32_t _i1712; + for (_i1712 = 0; _i1712 < _size1708; ++_i1712) { - xfer += iprot->readString((*(this->success))[_i1706]); + xfer += iprot->readString((*(this->success))[_i1712]); } xfer += iprot->readListEnd(); } @@ -23659,17 +23659,17 @@ uint32_t ThriftHiveMetastore_partition_name_to_spec_result::read(::apache::thrif if (ftype == ::apache::thrift::protocol::T_MAP) { { this->success.clear(); - uint32_t _size1707; - ::apache::thrift::protocol::TType _ktype1708; - ::apache::thrift::protocol::TType _vtype1709; - xfer += iprot->readMapBegin(_ktype1708, _vtype1709, _size1707); - uint32_t _i1711; - for (_i1711 = 0; _i1711 < _size1707; ++_i1711) + uint32_t _size1713; + ::apache::thrift::protocol::TType _ktype1714; + ::apache::thrift::protocol::TType _vtype1715; + xfer += iprot->readMapBegin(_ktype1714, _vtype1715, _size1713); + uint32_t _i1717; + for (_i1717 = 0; _i1717 < _size1713; ++_i1717) { - std::string _key1712; - xfer += iprot->readString(_key1712); - std::string& _val1713 = this->success[_key1712]; - xfer += iprot->readString(_val1713); + std::string _key1718; + xfer += iprot->readString(_key1718); + std::string& _val1719 = this->success[_key1718]; + xfer += iprot->readString(_val1719); } xfer += iprot->readMapEnd(); } @@ -23708,11 +23708,11 @@ uint32_t ThriftHiveMetastore_partition_name_to_spec_result::write(::apache::thri xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_MAP, 0); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::map ::const_iterator _iter1714; - for (_iter1714 = this->success.begin(); _iter1714 != this->success.end(); ++_iter1714) + std::map ::const_iterator _iter1720; + for (_iter1720 = this->success.begin(); _iter1720 != this->success.end(); ++_iter1720) { - xfer += oprot->writeString(_iter1714->first); - xfer += oprot->writeString(_iter1714->second); + xfer += oprot->writeString(_iter1720->first); + xfer += oprot->writeString(_iter1720->second); } xfer += oprot->writeMapEnd(); } @@ -23757,17 +23757,17 @@ uint32_t ThriftHiveMetastore_partition_name_to_spec_presult::read(::apache::thri if (ftype == ::apache::thrift::protocol::T_MAP) { { (*(this->success)).clear(); - uint32_t _size1715; - ::apache::thrift::protocol::TType _ktype1716; - ::apache::thrift::protocol::TType _vtype1717; - xfer += iprot->readMapBegin(_ktype1716, _vtype1717, _size1715); - uint32_t _i1719; - for (_i1719 = 0; _i1719 < _size1715; ++_i1719) + uint32_t _size1721; + ::apache::thrift::protocol::TType _ktype1722; + ::apache::thrift::protocol::TType _vtype1723; + xfer += iprot->readMapBegin(_ktype1722, _vtype1723, _size1721); + uint32_t _i1725; + for (_i1725 = 0; _i1725 < _size1721; ++_i1725) { - std::string _key1720; - xfer += iprot->readString(_key1720); - std::string& _val1721 = (*(this->success))[_key1720]; - xfer += iprot->readString(_val1721); + std::string _key1726; + xfer += iprot->readString(_key1726); + std::string& _val1727 = (*(this->success))[_key1726]; + xfer += iprot->readString(_val1727); } xfer += iprot->readMapEnd(); } @@ -23842,17 +23842,17 @@ uint32_t ThriftHiveMetastore_markPartitionForEvent_args::read(::apache::thrift:: if (ftype == ::apache::thrift::protocol::T_MAP) { { this->part_vals.clear(); - uint32_t _size1722; - ::apache::thrift::protocol::TType _ktype1723; - ::apache::thrift::protocol::TType _vtype1724; - xfer += iprot->readMapBegin(_ktype1723, _vtype1724, _size1722); - uint32_t _i1726; - for (_i1726 = 0; _i1726 < _size1722; ++_i1726) + uint32_t _size1728; + ::apache::thrift::protocol::TType _ktype1729; + ::apache::thrift::protocol::TType _vtype1730; + xfer += iprot->readMapBegin(_ktype1729, _vtype1730, _size1728); + uint32_t _i1732; + for (_i1732 = 0; _i1732 < _size1728; ++_i1732) { - std::string _key1727; - xfer += iprot->readString(_key1727); - std::string& _val1728 = this->part_vals[_key1727]; - xfer += iprot->readString(_val1728); + std::string _key1733; + xfer += iprot->readString(_key1733); + std::string& _val1734 = this->part_vals[_key1733]; + xfer += iprot->readString(_val1734); } xfer += iprot->readMapEnd(); } @@ -23863,9 +23863,9 @@ uint32_t ThriftHiveMetastore_markPartitionForEvent_args::read(::apache::thrift:: break; case 4: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1729; - xfer += iprot->readI32(ecast1729); - this->eventType = (PartitionEventType::type)ecast1729; + int32_t ecast1735; + xfer += iprot->readI32(ecast1735); + this->eventType = (PartitionEventType::type)ecast1735; this->__isset.eventType = true; } else { xfer += iprot->skip(ftype); @@ -23899,11 +23899,11 @@ uint32_t ThriftHiveMetastore_markPartitionForEvent_args::write(::apache::thrift: xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_MAP, 3); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::map ::const_iterator _iter1730; - for (_iter1730 = this->part_vals.begin(); _iter1730 != this->part_vals.end(); ++_iter1730) + std::map ::const_iterator _iter1736; + for (_iter1736 = this->part_vals.begin(); _iter1736 != this->part_vals.end(); ++_iter1736) { - xfer += oprot->writeString(_iter1730->first); - xfer += oprot->writeString(_iter1730->second); + xfer += oprot->writeString(_iter1736->first); + xfer += oprot->writeString(_iter1736->second); } xfer += oprot->writeMapEnd(); } @@ -23939,11 +23939,11 @@ uint32_t ThriftHiveMetastore_markPartitionForEvent_pargs::write(::apache::thrift xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_MAP, 3); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::map ::const_iterator _iter1731; - for (_iter1731 = (*(this->part_vals)).begin(); _iter1731 != (*(this->part_vals)).end(); ++_iter1731) + std::map ::const_iterator _iter1737; + for (_iter1737 = (*(this->part_vals)).begin(); _iter1737 != (*(this->part_vals)).end(); ++_iter1737) { - xfer += oprot->writeString(_iter1731->first); - xfer += oprot->writeString(_iter1731->second); + xfer += oprot->writeString(_iter1737->first); + xfer += oprot->writeString(_iter1737->second); } xfer += oprot->writeMapEnd(); } @@ -24212,17 +24212,17 @@ uint32_t ThriftHiveMetastore_isPartitionMarkedForEvent_args::read(::apache::thri if (ftype == ::apache::thrift::protocol::T_MAP) { { this->part_vals.clear(); - uint32_t _size1732; - ::apache::thrift::protocol::TType _ktype1733; - ::apache::thrift::protocol::TType _vtype1734; - xfer += iprot->readMapBegin(_ktype1733, _vtype1734, _size1732); - uint32_t _i1736; - for (_i1736 = 0; _i1736 < _size1732; ++_i1736) + uint32_t _size1738; + ::apache::thrift::protocol::TType _ktype1739; + ::apache::thrift::protocol::TType _vtype1740; + xfer += iprot->readMapBegin(_ktype1739, _vtype1740, _size1738); + uint32_t _i1742; + for (_i1742 = 0; _i1742 < _size1738; ++_i1742) { - std::string _key1737; - xfer += iprot->readString(_key1737); - std::string& _val1738 = this->part_vals[_key1737]; - xfer += iprot->readString(_val1738); + std::string _key1743; + xfer += iprot->readString(_key1743); + std::string& _val1744 = this->part_vals[_key1743]; + xfer += iprot->readString(_val1744); } xfer += iprot->readMapEnd(); } @@ -24233,9 +24233,9 @@ uint32_t ThriftHiveMetastore_isPartitionMarkedForEvent_args::read(::apache::thri break; case 4: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1739; - xfer += iprot->readI32(ecast1739); - this->eventType = (PartitionEventType::type)ecast1739; + int32_t ecast1745; + xfer += iprot->readI32(ecast1745); + this->eventType = (PartitionEventType::type)ecast1745; this->__isset.eventType = true; } else { xfer += iprot->skip(ftype); @@ -24269,11 +24269,11 @@ uint32_t ThriftHiveMetastore_isPartitionMarkedForEvent_args::write(::apache::thr xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_MAP, 3); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast(this->part_vals.size())); - std::map ::const_iterator _iter1740; - for (_iter1740 = this->part_vals.begin(); _iter1740 != this->part_vals.end(); ++_iter1740) + std::map ::const_iterator _iter1746; + for (_iter1746 = this->part_vals.begin(); _iter1746 != this->part_vals.end(); ++_iter1746) { - xfer += oprot->writeString(_iter1740->first); - xfer += oprot->writeString(_iter1740->second); + xfer += oprot->writeString(_iter1746->first); + xfer += oprot->writeString(_iter1746->second); } xfer += oprot->writeMapEnd(); } @@ -24309,11 +24309,11 @@ uint32_t ThriftHiveMetastore_isPartitionMarkedForEvent_pargs::write(::apache::th xfer += oprot->writeFieldBegin("part_vals", ::apache::thrift::protocol::T_MAP, 3); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast((*(this->part_vals)).size())); - std::map ::const_iterator _iter1741; - for (_iter1741 = (*(this->part_vals)).begin(); _iter1741 != (*(this->part_vals)).end(); ++_iter1741) + std::map ::const_iterator _iter1747; + for (_iter1747 = (*(this->part_vals)).begin(); _iter1747 != (*(this->part_vals)).end(); ++_iter1747) { - xfer += oprot->writeString(_iter1741->first); - xfer += oprot->writeString(_iter1741->second); + xfer += oprot->writeString(_iter1747->first); + xfer += oprot->writeString(_iter1747->second); } xfer += oprot->writeMapEnd(); } @@ -29462,14 +29462,14 @@ uint32_t ThriftHiveMetastore_get_functions_result::read(::apache::thrift::protoc if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1742; - ::apache::thrift::protocol::TType _etype1745; - xfer += iprot->readListBegin(_etype1745, _size1742); - this->success.resize(_size1742); - uint32_t _i1746; - for (_i1746 = 0; _i1746 < _size1742; ++_i1746) + uint32_t _size1748; + ::apache::thrift::protocol::TType _etype1751; + xfer += iprot->readListBegin(_etype1751, _size1748); + this->success.resize(_size1748); + uint32_t _i1752; + for (_i1752 = 0; _i1752 < _size1748; ++_i1752) { - xfer += iprot->readString(this->success[_i1746]); + xfer += iprot->readString(this->success[_i1752]); } xfer += iprot->readListEnd(); } @@ -29508,10 +29508,10 @@ uint32_t ThriftHiveMetastore_get_functions_result::write(::apache::thrift::proto xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1747; - for (_iter1747 = this->success.begin(); _iter1747 != this->success.end(); ++_iter1747) + std::vector ::const_iterator _iter1753; + for (_iter1753 = this->success.begin(); _iter1753 != this->success.end(); ++_iter1753) { - xfer += oprot->writeString((*_iter1747)); + xfer += oprot->writeString((*_iter1753)); } xfer += oprot->writeListEnd(); } @@ -29556,14 +29556,14 @@ uint32_t ThriftHiveMetastore_get_functions_presult::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1748; - ::apache::thrift::protocol::TType _etype1751; - xfer += iprot->readListBegin(_etype1751, _size1748); - (*(this->success)).resize(_size1748); - uint32_t _i1752; - for (_i1752 = 0; _i1752 < _size1748; ++_i1752) + uint32_t _size1754; + ::apache::thrift::protocol::TType _etype1757; + xfer += iprot->readListBegin(_etype1757, _size1754); + (*(this->success)).resize(_size1754); + uint32_t _i1758; + for (_i1758 = 0; _i1758 < _size1754; ++_i1758) { - xfer += iprot->readString((*(this->success))[_i1752]); + xfer += iprot->readString((*(this->success))[_i1758]); } xfer += iprot->readListEnd(); } @@ -30523,14 +30523,14 @@ uint32_t ThriftHiveMetastore_get_role_names_result::read(::apache::thrift::proto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1753; - ::apache::thrift::protocol::TType _etype1756; - xfer += iprot->readListBegin(_etype1756, _size1753); - this->success.resize(_size1753); - uint32_t _i1757; - for (_i1757 = 0; _i1757 < _size1753; ++_i1757) + uint32_t _size1759; + ::apache::thrift::protocol::TType _etype1762; + xfer += iprot->readListBegin(_etype1762, _size1759); + this->success.resize(_size1759); + uint32_t _i1763; + for (_i1763 = 0; _i1763 < _size1759; ++_i1763) { - xfer += iprot->readString(this->success[_i1757]); + xfer += iprot->readString(this->success[_i1763]); } xfer += iprot->readListEnd(); } @@ -30569,10 +30569,10 @@ uint32_t ThriftHiveMetastore_get_role_names_result::write(::apache::thrift::prot xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1758; - for (_iter1758 = this->success.begin(); _iter1758 != this->success.end(); ++_iter1758) + std::vector ::const_iterator _iter1764; + for (_iter1764 = this->success.begin(); _iter1764 != this->success.end(); ++_iter1764) { - xfer += oprot->writeString((*_iter1758)); + xfer += oprot->writeString((*_iter1764)); } xfer += oprot->writeListEnd(); } @@ -30617,14 +30617,14 @@ uint32_t ThriftHiveMetastore_get_role_names_presult::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1759; - ::apache::thrift::protocol::TType _etype1762; - xfer += iprot->readListBegin(_etype1762, _size1759); - (*(this->success)).resize(_size1759); - uint32_t _i1763; - for (_i1763 = 0; _i1763 < _size1759; ++_i1763) + uint32_t _size1765; + ::apache::thrift::protocol::TType _etype1768; + xfer += iprot->readListBegin(_etype1768, _size1765); + (*(this->success)).resize(_size1765); + uint32_t _i1769; + for (_i1769 = 0; _i1769 < _size1765; ++_i1769) { - xfer += iprot->readString((*(this->success))[_i1763]); + xfer += iprot->readString((*(this->success))[_i1769]); } xfer += iprot->readListEnd(); } @@ -30697,9 +30697,9 @@ uint32_t ThriftHiveMetastore_grant_role_args::read(::apache::thrift::protocol::T break; case 3: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1764; - xfer += iprot->readI32(ecast1764); - this->principal_type = (PrincipalType::type)ecast1764; + int32_t ecast1770; + xfer += iprot->readI32(ecast1770); + this->principal_type = (PrincipalType::type)ecast1770; this->__isset.principal_type = true; } else { xfer += iprot->skip(ftype); @@ -30715,9 +30715,9 @@ uint32_t ThriftHiveMetastore_grant_role_args::read(::apache::thrift::protocol::T break; case 5: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1765; - xfer += iprot->readI32(ecast1765); - this->grantorType = (PrincipalType::type)ecast1765; + int32_t ecast1771; + xfer += iprot->readI32(ecast1771); + this->grantorType = (PrincipalType::type)ecast1771; this->__isset.grantorType = true; } else { xfer += iprot->skip(ftype); @@ -30988,9 +30988,9 @@ uint32_t ThriftHiveMetastore_revoke_role_args::read(::apache::thrift::protocol:: break; case 3: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1766; - xfer += iprot->readI32(ecast1766); - this->principal_type = (PrincipalType::type)ecast1766; + int32_t ecast1772; + xfer += iprot->readI32(ecast1772); + this->principal_type = (PrincipalType::type)ecast1772; this->__isset.principal_type = true; } else { xfer += iprot->skip(ftype); @@ -31221,9 +31221,9 @@ uint32_t ThriftHiveMetastore_list_roles_args::read(::apache::thrift::protocol::T break; case 2: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1767; - xfer += iprot->readI32(ecast1767); - this->principal_type = (PrincipalType::type)ecast1767; + int32_t ecast1773; + xfer += iprot->readI32(ecast1773); + this->principal_type = (PrincipalType::type)ecast1773; this->__isset.principal_type = true; } else { xfer += iprot->skip(ftype); @@ -31312,14 +31312,14 @@ uint32_t ThriftHiveMetastore_list_roles_result::read(::apache::thrift::protocol: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1768; - ::apache::thrift::protocol::TType _etype1771; - xfer += iprot->readListBegin(_etype1771, _size1768); - this->success.resize(_size1768); - uint32_t _i1772; - for (_i1772 = 0; _i1772 < _size1768; ++_i1772) + uint32_t _size1774; + ::apache::thrift::protocol::TType _etype1777; + xfer += iprot->readListBegin(_etype1777, _size1774); + this->success.resize(_size1774); + uint32_t _i1778; + for (_i1778 = 0; _i1778 < _size1774; ++_i1778) { - xfer += this->success[_i1772].read(iprot); + xfer += this->success[_i1778].read(iprot); } xfer += iprot->readListEnd(); } @@ -31358,10 +31358,10 @@ uint32_t ThriftHiveMetastore_list_roles_result::write(::apache::thrift::protocol xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1773; - for (_iter1773 = this->success.begin(); _iter1773 != this->success.end(); ++_iter1773) + std::vector ::const_iterator _iter1779; + for (_iter1779 = this->success.begin(); _iter1779 != this->success.end(); ++_iter1779) { - xfer += (*_iter1773).write(oprot); + xfer += (*_iter1779).write(oprot); } xfer += oprot->writeListEnd(); } @@ -31406,14 +31406,14 @@ uint32_t ThriftHiveMetastore_list_roles_presult::read(::apache::thrift::protocol if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1774; - ::apache::thrift::protocol::TType _etype1777; - xfer += iprot->readListBegin(_etype1777, _size1774); - (*(this->success)).resize(_size1774); - uint32_t _i1778; - for (_i1778 = 0; _i1778 < _size1774; ++_i1778) + uint32_t _size1780; + ::apache::thrift::protocol::TType _etype1783; + xfer += iprot->readListBegin(_etype1783, _size1780); + (*(this->success)).resize(_size1780); + uint32_t _i1784; + for (_i1784 = 0; _i1784 < _size1780; ++_i1784) { - xfer += (*(this->success))[_i1778].read(iprot); + xfer += (*(this->success))[_i1784].read(iprot); } xfer += iprot->readListEnd(); } @@ -32109,14 +32109,14 @@ uint32_t ThriftHiveMetastore_get_privilege_set_args::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { this->group_names.clear(); - uint32_t _size1779; - ::apache::thrift::protocol::TType _etype1782; - xfer += iprot->readListBegin(_etype1782, _size1779); - this->group_names.resize(_size1779); - uint32_t _i1783; - for (_i1783 = 0; _i1783 < _size1779; ++_i1783) + uint32_t _size1785; + ::apache::thrift::protocol::TType _etype1788; + xfer += iprot->readListBegin(_etype1788, _size1785); + this->group_names.resize(_size1785); + uint32_t _i1789; + for (_i1789 = 0; _i1789 < _size1785; ++_i1789) { - xfer += iprot->readString(this->group_names[_i1783]); + xfer += iprot->readString(this->group_names[_i1789]); } xfer += iprot->readListEnd(); } @@ -32153,10 +32153,10 @@ uint32_t ThriftHiveMetastore_get_privilege_set_args::write(::apache::thrift::pro xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->group_names.size())); - std::vector ::const_iterator _iter1784; - for (_iter1784 = this->group_names.begin(); _iter1784 != this->group_names.end(); ++_iter1784) + std::vector ::const_iterator _iter1790; + for (_iter1790 = this->group_names.begin(); _iter1790 != this->group_names.end(); ++_iter1790) { - xfer += oprot->writeString((*_iter1784)); + xfer += oprot->writeString((*_iter1790)); } xfer += oprot->writeListEnd(); } @@ -32188,10 +32188,10 @@ uint32_t ThriftHiveMetastore_get_privilege_set_pargs::write(::apache::thrift::pr xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->group_names)).size())); - std::vector ::const_iterator _iter1785; - for (_iter1785 = (*(this->group_names)).begin(); _iter1785 != (*(this->group_names)).end(); ++_iter1785) + std::vector ::const_iterator _iter1791; + for (_iter1791 = (*(this->group_names)).begin(); _iter1791 != (*(this->group_names)).end(); ++_iter1791) { - xfer += oprot->writeString((*_iter1785)); + xfer += oprot->writeString((*_iter1791)); } xfer += oprot->writeListEnd(); } @@ -32366,9 +32366,9 @@ uint32_t ThriftHiveMetastore_list_privileges_args::read(::apache::thrift::protoc break; case 2: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1786; - xfer += iprot->readI32(ecast1786); - this->principal_type = (PrincipalType::type)ecast1786; + int32_t ecast1792; + xfer += iprot->readI32(ecast1792); + this->principal_type = (PrincipalType::type)ecast1792; this->__isset.principal_type = true; } else { xfer += iprot->skip(ftype); @@ -32473,14 +32473,14 @@ uint32_t ThriftHiveMetastore_list_privileges_result::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1787; - ::apache::thrift::protocol::TType _etype1790; - xfer += iprot->readListBegin(_etype1790, _size1787); - this->success.resize(_size1787); - uint32_t _i1791; - for (_i1791 = 0; _i1791 < _size1787; ++_i1791) + uint32_t _size1793; + ::apache::thrift::protocol::TType _etype1796; + xfer += iprot->readListBegin(_etype1796, _size1793); + this->success.resize(_size1793); + uint32_t _i1797; + for (_i1797 = 0; _i1797 < _size1793; ++_i1797) { - xfer += this->success[_i1791].read(iprot); + xfer += this->success[_i1797].read(iprot); } xfer += iprot->readListEnd(); } @@ -32519,10 +32519,10 @@ uint32_t ThriftHiveMetastore_list_privileges_result::write(::apache::thrift::pro xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1792; - for (_iter1792 = this->success.begin(); _iter1792 != this->success.end(); ++_iter1792) + std::vector ::const_iterator _iter1798; + for (_iter1798 = this->success.begin(); _iter1798 != this->success.end(); ++_iter1798) { - xfer += (*_iter1792).write(oprot); + xfer += (*_iter1798).write(oprot); } xfer += oprot->writeListEnd(); } @@ -32567,14 +32567,14 @@ uint32_t ThriftHiveMetastore_list_privileges_presult::read(::apache::thrift::pro if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1793; - ::apache::thrift::protocol::TType _etype1796; - xfer += iprot->readListBegin(_etype1796, _size1793); - (*(this->success)).resize(_size1793); - uint32_t _i1797; - for (_i1797 = 0; _i1797 < _size1793; ++_i1797) + uint32_t _size1799; + ::apache::thrift::protocol::TType _etype1802; + xfer += iprot->readListBegin(_etype1802, _size1799); + (*(this->success)).resize(_size1799); + uint32_t _i1803; + for (_i1803 = 0; _i1803 < _size1799; ++_i1803) { - xfer += (*(this->success))[_i1797].read(iprot); + xfer += (*(this->success))[_i1803].read(iprot); } xfer += iprot->readListEnd(); } @@ -33262,14 +33262,14 @@ uint32_t ThriftHiveMetastore_set_ugi_args::read(::apache::thrift::protocol::TPro if (ftype == ::apache::thrift::protocol::T_LIST) { { this->group_names.clear(); - uint32_t _size1798; - ::apache::thrift::protocol::TType _etype1801; - xfer += iprot->readListBegin(_etype1801, _size1798); - this->group_names.resize(_size1798); - uint32_t _i1802; - for (_i1802 = 0; _i1802 < _size1798; ++_i1802) + uint32_t _size1804; + ::apache::thrift::protocol::TType _etype1807; + xfer += iprot->readListBegin(_etype1807, _size1804); + this->group_names.resize(_size1804); + uint32_t _i1808; + for (_i1808 = 0; _i1808 < _size1804; ++_i1808) { - xfer += iprot->readString(this->group_names[_i1802]); + xfer += iprot->readString(this->group_names[_i1808]); } xfer += iprot->readListEnd(); } @@ -33302,10 +33302,10 @@ uint32_t ThriftHiveMetastore_set_ugi_args::write(::apache::thrift::protocol::TPr xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->group_names.size())); - std::vector ::const_iterator _iter1803; - for (_iter1803 = this->group_names.begin(); _iter1803 != this->group_names.end(); ++_iter1803) + std::vector ::const_iterator _iter1809; + for (_iter1809 = this->group_names.begin(); _iter1809 != this->group_names.end(); ++_iter1809) { - xfer += oprot->writeString((*_iter1803)); + xfer += oprot->writeString((*_iter1809)); } xfer += oprot->writeListEnd(); } @@ -33333,10 +33333,10 @@ uint32_t ThriftHiveMetastore_set_ugi_pargs::write(::apache::thrift::protocol::TP xfer += oprot->writeFieldBegin("group_names", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast((*(this->group_names)).size())); - std::vector ::const_iterator _iter1804; - for (_iter1804 = (*(this->group_names)).begin(); _iter1804 != (*(this->group_names)).end(); ++_iter1804) + std::vector ::const_iterator _iter1810; + for (_iter1810 = (*(this->group_names)).begin(); _iter1810 != (*(this->group_names)).end(); ++_iter1810) { - xfer += oprot->writeString((*_iter1804)); + xfer += oprot->writeString((*_iter1810)); } xfer += oprot->writeListEnd(); } @@ -33377,14 +33377,14 @@ uint32_t ThriftHiveMetastore_set_ugi_result::read(::apache::thrift::protocol::TP if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1805; - ::apache::thrift::protocol::TType _etype1808; - xfer += iprot->readListBegin(_etype1808, _size1805); - this->success.resize(_size1805); - uint32_t _i1809; - for (_i1809 = 0; _i1809 < _size1805; ++_i1809) + uint32_t _size1811; + ::apache::thrift::protocol::TType _etype1814; + xfer += iprot->readListBegin(_etype1814, _size1811); + this->success.resize(_size1811); + uint32_t _i1815; + for (_i1815 = 0; _i1815 < _size1811; ++_i1815) { - xfer += iprot->readString(this->success[_i1809]); + xfer += iprot->readString(this->success[_i1815]); } xfer += iprot->readListEnd(); } @@ -33423,10 +33423,10 @@ uint32_t ThriftHiveMetastore_set_ugi_result::write(::apache::thrift::protocol::T xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1810; - for (_iter1810 = this->success.begin(); _iter1810 != this->success.end(); ++_iter1810) + std::vector ::const_iterator _iter1816; + for (_iter1816 = this->success.begin(); _iter1816 != this->success.end(); ++_iter1816) { - xfer += oprot->writeString((*_iter1810)); + xfer += oprot->writeString((*_iter1816)); } xfer += oprot->writeListEnd(); } @@ -33471,14 +33471,14 @@ uint32_t ThriftHiveMetastore_set_ugi_presult::read(::apache::thrift::protocol::T if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1811; - ::apache::thrift::protocol::TType _etype1814; - xfer += iprot->readListBegin(_etype1814, _size1811); - (*(this->success)).resize(_size1811); - uint32_t _i1815; - for (_i1815 = 0; _i1815 < _size1811; ++_i1815) + uint32_t _size1817; + ::apache::thrift::protocol::TType _etype1820; + xfer += iprot->readListBegin(_etype1820, _size1817); + (*(this->success)).resize(_size1817); + uint32_t _i1821; + for (_i1821 = 0; _i1821 < _size1817; ++_i1821) { - xfer += iprot->readString((*(this->success))[_i1815]); + xfer += iprot->readString((*(this->success))[_i1821]); } xfer += iprot->readListEnd(); } @@ -34789,14 +34789,14 @@ uint32_t ThriftHiveMetastore_get_all_token_identifiers_result::read(::apache::th if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1816; - ::apache::thrift::protocol::TType _etype1819; - xfer += iprot->readListBegin(_etype1819, _size1816); - this->success.resize(_size1816); - uint32_t _i1820; - for (_i1820 = 0; _i1820 < _size1816; ++_i1820) + uint32_t _size1822; + ::apache::thrift::protocol::TType _etype1825; + xfer += iprot->readListBegin(_etype1825, _size1822); + this->success.resize(_size1822); + uint32_t _i1826; + for (_i1826 = 0; _i1826 < _size1822; ++_i1826) { - xfer += iprot->readString(this->success[_i1820]); + xfer += iprot->readString(this->success[_i1826]); } xfer += iprot->readListEnd(); } @@ -34827,10 +34827,10 @@ uint32_t ThriftHiveMetastore_get_all_token_identifiers_result::write(::apache::t xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1821; - for (_iter1821 = this->success.begin(); _iter1821 != this->success.end(); ++_iter1821) + std::vector ::const_iterator _iter1827; + for (_iter1827 = this->success.begin(); _iter1827 != this->success.end(); ++_iter1827) { - xfer += oprot->writeString((*_iter1821)); + xfer += oprot->writeString((*_iter1827)); } xfer += oprot->writeListEnd(); } @@ -34871,14 +34871,14 @@ uint32_t ThriftHiveMetastore_get_all_token_identifiers_presult::read(::apache::t if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1822; - ::apache::thrift::protocol::TType _etype1825; - xfer += iprot->readListBegin(_etype1825, _size1822); - (*(this->success)).resize(_size1822); - uint32_t _i1826; - for (_i1826 = 0; _i1826 < _size1822; ++_i1826) + uint32_t _size1828; + ::apache::thrift::protocol::TType _etype1831; + xfer += iprot->readListBegin(_etype1831, _size1828); + (*(this->success)).resize(_size1828); + uint32_t _i1832; + for (_i1832 = 0; _i1832 < _size1828; ++_i1832) { - xfer += iprot->readString((*(this->success))[_i1826]); + xfer += iprot->readString((*(this->success))[_i1832]); } xfer += iprot->readListEnd(); } @@ -35604,14 +35604,14 @@ uint32_t ThriftHiveMetastore_get_master_keys_result::read(::apache::thrift::prot if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1827; - ::apache::thrift::protocol::TType _etype1830; - xfer += iprot->readListBegin(_etype1830, _size1827); - this->success.resize(_size1827); - uint32_t _i1831; - for (_i1831 = 0; _i1831 < _size1827; ++_i1831) + uint32_t _size1833; + ::apache::thrift::protocol::TType _etype1836; + xfer += iprot->readListBegin(_etype1836, _size1833); + this->success.resize(_size1833); + uint32_t _i1837; + for (_i1837 = 0; _i1837 < _size1833; ++_i1837) { - xfer += iprot->readString(this->success[_i1831]); + xfer += iprot->readString(this->success[_i1837]); } xfer += iprot->readListEnd(); } @@ -35642,10 +35642,10 @@ uint32_t ThriftHiveMetastore_get_master_keys_result::write(::apache::thrift::pro xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->success.size())); - std::vector ::const_iterator _iter1832; - for (_iter1832 = this->success.begin(); _iter1832 != this->success.end(); ++_iter1832) + std::vector ::const_iterator _iter1838; + for (_iter1838 = this->success.begin(); _iter1838 != this->success.end(); ++_iter1838) { - xfer += oprot->writeString((*_iter1832)); + xfer += oprot->writeString((*_iter1838)); } xfer += oprot->writeListEnd(); } @@ -35686,14 +35686,14 @@ uint32_t ThriftHiveMetastore_get_master_keys_presult::read(::apache::thrift::pro if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1833; - ::apache::thrift::protocol::TType _etype1836; - xfer += iprot->readListBegin(_etype1836, _size1833); - (*(this->success)).resize(_size1833); - uint32_t _i1837; - for (_i1837 = 0; _i1837 < _size1833; ++_i1837) + uint32_t _size1839; + ::apache::thrift::protocol::TType _etype1842; + xfer += iprot->readListBegin(_etype1842, _size1839); + (*(this->success)).resize(_size1839); + uint32_t _i1843; + for (_i1843 = 0; _i1843 < _size1839; ++_i1843) { - xfer += iprot->readString((*(this->success))[_i1837]); + xfer += iprot->readString((*(this->success))[_i1843]); } xfer += iprot->readListEnd(); } @@ -47334,14 +47334,14 @@ uint32_t ThriftHiveMetastore_get_schema_all_versions_result::read(::apache::thri if (ftype == ::apache::thrift::protocol::T_LIST) { { this->success.clear(); - uint32_t _size1838; - ::apache::thrift::protocol::TType _etype1841; - xfer += iprot->readListBegin(_etype1841, _size1838); - this->success.resize(_size1838); - uint32_t _i1842; - for (_i1842 = 0; _i1842 < _size1838; ++_i1842) + uint32_t _size1844; + ::apache::thrift::protocol::TType _etype1847; + xfer += iprot->readListBegin(_etype1847, _size1844); + this->success.resize(_size1844); + uint32_t _i1848; + for (_i1848 = 0; _i1848 < _size1844; ++_i1848) { - xfer += this->success[_i1842].read(iprot); + xfer += this->success[_i1848].read(iprot); } xfer += iprot->readListEnd(); } @@ -47388,10 +47388,10 @@ uint32_t ThriftHiveMetastore_get_schema_all_versions_result::write(::apache::thr xfer += oprot->writeFieldBegin("success", ::apache::thrift::protocol::T_LIST, 0); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->success.size())); - std::vector ::const_iterator _iter1843; - for (_iter1843 = this->success.begin(); _iter1843 != this->success.end(); ++_iter1843) + std::vector ::const_iterator _iter1849; + for (_iter1849 = this->success.begin(); _iter1849 != this->success.end(); ++_iter1849) { - xfer += (*_iter1843).write(oprot); + xfer += (*_iter1849).write(oprot); } xfer += oprot->writeListEnd(); } @@ -47440,14 +47440,14 @@ uint32_t ThriftHiveMetastore_get_schema_all_versions_presult::read(::apache::thr if (ftype == ::apache::thrift::protocol::T_LIST) { { (*(this->success)).clear(); - uint32_t _size1844; - ::apache::thrift::protocol::TType _etype1847; - xfer += iprot->readListBegin(_etype1847, _size1844); - (*(this->success)).resize(_size1844); - uint32_t _i1848; - for (_i1848 = 0; _i1848 < _size1844; ++_i1848) + uint32_t _size1850; + ::apache::thrift::protocol::TType _etype1853; + xfer += iprot->readListBegin(_etype1853, _size1850); + (*(this->success)).resize(_size1850); + uint32_t _i1854; + for (_i1854 = 0; _i1854 < _size1850; ++_i1854) { - xfer += (*(this->success))[_i1848].read(iprot); + xfer += (*(this->success))[_i1854].read(iprot); } xfer += iprot->readListEnd(); } diff --git a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.cpp b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.cpp index 1904047f44..99024279c5 100644 --- a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.cpp +++ b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.cpp @@ -16979,10 +16979,6 @@ AllocateTableWriteIdsRequest::~AllocateTableWriteIdsRequest() throw() { } -void AllocateTableWriteIdsRequest::__set_txnIds(const std::vector & val) { - this->txnIds = val; -} - void AllocateTableWriteIdsRequest::__set_dbName(const std::string& val) { this->dbName = val; } @@ -16991,6 +16987,21 @@ void AllocateTableWriteIdsRequest::__set_tableName(const std::string& val) { this->tableName = val; } +void AllocateTableWriteIdsRequest::__set_txnIds(const std::vector & val) { + this->txnIds = val; +__isset.txnIds = true; +} + +void AllocateTableWriteIdsRequest::__set_replPolicy(const std::string& val) { + this->replPolicy = val; +__isset.replPolicy = true; +} + +void AllocateTableWriteIdsRequest::__set_srcTxnToWriteIdList(const std::vector & val) { + this->srcTxnToWriteIdList = val; +__isset.srcTxnToWriteIdList = true; +} + uint32_t AllocateTableWriteIdsRequest::read(::apache::thrift::protocol::TProtocol* iprot) { apache::thrift::protocol::TInputRecursionTracker tracker(*iprot); @@ -17003,7 +17014,6 @@ uint32_t AllocateTableWriteIdsRequest::read(::apache::thrift::protocol::TProtoco using ::apache::thrift::protocol::TProtocolException; - bool isset_txnIds = false; bool isset_dbName = false; bool isset_tableName = false; @@ -17016,6 +17026,22 @@ uint32_t AllocateTableWriteIdsRequest::read(::apache::thrift::protocol::TProtoco switch (fid) { case 1: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readString(this->dbName); + isset_dbName = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 2: + if (ftype == ::apache::thrift::protocol::T_STRING) { + xfer += iprot->readString(this->tableName); + isset_tableName = true; + } else { + xfer += iprot->skip(ftype); + } + break; + case 3: if (ftype == ::apache::thrift::protocol::T_LIST) { { this->txnIds.clear(); @@ -17030,23 +17056,35 @@ uint32_t AllocateTableWriteIdsRequest::read(::apache::thrift::protocol::TProtoco } xfer += iprot->readListEnd(); } - isset_txnIds = true; + this->__isset.txnIds = true; } else { xfer += iprot->skip(ftype); } break; - case 2: + case 4: if (ftype == ::apache::thrift::protocol::T_STRING) { - xfer += iprot->readString(this->dbName); - isset_dbName = true; + xfer += iprot->readString(this->replPolicy); + this->__isset.replPolicy = true; } else { xfer += iprot->skip(ftype); } break; - case 3: - if (ftype == ::apache::thrift::protocol::T_STRING) { - xfer += iprot->readString(this->tableName); - isset_tableName = true; + case 5: + if (ftype == ::apache::thrift::protocol::T_LIST) { + { + this->srcTxnToWriteIdList.clear(); + uint32_t _size701; + ::apache::thrift::protocol::TType _etype704; + xfer += iprot->readListBegin(_etype704, _size701); + this->srcTxnToWriteIdList.resize(_size701); + uint32_t _i705; + for (_i705 = 0; _i705 < _size701; ++_i705) + { + xfer += this->srcTxnToWriteIdList[_i705].read(iprot); + } + xfer += iprot->readListEnd(); + } + this->__isset.srcTxnToWriteIdList = true; } else { xfer += iprot->skip(ftype); } @@ -17060,8 +17098,6 @@ uint32_t AllocateTableWriteIdsRequest::read(::apache::thrift::protocol::TProtoco xfer += iprot->readStructEnd(); - if (!isset_txnIds) - throw TProtocolException(TProtocolException::INVALID_DATA); if (!isset_dbName) throw TProtocolException(TProtocolException::INVALID_DATA); if (!isset_tableName) @@ -17074,26 +17110,45 @@ uint32_t AllocateTableWriteIdsRequest::write(::apache::thrift::protocol::TProtoc apache::thrift::protocol::TOutputRecursionTracker tracker(*oprot); xfer += oprot->writeStructBegin("AllocateTableWriteIdsRequest"); - xfer += oprot->writeFieldBegin("txnIds", ::apache::thrift::protocol::T_LIST, 1); - { - xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I64, static_cast(this->txnIds.size())); - std::vector ::const_iterator _iter701; - for (_iter701 = this->txnIds.begin(); _iter701 != this->txnIds.end(); ++_iter701) - { - xfer += oprot->writeI64((*_iter701)); - } - xfer += oprot->writeListEnd(); - } - xfer += oprot->writeFieldEnd(); - - xfer += oprot->writeFieldBegin("dbName", ::apache::thrift::protocol::T_STRING, 2); + xfer += oprot->writeFieldBegin("dbName", ::apache::thrift::protocol::T_STRING, 1); xfer += oprot->writeString(this->dbName); xfer += oprot->writeFieldEnd(); - xfer += oprot->writeFieldBegin("tableName", ::apache::thrift::protocol::T_STRING, 3); + xfer += oprot->writeFieldBegin("tableName", ::apache::thrift::protocol::T_STRING, 2); xfer += oprot->writeString(this->tableName); xfer += oprot->writeFieldEnd(); + if (this->__isset.txnIds) { + xfer += oprot->writeFieldBegin("txnIds", ::apache::thrift::protocol::T_LIST, 3); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I64, static_cast(this->txnIds.size())); + std::vector ::const_iterator _iter706; + for (_iter706 = this->txnIds.begin(); _iter706 != this->txnIds.end(); ++_iter706) + { + xfer += oprot->writeI64((*_iter706)); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.replPolicy) { + xfer += oprot->writeFieldBegin("replPolicy", ::apache::thrift::protocol::T_STRING, 4); + xfer += oprot->writeString(this->replPolicy); + xfer += oprot->writeFieldEnd(); + } + if (this->__isset.srcTxnToWriteIdList) { + xfer += oprot->writeFieldBegin("srcTxnToWriteIdList", ::apache::thrift::protocol::T_LIST, 5); + { + xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->srcTxnToWriteIdList.size())); + std::vector ::const_iterator _iter707; + for (_iter707 = this->srcTxnToWriteIdList.begin(); _iter707 != this->srcTxnToWriteIdList.end(); ++_iter707) + { + xfer += (*_iter707).write(oprot); + } + xfer += oprot->writeListEnd(); + } + xfer += oprot->writeFieldEnd(); + } xfer += oprot->writeFieldStop(); xfer += oprot->writeStructEnd(); return xfer; @@ -17101,28 +17156,39 @@ uint32_t AllocateTableWriteIdsRequest::write(::apache::thrift::protocol::TProtoc void swap(AllocateTableWriteIdsRequest &a, AllocateTableWriteIdsRequest &b) { using ::std::swap; - swap(a.txnIds, b.txnIds); swap(a.dbName, b.dbName); swap(a.tableName, b.tableName); + swap(a.txnIds, b.txnIds); + swap(a.replPolicy, b.replPolicy); + swap(a.srcTxnToWriteIdList, b.srcTxnToWriteIdList); + swap(a.__isset, b.__isset); } -AllocateTableWriteIdsRequest::AllocateTableWriteIdsRequest(const AllocateTableWriteIdsRequest& other702) { - txnIds = other702.txnIds; - dbName = other702.dbName; - tableName = other702.tableName; -} -AllocateTableWriteIdsRequest& AllocateTableWriteIdsRequest::operator=(const AllocateTableWriteIdsRequest& other703) { - txnIds = other703.txnIds; - dbName = other703.dbName; - tableName = other703.tableName; +AllocateTableWriteIdsRequest::AllocateTableWriteIdsRequest(const AllocateTableWriteIdsRequest& other708) { + dbName = other708.dbName; + tableName = other708.tableName; + txnIds = other708.txnIds; + replPolicy = other708.replPolicy; + srcTxnToWriteIdList = other708.srcTxnToWriteIdList; + __isset = other708.__isset; +} +AllocateTableWriteIdsRequest& AllocateTableWriteIdsRequest::operator=(const AllocateTableWriteIdsRequest& other709) { + dbName = other709.dbName; + tableName = other709.tableName; + txnIds = other709.txnIds; + replPolicy = other709.replPolicy; + srcTxnToWriteIdList = other709.srcTxnToWriteIdList; + __isset = other709.__isset; return *this; } void AllocateTableWriteIdsRequest::printTo(std::ostream& out) const { using ::apache::thrift::to_string; out << "AllocateTableWriteIdsRequest("; - out << "txnIds=" << to_string(txnIds); - out << ", " << "dbName=" << to_string(dbName); + out << "dbName=" << to_string(dbName); out << ", " << "tableName=" << to_string(tableName); + out << ", " << "txnIds="; (__isset.txnIds ? (out << to_string(txnIds)) : (out << "")); + out << ", " << "replPolicy="; (__isset.replPolicy ? (out << to_string(replPolicy)) : (out << "")); + out << ", " << "srcTxnToWriteIdList="; (__isset.srcTxnToWriteIdList ? (out << to_string(srcTxnToWriteIdList)) : (out << "")); out << ")"; } @@ -17218,13 +17284,13 @@ void swap(TxnToWriteId &a, TxnToWriteId &b) { swap(a.writeId, b.writeId); } -TxnToWriteId::TxnToWriteId(const TxnToWriteId& other704) { - txnId = other704.txnId; - writeId = other704.writeId; +TxnToWriteId::TxnToWriteId(const TxnToWriteId& other710) { + txnId = other710.txnId; + writeId = other710.writeId; } -TxnToWriteId& TxnToWriteId::operator=(const TxnToWriteId& other705) { - txnId = other705.txnId; - writeId = other705.writeId; +TxnToWriteId& TxnToWriteId::operator=(const TxnToWriteId& other711) { + txnId = other711.txnId; + writeId = other711.writeId; return *this; } void TxnToWriteId::printTo(std::ostream& out) const { @@ -17270,14 +17336,14 @@ uint32_t AllocateTableWriteIdsResponse::read(::apache::thrift::protocol::TProtoc if (ftype == ::apache::thrift::protocol::T_LIST) { { this->txnToWriteIds.clear(); - uint32_t _size706; - ::apache::thrift::protocol::TType _etype709; - xfer += iprot->readListBegin(_etype709, _size706); - this->txnToWriteIds.resize(_size706); - uint32_t _i710; - for (_i710 = 0; _i710 < _size706; ++_i710) + uint32_t _size712; + ::apache::thrift::protocol::TType _etype715; + xfer += iprot->readListBegin(_etype715, _size712); + this->txnToWriteIds.resize(_size712); + uint32_t _i716; + for (_i716 = 0; _i716 < _size712; ++_i716) { - xfer += this->txnToWriteIds[_i710].read(iprot); + xfer += this->txnToWriteIds[_i716].read(iprot); } xfer += iprot->readListEnd(); } @@ -17308,10 +17374,10 @@ uint32_t AllocateTableWriteIdsResponse::write(::apache::thrift::protocol::TProto xfer += oprot->writeFieldBegin("txnToWriteIds", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->txnToWriteIds.size())); - std::vector ::const_iterator _iter711; - for (_iter711 = this->txnToWriteIds.begin(); _iter711 != this->txnToWriteIds.end(); ++_iter711) + std::vector ::const_iterator _iter717; + for (_iter717 = this->txnToWriteIds.begin(); _iter717 != this->txnToWriteIds.end(); ++_iter717) { - xfer += (*_iter711).write(oprot); + xfer += (*_iter717).write(oprot); } xfer += oprot->writeListEnd(); } @@ -17327,11 +17393,11 @@ void swap(AllocateTableWriteIdsResponse &a, AllocateTableWriteIdsResponse &b) { swap(a.txnToWriteIds, b.txnToWriteIds); } -AllocateTableWriteIdsResponse::AllocateTableWriteIdsResponse(const AllocateTableWriteIdsResponse& other712) { - txnToWriteIds = other712.txnToWriteIds; +AllocateTableWriteIdsResponse::AllocateTableWriteIdsResponse(const AllocateTableWriteIdsResponse& other718) { + txnToWriteIds = other718.txnToWriteIds; } -AllocateTableWriteIdsResponse& AllocateTableWriteIdsResponse::operator=(const AllocateTableWriteIdsResponse& other713) { - txnToWriteIds = other713.txnToWriteIds; +AllocateTableWriteIdsResponse& AllocateTableWriteIdsResponse::operator=(const AllocateTableWriteIdsResponse& other719) { + txnToWriteIds = other719.txnToWriteIds; return *this; } void AllocateTableWriteIdsResponse::printTo(std::ostream& out) const { @@ -17409,9 +17475,9 @@ uint32_t LockComponent::read(::apache::thrift::protocol::TProtocol* iprot) { { case 1: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast714; - xfer += iprot->readI32(ecast714); - this->type = (LockType::type)ecast714; + int32_t ecast720; + xfer += iprot->readI32(ecast720); + this->type = (LockType::type)ecast720; isset_type = true; } else { xfer += iprot->skip(ftype); @@ -17419,9 +17485,9 @@ uint32_t LockComponent::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 2: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast715; - xfer += iprot->readI32(ecast715); - this->level = (LockLevel::type)ecast715; + int32_t ecast721; + xfer += iprot->readI32(ecast721); + this->level = (LockLevel::type)ecast721; isset_level = true; } else { xfer += iprot->skip(ftype); @@ -17453,9 +17519,9 @@ uint32_t LockComponent::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 6: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast716; - xfer += iprot->readI32(ecast716); - this->operationType = (DataOperationType::type)ecast716; + int32_t ecast722; + xfer += iprot->readI32(ecast722); + this->operationType = (DataOperationType::type)ecast722; this->__isset.operationType = true; } else { xfer += iprot->skip(ftype); @@ -17555,27 +17621,27 @@ void swap(LockComponent &a, LockComponent &b) { swap(a.__isset, b.__isset); } -LockComponent::LockComponent(const LockComponent& other717) { - type = other717.type; - level = other717.level; - dbname = other717.dbname; - tablename = other717.tablename; - partitionname = other717.partitionname; - operationType = other717.operationType; - isTransactional = other717.isTransactional; - isDynamicPartitionWrite = other717.isDynamicPartitionWrite; - __isset = other717.__isset; -} -LockComponent& LockComponent::operator=(const LockComponent& other718) { - type = other718.type; - level = other718.level; - dbname = other718.dbname; - tablename = other718.tablename; - partitionname = other718.partitionname; - operationType = other718.operationType; - isTransactional = other718.isTransactional; - isDynamicPartitionWrite = other718.isDynamicPartitionWrite; - __isset = other718.__isset; +LockComponent::LockComponent(const LockComponent& other723) { + type = other723.type; + level = other723.level; + dbname = other723.dbname; + tablename = other723.tablename; + partitionname = other723.partitionname; + operationType = other723.operationType; + isTransactional = other723.isTransactional; + isDynamicPartitionWrite = other723.isDynamicPartitionWrite; + __isset = other723.__isset; +} +LockComponent& LockComponent::operator=(const LockComponent& other724) { + type = other724.type; + level = other724.level; + dbname = other724.dbname; + tablename = other724.tablename; + partitionname = other724.partitionname; + operationType = other724.operationType; + isTransactional = other724.isTransactional; + isDynamicPartitionWrite = other724.isDynamicPartitionWrite; + __isset = other724.__isset; return *this; } void LockComponent::printTo(std::ostream& out) const { @@ -17647,14 +17713,14 @@ uint32_t LockRequest::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_LIST) { { this->component.clear(); - uint32_t _size719; - ::apache::thrift::protocol::TType _etype722; - xfer += iprot->readListBegin(_etype722, _size719); - this->component.resize(_size719); - uint32_t _i723; - for (_i723 = 0; _i723 < _size719; ++_i723) + uint32_t _size725; + ::apache::thrift::protocol::TType _etype728; + xfer += iprot->readListBegin(_etype728, _size725); + this->component.resize(_size725); + uint32_t _i729; + for (_i729 = 0; _i729 < _size725; ++_i729) { - xfer += this->component[_i723].read(iprot); + xfer += this->component[_i729].read(iprot); } xfer += iprot->readListEnd(); } @@ -17721,10 +17787,10 @@ uint32_t LockRequest::write(::apache::thrift::protocol::TProtocol* oprot) const xfer += oprot->writeFieldBegin("component", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->component.size())); - std::vector ::const_iterator _iter724; - for (_iter724 = this->component.begin(); _iter724 != this->component.end(); ++_iter724) + std::vector ::const_iterator _iter730; + for (_iter730 = this->component.begin(); _iter730 != this->component.end(); ++_iter730) { - xfer += (*_iter724).write(oprot); + xfer += (*_iter730).write(oprot); } xfer += oprot->writeListEnd(); } @@ -17763,21 +17829,21 @@ void swap(LockRequest &a, LockRequest &b) { swap(a.__isset, b.__isset); } -LockRequest::LockRequest(const LockRequest& other725) { - component = other725.component; - txnid = other725.txnid; - user = other725.user; - hostname = other725.hostname; - agentInfo = other725.agentInfo; - __isset = other725.__isset; -} -LockRequest& LockRequest::operator=(const LockRequest& other726) { - component = other726.component; - txnid = other726.txnid; - user = other726.user; - hostname = other726.hostname; - agentInfo = other726.agentInfo; - __isset = other726.__isset; +LockRequest::LockRequest(const LockRequest& other731) { + component = other731.component; + txnid = other731.txnid; + user = other731.user; + hostname = other731.hostname; + agentInfo = other731.agentInfo; + __isset = other731.__isset; +} +LockRequest& LockRequest::operator=(const LockRequest& other732) { + component = other732.component; + txnid = other732.txnid; + user = other732.user; + hostname = other732.hostname; + agentInfo = other732.agentInfo; + __isset = other732.__isset; return *this; } void LockRequest::printTo(std::ostream& out) const { @@ -17837,9 +17903,9 @@ uint32_t LockResponse::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 2: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast727; - xfer += iprot->readI32(ecast727); - this->state = (LockState::type)ecast727; + int32_t ecast733; + xfer += iprot->readI32(ecast733); + this->state = (LockState::type)ecast733; isset_state = true; } else { xfer += iprot->skip(ftype); @@ -17885,13 +17951,13 @@ void swap(LockResponse &a, LockResponse &b) { swap(a.state, b.state); } -LockResponse::LockResponse(const LockResponse& other728) { - lockid = other728.lockid; - state = other728.state; +LockResponse::LockResponse(const LockResponse& other734) { + lockid = other734.lockid; + state = other734.state; } -LockResponse& LockResponse::operator=(const LockResponse& other729) { - lockid = other729.lockid; - state = other729.state; +LockResponse& LockResponse::operator=(const LockResponse& other735) { + lockid = other735.lockid; + state = other735.state; return *this; } void LockResponse::printTo(std::ostream& out) const { @@ -18013,17 +18079,17 @@ void swap(CheckLockRequest &a, CheckLockRequest &b) { swap(a.__isset, b.__isset); } -CheckLockRequest::CheckLockRequest(const CheckLockRequest& other730) { - lockid = other730.lockid; - txnid = other730.txnid; - elapsed_ms = other730.elapsed_ms; - __isset = other730.__isset; +CheckLockRequest::CheckLockRequest(const CheckLockRequest& other736) { + lockid = other736.lockid; + txnid = other736.txnid; + elapsed_ms = other736.elapsed_ms; + __isset = other736.__isset; } -CheckLockRequest& CheckLockRequest::operator=(const CheckLockRequest& other731) { - lockid = other731.lockid; - txnid = other731.txnid; - elapsed_ms = other731.elapsed_ms; - __isset = other731.__isset; +CheckLockRequest& CheckLockRequest::operator=(const CheckLockRequest& other737) { + lockid = other737.lockid; + txnid = other737.txnid; + elapsed_ms = other737.elapsed_ms; + __isset = other737.__isset; return *this; } void CheckLockRequest::printTo(std::ostream& out) const { @@ -18107,11 +18173,11 @@ void swap(UnlockRequest &a, UnlockRequest &b) { swap(a.lockid, b.lockid); } -UnlockRequest::UnlockRequest(const UnlockRequest& other732) { - lockid = other732.lockid; +UnlockRequest::UnlockRequest(const UnlockRequest& other738) { + lockid = other738.lockid; } -UnlockRequest& UnlockRequest::operator=(const UnlockRequest& other733) { - lockid = other733.lockid; +UnlockRequest& UnlockRequest::operator=(const UnlockRequest& other739) { + lockid = other739.lockid; return *this; } void UnlockRequest::printTo(std::ostream& out) const { @@ -18250,19 +18316,19 @@ void swap(ShowLocksRequest &a, ShowLocksRequest &b) { swap(a.__isset, b.__isset); } -ShowLocksRequest::ShowLocksRequest(const ShowLocksRequest& other734) { - dbname = other734.dbname; - tablename = other734.tablename; - partname = other734.partname; - isExtended = other734.isExtended; - __isset = other734.__isset; +ShowLocksRequest::ShowLocksRequest(const ShowLocksRequest& other740) { + dbname = other740.dbname; + tablename = other740.tablename; + partname = other740.partname; + isExtended = other740.isExtended; + __isset = other740.__isset; } -ShowLocksRequest& ShowLocksRequest::operator=(const ShowLocksRequest& other735) { - dbname = other735.dbname; - tablename = other735.tablename; - partname = other735.partname; - isExtended = other735.isExtended; - __isset = other735.__isset; +ShowLocksRequest& ShowLocksRequest::operator=(const ShowLocksRequest& other741) { + dbname = other741.dbname; + tablename = other741.tablename; + partname = other741.partname; + isExtended = other741.isExtended; + __isset = other741.__isset; return *this; } void ShowLocksRequest::printTo(std::ostream& out) const { @@ -18415,9 +18481,9 @@ uint32_t ShowLocksResponseElement::read(::apache::thrift::protocol::TProtocol* i break; case 5: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast736; - xfer += iprot->readI32(ecast736); - this->state = (LockState::type)ecast736; + int32_t ecast742; + xfer += iprot->readI32(ecast742); + this->state = (LockState::type)ecast742; isset_state = true; } else { xfer += iprot->skip(ftype); @@ -18425,9 +18491,9 @@ uint32_t ShowLocksResponseElement::read(::apache::thrift::protocol::TProtocol* i break; case 6: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast737; - xfer += iprot->readI32(ecast737); - this->type = (LockType::type)ecast737; + int32_t ecast743; + xfer += iprot->readI32(ecast743); + this->type = (LockType::type)ecast743; isset_type = true; } else { xfer += iprot->skip(ftype); @@ -18643,43 +18709,43 @@ void swap(ShowLocksResponseElement &a, ShowLocksResponseElement &b) { swap(a.__isset, b.__isset); } -ShowLocksResponseElement::ShowLocksResponseElement(const ShowLocksResponseElement& other738) { - lockid = other738.lockid; - dbname = other738.dbname; - tablename = other738.tablename; - partname = other738.partname; - state = other738.state; - type = other738.type; - txnid = other738.txnid; - lastheartbeat = other738.lastheartbeat; - acquiredat = other738.acquiredat; - user = other738.user; - hostname = other738.hostname; - heartbeatCount = other738.heartbeatCount; - agentInfo = other738.agentInfo; - blockedByExtId = other738.blockedByExtId; - blockedByIntId = other738.blockedByIntId; - lockIdInternal = other738.lockIdInternal; - __isset = other738.__isset; -} -ShowLocksResponseElement& ShowLocksResponseElement::operator=(const ShowLocksResponseElement& other739) { - lockid = other739.lockid; - dbname = other739.dbname; - tablename = other739.tablename; - partname = other739.partname; - state = other739.state; - type = other739.type; - txnid = other739.txnid; - lastheartbeat = other739.lastheartbeat; - acquiredat = other739.acquiredat; - user = other739.user; - hostname = other739.hostname; - heartbeatCount = other739.heartbeatCount; - agentInfo = other739.agentInfo; - blockedByExtId = other739.blockedByExtId; - blockedByIntId = other739.blockedByIntId; - lockIdInternal = other739.lockIdInternal; - __isset = other739.__isset; +ShowLocksResponseElement::ShowLocksResponseElement(const ShowLocksResponseElement& other744) { + lockid = other744.lockid; + dbname = other744.dbname; + tablename = other744.tablename; + partname = other744.partname; + state = other744.state; + type = other744.type; + txnid = other744.txnid; + lastheartbeat = other744.lastheartbeat; + acquiredat = other744.acquiredat; + user = other744.user; + hostname = other744.hostname; + heartbeatCount = other744.heartbeatCount; + agentInfo = other744.agentInfo; + blockedByExtId = other744.blockedByExtId; + blockedByIntId = other744.blockedByIntId; + lockIdInternal = other744.lockIdInternal; + __isset = other744.__isset; +} +ShowLocksResponseElement& ShowLocksResponseElement::operator=(const ShowLocksResponseElement& other745) { + lockid = other745.lockid; + dbname = other745.dbname; + tablename = other745.tablename; + partname = other745.partname; + state = other745.state; + type = other745.type; + txnid = other745.txnid; + lastheartbeat = other745.lastheartbeat; + acquiredat = other745.acquiredat; + user = other745.user; + hostname = other745.hostname; + heartbeatCount = other745.heartbeatCount; + agentInfo = other745.agentInfo; + blockedByExtId = other745.blockedByExtId; + blockedByIntId = other745.blockedByIntId; + lockIdInternal = other745.lockIdInternal; + __isset = other745.__isset; return *this; } void ShowLocksResponseElement::printTo(std::ostream& out) const { @@ -18738,14 +18804,14 @@ uint32_t ShowLocksResponse::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_LIST) { { this->locks.clear(); - uint32_t _size740; - ::apache::thrift::protocol::TType _etype743; - xfer += iprot->readListBegin(_etype743, _size740); - this->locks.resize(_size740); - uint32_t _i744; - for (_i744 = 0; _i744 < _size740; ++_i744) + uint32_t _size746; + ::apache::thrift::protocol::TType _etype749; + xfer += iprot->readListBegin(_etype749, _size746); + this->locks.resize(_size746); + uint32_t _i750; + for (_i750 = 0; _i750 < _size746; ++_i750) { - xfer += this->locks[_i744].read(iprot); + xfer += this->locks[_i750].read(iprot); } xfer += iprot->readListEnd(); } @@ -18774,10 +18840,10 @@ uint32_t ShowLocksResponse::write(::apache::thrift::protocol::TProtocol* oprot) xfer += oprot->writeFieldBegin("locks", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->locks.size())); - std::vector ::const_iterator _iter745; - for (_iter745 = this->locks.begin(); _iter745 != this->locks.end(); ++_iter745) + std::vector ::const_iterator _iter751; + for (_iter751 = this->locks.begin(); _iter751 != this->locks.end(); ++_iter751) { - xfer += (*_iter745).write(oprot); + xfer += (*_iter751).write(oprot); } xfer += oprot->writeListEnd(); } @@ -18794,13 +18860,13 @@ void swap(ShowLocksResponse &a, ShowLocksResponse &b) { swap(a.__isset, b.__isset); } -ShowLocksResponse::ShowLocksResponse(const ShowLocksResponse& other746) { - locks = other746.locks; - __isset = other746.__isset; +ShowLocksResponse::ShowLocksResponse(const ShowLocksResponse& other752) { + locks = other752.locks; + __isset = other752.__isset; } -ShowLocksResponse& ShowLocksResponse::operator=(const ShowLocksResponse& other747) { - locks = other747.locks; - __isset = other747.__isset; +ShowLocksResponse& ShowLocksResponse::operator=(const ShowLocksResponse& other753) { + locks = other753.locks; + __isset = other753.__isset; return *this; } void ShowLocksResponse::printTo(std::ostream& out) const { @@ -18901,15 +18967,15 @@ void swap(HeartbeatRequest &a, HeartbeatRequest &b) { swap(a.__isset, b.__isset); } -HeartbeatRequest::HeartbeatRequest(const HeartbeatRequest& other748) { - lockid = other748.lockid; - txnid = other748.txnid; - __isset = other748.__isset; +HeartbeatRequest::HeartbeatRequest(const HeartbeatRequest& other754) { + lockid = other754.lockid; + txnid = other754.txnid; + __isset = other754.__isset; } -HeartbeatRequest& HeartbeatRequest::operator=(const HeartbeatRequest& other749) { - lockid = other749.lockid; - txnid = other749.txnid; - __isset = other749.__isset; +HeartbeatRequest& HeartbeatRequest::operator=(const HeartbeatRequest& other755) { + lockid = other755.lockid; + txnid = other755.txnid; + __isset = other755.__isset; return *this; } void HeartbeatRequest::printTo(std::ostream& out) const { @@ -19012,13 +19078,13 @@ void swap(HeartbeatTxnRangeRequest &a, HeartbeatTxnRangeRequest &b) { swap(a.max, b.max); } -HeartbeatTxnRangeRequest::HeartbeatTxnRangeRequest(const HeartbeatTxnRangeRequest& other750) { - min = other750.min; - max = other750.max; +HeartbeatTxnRangeRequest::HeartbeatTxnRangeRequest(const HeartbeatTxnRangeRequest& other756) { + min = other756.min; + max = other756.max; } -HeartbeatTxnRangeRequest& HeartbeatTxnRangeRequest::operator=(const HeartbeatTxnRangeRequest& other751) { - min = other751.min; - max = other751.max; +HeartbeatTxnRangeRequest& HeartbeatTxnRangeRequest::operator=(const HeartbeatTxnRangeRequest& other757) { + min = other757.min; + max = other757.max; return *this; } void HeartbeatTxnRangeRequest::printTo(std::ostream& out) const { @@ -19069,15 +19135,15 @@ uint32_t HeartbeatTxnRangeResponse::read(::apache::thrift::protocol::TProtocol* if (ftype == ::apache::thrift::protocol::T_SET) { { this->aborted.clear(); - uint32_t _size752; - ::apache::thrift::protocol::TType _etype755; - xfer += iprot->readSetBegin(_etype755, _size752); - uint32_t _i756; - for (_i756 = 0; _i756 < _size752; ++_i756) + uint32_t _size758; + ::apache::thrift::protocol::TType _etype761; + xfer += iprot->readSetBegin(_etype761, _size758); + uint32_t _i762; + for (_i762 = 0; _i762 < _size758; ++_i762) { - int64_t _elem757; - xfer += iprot->readI64(_elem757); - this->aborted.insert(_elem757); + int64_t _elem763; + xfer += iprot->readI64(_elem763); + this->aborted.insert(_elem763); } xfer += iprot->readSetEnd(); } @@ -19090,15 +19156,15 @@ uint32_t HeartbeatTxnRangeResponse::read(::apache::thrift::protocol::TProtocol* if (ftype == ::apache::thrift::protocol::T_SET) { { this->nosuch.clear(); - uint32_t _size758; - ::apache::thrift::protocol::TType _etype761; - xfer += iprot->readSetBegin(_etype761, _size758); - uint32_t _i762; - for (_i762 = 0; _i762 < _size758; ++_i762) + uint32_t _size764; + ::apache::thrift::protocol::TType _etype767; + xfer += iprot->readSetBegin(_etype767, _size764); + uint32_t _i768; + for (_i768 = 0; _i768 < _size764; ++_i768) { - int64_t _elem763; - xfer += iprot->readI64(_elem763); - this->nosuch.insert(_elem763); + int64_t _elem769; + xfer += iprot->readI64(_elem769); + this->nosuch.insert(_elem769); } xfer += iprot->readSetEnd(); } @@ -19131,10 +19197,10 @@ uint32_t HeartbeatTxnRangeResponse::write(::apache::thrift::protocol::TProtocol* xfer += oprot->writeFieldBegin("aborted", ::apache::thrift::protocol::T_SET, 1); { xfer += oprot->writeSetBegin(::apache::thrift::protocol::T_I64, static_cast(this->aborted.size())); - std::set ::const_iterator _iter764; - for (_iter764 = this->aborted.begin(); _iter764 != this->aborted.end(); ++_iter764) + std::set ::const_iterator _iter770; + for (_iter770 = this->aborted.begin(); _iter770 != this->aborted.end(); ++_iter770) { - xfer += oprot->writeI64((*_iter764)); + xfer += oprot->writeI64((*_iter770)); } xfer += oprot->writeSetEnd(); } @@ -19143,10 +19209,10 @@ uint32_t HeartbeatTxnRangeResponse::write(::apache::thrift::protocol::TProtocol* xfer += oprot->writeFieldBegin("nosuch", ::apache::thrift::protocol::T_SET, 2); { xfer += oprot->writeSetBegin(::apache::thrift::protocol::T_I64, static_cast(this->nosuch.size())); - std::set ::const_iterator _iter765; - for (_iter765 = this->nosuch.begin(); _iter765 != this->nosuch.end(); ++_iter765) + std::set ::const_iterator _iter771; + for (_iter771 = this->nosuch.begin(); _iter771 != this->nosuch.end(); ++_iter771) { - xfer += oprot->writeI64((*_iter765)); + xfer += oprot->writeI64((*_iter771)); } xfer += oprot->writeSetEnd(); } @@ -19163,13 +19229,13 @@ void swap(HeartbeatTxnRangeResponse &a, HeartbeatTxnRangeResponse &b) { swap(a.nosuch, b.nosuch); } -HeartbeatTxnRangeResponse::HeartbeatTxnRangeResponse(const HeartbeatTxnRangeResponse& other766) { - aborted = other766.aborted; - nosuch = other766.nosuch; +HeartbeatTxnRangeResponse::HeartbeatTxnRangeResponse(const HeartbeatTxnRangeResponse& other772) { + aborted = other772.aborted; + nosuch = other772.nosuch; } -HeartbeatTxnRangeResponse& HeartbeatTxnRangeResponse::operator=(const HeartbeatTxnRangeResponse& other767) { - aborted = other767.aborted; - nosuch = other767.nosuch; +HeartbeatTxnRangeResponse& HeartbeatTxnRangeResponse::operator=(const HeartbeatTxnRangeResponse& other773) { + aborted = other773.aborted; + nosuch = other773.nosuch; return *this; } void HeartbeatTxnRangeResponse::printTo(std::ostream& out) const { @@ -19262,9 +19328,9 @@ uint32_t CompactionRequest::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 4: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast768; - xfer += iprot->readI32(ecast768); - this->type = (CompactionType::type)ecast768; + int32_t ecast774; + xfer += iprot->readI32(ecast774); + this->type = (CompactionType::type)ecast774; isset_type = true; } else { xfer += iprot->skip(ftype); @@ -19282,17 +19348,17 @@ uint32_t CompactionRequest::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_MAP) { { this->properties.clear(); - uint32_t _size769; - ::apache::thrift::protocol::TType _ktype770; - ::apache::thrift::protocol::TType _vtype771; - xfer += iprot->readMapBegin(_ktype770, _vtype771, _size769); - uint32_t _i773; - for (_i773 = 0; _i773 < _size769; ++_i773) + uint32_t _size775; + ::apache::thrift::protocol::TType _ktype776; + ::apache::thrift::protocol::TType _vtype777; + xfer += iprot->readMapBegin(_ktype776, _vtype777, _size775); + uint32_t _i779; + for (_i779 = 0; _i779 < _size775; ++_i779) { - std::string _key774; - xfer += iprot->readString(_key774); - std::string& _val775 = this->properties[_key774]; - xfer += iprot->readString(_val775); + std::string _key780; + xfer += iprot->readString(_key780); + std::string& _val781 = this->properties[_key780]; + xfer += iprot->readString(_val781); } xfer += iprot->readMapEnd(); } @@ -19350,11 +19416,11 @@ uint32_t CompactionRequest::write(::apache::thrift::protocol::TProtocol* oprot) xfer += oprot->writeFieldBegin("properties", ::apache::thrift::protocol::T_MAP, 6); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_STRING, ::apache::thrift::protocol::T_STRING, static_cast(this->properties.size())); - std::map ::const_iterator _iter776; - for (_iter776 = this->properties.begin(); _iter776 != this->properties.end(); ++_iter776) + std::map ::const_iterator _iter782; + for (_iter782 = this->properties.begin(); _iter782 != this->properties.end(); ++_iter782) { - xfer += oprot->writeString(_iter776->first); - xfer += oprot->writeString(_iter776->second); + xfer += oprot->writeString(_iter782->first); + xfer += oprot->writeString(_iter782->second); } xfer += oprot->writeMapEnd(); } @@ -19376,23 +19442,23 @@ void swap(CompactionRequest &a, CompactionRequest &b) { swap(a.__isset, b.__isset); } -CompactionRequest::CompactionRequest(const CompactionRequest& other777) { - dbname = other777.dbname; - tablename = other777.tablename; - partitionname = other777.partitionname; - type = other777.type; - runas = other777.runas; - properties = other777.properties; - __isset = other777.__isset; -} -CompactionRequest& CompactionRequest::operator=(const CompactionRequest& other778) { - dbname = other778.dbname; - tablename = other778.tablename; - partitionname = other778.partitionname; - type = other778.type; - runas = other778.runas; - properties = other778.properties; - __isset = other778.__isset; +CompactionRequest::CompactionRequest(const CompactionRequest& other783) { + dbname = other783.dbname; + tablename = other783.tablename; + partitionname = other783.partitionname; + type = other783.type; + runas = other783.runas; + properties = other783.properties; + __isset = other783.__isset; +} +CompactionRequest& CompactionRequest::operator=(const CompactionRequest& other784) { + dbname = other784.dbname; + tablename = other784.tablename; + partitionname = other784.partitionname; + type = other784.type; + runas = other784.runas; + properties = other784.properties; + __isset = other784.__isset; return *this; } void CompactionRequest::printTo(std::ostream& out) const { @@ -19519,15 +19585,15 @@ void swap(CompactionResponse &a, CompactionResponse &b) { swap(a.accepted, b.accepted); } -CompactionResponse::CompactionResponse(const CompactionResponse& other779) { - id = other779.id; - state = other779.state; - accepted = other779.accepted; +CompactionResponse::CompactionResponse(const CompactionResponse& other785) { + id = other785.id; + state = other785.state; + accepted = other785.accepted; } -CompactionResponse& CompactionResponse::operator=(const CompactionResponse& other780) { - id = other780.id; - state = other780.state; - accepted = other780.accepted; +CompactionResponse& CompactionResponse::operator=(const CompactionResponse& other786) { + id = other786.id; + state = other786.state; + accepted = other786.accepted; return *this; } void CompactionResponse::printTo(std::ostream& out) const { @@ -19588,11 +19654,11 @@ void swap(ShowCompactRequest &a, ShowCompactRequest &b) { (void) b; } -ShowCompactRequest::ShowCompactRequest(const ShowCompactRequest& other781) { - (void) other781; +ShowCompactRequest::ShowCompactRequest(const ShowCompactRequest& other787) { + (void) other787; } -ShowCompactRequest& ShowCompactRequest::operator=(const ShowCompactRequest& other782) { - (void) other782; +ShowCompactRequest& ShowCompactRequest::operator=(const ShowCompactRequest& other788) { + (void) other788; return *this; } void ShowCompactRequest::printTo(std::ostream& out) const { @@ -19718,9 +19784,9 @@ uint32_t ShowCompactResponseElement::read(::apache::thrift::protocol::TProtocol* break; case 4: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast783; - xfer += iprot->readI32(ecast783); - this->type = (CompactionType::type)ecast783; + int32_t ecast789; + xfer += iprot->readI32(ecast789); + this->type = (CompactionType::type)ecast789; isset_type = true; } else { xfer += iprot->skip(ftype); @@ -19907,37 +19973,37 @@ void swap(ShowCompactResponseElement &a, ShowCompactResponseElement &b) { swap(a.__isset, b.__isset); } -ShowCompactResponseElement::ShowCompactResponseElement(const ShowCompactResponseElement& other784) { - dbname = other784.dbname; - tablename = other784.tablename; - partitionname = other784.partitionname; - type = other784.type; - state = other784.state; - workerid = other784.workerid; - start = other784.start; - runAs = other784.runAs; - hightestTxnId = other784.hightestTxnId; - metaInfo = other784.metaInfo; - endTime = other784.endTime; - hadoopJobId = other784.hadoopJobId; - id = other784.id; - __isset = other784.__isset; -} -ShowCompactResponseElement& ShowCompactResponseElement::operator=(const ShowCompactResponseElement& other785) { - dbname = other785.dbname; - tablename = other785.tablename; - partitionname = other785.partitionname; - type = other785.type; - state = other785.state; - workerid = other785.workerid; - start = other785.start; - runAs = other785.runAs; - hightestTxnId = other785.hightestTxnId; - metaInfo = other785.metaInfo; - endTime = other785.endTime; - hadoopJobId = other785.hadoopJobId; - id = other785.id; - __isset = other785.__isset; +ShowCompactResponseElement::ShowCompactResponseElement(const ShowCompactResponseElement& other790) { + dbname = other790.dbname; + tablename = other790.tablename; + partitionname = other790.partitionname; + type = other790.type; + state = other790.state; + workerid = other790.workerid; + start = other790.start; + runAs = other790.runAs; + hightestTxnId = other790.hightestTxnId; + metaInfo = other790.metaInfo; + endTime = other790.endTime; + hadoopJobId = other790.hadoopJobId; + id = other790.id; + __isset = other790.__isset; +} +ShowCompactResponseElement& ShowCompactResponseElement::operator=(const ShowCompactResponseElement& other791) { + dbname = other791.dbname; + tablename = other791.tablename; + partitionname = other791.partitionname; + type = other791.type; + state = other791.state; + workerid = other791.workerid; + start = other791.start; + runAs = other791.runAs; + hightestTxnId = other791.hightestTxnId; + metaInfo = other791.metaInfo; + endTime = other791.endTime; + hadoopJobId = other791.hadoopJobId; + id = other791.id; + __isset = other791.__isset; return *this; } void ShowCompactResponseElement::printTo(std::ostream& out) const { @@ -19994,14 +20060,14 @@ uint32_t ShowCompactResponse::read(::apache::thrift::protocol::TProtocol* iprot) if (ftype == ::apache::thrift::protocol::T_LIST) { { this->compacts.clear(); - uint32_t _size786; - ::apache::thrift::protocol::TType _etype789; - xfer += iprot->readListBegin(_etype789, _size786); - this->compacts.resize(_size786); - uint32_t _i790; - for (_i790 = 0; _i790 < _size786; ++_i790) + uint32_t _size792; + ::apache::thrift::protocol::TType _etype795; + xfer += iprot->readListBegin(_etype795, _size792); + this->compacts.resize(_size792); + uint32_t _i796; + for (_i796 = 0; _i796 < _size792; ++_i796) { - xfer += this->compacts[_i790].read(iprot); + xfer += this->compacts[_i796].read(iprot); } xfer += iprot->readListEnd(); } @@ -20032,10 +20098,10 @@ uint32_t ShowCompactResponse::write(::apache::thrift::protocol::TProtocol* oprot xfer += oprot->writeFieldBegin("compacts", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->compacts.size())); - std::vector ::const_iterator _iter791; - for (_iter791 = this->compacts.begin(); _iter791 != this->compacts.end(); ++_iter791) + std::vector ::const_iterator _iter797; + for (_iter797 = this->compacts.begin(); _iter797 != this->compacts.end(); ++_iter797) { - xfer += (*_iter791).write(oprot); + xfer += (*_iter797).write(oprot); } xfer += oprot->writeListEnd(); } @@ -20051,11 +20117,11 @@ void swap(ShowCompactResponse &a, ShowCompactResponse &b) { swap(a.compacts, b.compacts); } -ShowCompactResponse::ShowCompactResponse(const ShowCompactResponse& other792) { - compacts = other792.compacts; +ShowCompactResponse::ShowCompactResponse(const ShowCompactResponse& other798) { + compacts = other798.compacts; } -ShowCompactResponse& ShowCompactResponse::operator=(const ShowCompactResponse& other793) { - compacts = other793.compacts; +ShowCompactResponse& ShowCompactResponse::operator=(const ShowCompactResponse& other799) { + compacts = other799.compacts; return *this; } void ShowCompactResponse::printTo(std::ostream& out) const { @@ -20157,14 +20223,14 @@ uint32_t AddDynamicPartitions::read(::apache::thrift::protocol::TProtocol* iprot if (ftype == ::apache::thrift::protocol::T_LIST) { { this->partitionnames.clear(); - uint32_t _size794; - ::apache::thrift::protocol::TType _etype797; - xfer += iprot->readListBegin(_etype797, _size794); - this->partitionnames.resize(_size794); - uint32_t _i798; - for (_i798 = 0; _i798 < _size794; ++_i798) + uint32_t _size800; + ::apache::thrift::protocol::TType _etype803; + xfer += iprot->readListBegin(_etype803, _size800); + this->partitionnames.resize(_size800); + uint32_t _i804; + for (_i804 = 0; _i804 < _size800; ++_i804) { - xfer += iprot->readString(this->partitionnames[_i798]); + xfer += iprot->readString(this->partitionnames[_i804]); } xfer += iprot->readListEnd(); } @@ -20175,9 +20241,9 @@ uint32_t AddDynamicPartitions::read(::apache::thrift::protocol::TProtocol* iprot break; case 6: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast799; - xfer += iprot->readI32(ecast799); - this->operationType = (DataOperationType::type)ecast799; + int32_t ecast805; + xfer += iprot->readI32(ecast805); + this->operationType = (DataOperationType::type)ecast805; this->__isset.operationType = true; } else { xfer += iprot->skip(ftype); @@ -20229,10 +20295,10 @@ uint32_t AddDynamicPartitions::write(::apache::thrift::protocol::TProtocol* opro xfer += oprot->writeFieldBegin("partitionnames", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->partitionnames.size())); - std::vector ::const_iterator _iter800; - for (_iter800 = this->partitionnames.begin(); _iter800 != this->partitionnames.end(); ++_iter800) + std::vector ::const_iterator _iter806; + for (_iter806 = this->partitionnames.begin(); _iter806 != this->partitionnames.end(); ++_iter806) { - xfer += oprot->writeString((*_iter800)); + xfer += oprot->writeString((*_iter806)); } xfer += oprot->writeListEnd(); } @@ -20259,23 +20325,23 @@ void swap(AddDynamicPartitions &a, AddDynamicPartitions &b) { swap(a.__isset, b.__isset); } -AddDynamicPartitions::AddDynamicPartitions(const AddDynamicPartitions& other801) { - txnid = other801.txnid; - writeid = other801.writeid; - dbname = other801.dbname; - tablename = other801.tablename; - partitionnames = other801.partitionnames; - operationType = other801.operationType; - __isset = other801.__isset; -} -AddDynamicPartitions& AddDynamicPartitions::operator=(const AddDynamicPartitions& other802) { - txnid = other802.txnid; - writeid = other802.writeid; - dbname = other802.dbname; - tablename = other802.tablename; - partitionnames = other802.partitionnames; - operationType = other802.operationType; - __isset = other802.__isset; +AddDynamicPartitions::AddDynamicPartitions(const AddDynamicPartitions& other807) { + txnid = other807.txnid; + writeid = other807.writeid; + dbname = other807.dbname; + tablename = other807.tablename; + partitionnames = other807.partitionnames; + operationType = other807.operationType; + __isset = other807.__isset; +} +AddDynamicPartitions& AddDynamicPartitions::operator=(const AddDynamicPartitions& other808) { + txnid = other808.txnid; + writeid = other808.writeid; + dbname = other808.dbname; + tablename = other808.tablename; + partitionnames = other808.partitionnames; + operationType = other808.operationType; + __isset = other808.__isset; return *this; } void AddDynamicPartitions::printTo(std::ostream& out) const { @@ -20458,23 +20524,23 @@ void swap(BasicTxnInfo &a, BasicTxnInfo &b) { swap(a.__isset, b.__isset); } -BasicTxnInfo::BasicTxnInfo(const BasicTxnInfo& other803) { - isnull = other803.isnull; - time = other803.time; - txnid = other803.txnid; - dbname = other803.dbname; - tablename = other803.tablename; - partitionname = other803.partitionname; - __isset = other803.__isset; -} -BasicTxnInfo& BasicTxnInfo::operator=(const BasicTxnInfo& other804) { - isnull = other804.isnull; - time = other804.time; - txnid = other804.txnid; - dbname = other804.dbname; - tablename = other804.tablename; - partitionname = other804.partitionname; - __isset = other804.__isset; +BasicTxnInfo::BasicTxnInfo(const BasicTxnInfo& other809) { + isnull = other809.isnull; + time = other809.time; + txnid = other809.txnid; + dbname = other809.dbname; + tablename = other809.tablename; + partitionname = other809.partitionname; + __isset = other809.__isset; +} +BasicTxnInfo& BasicTxnInfo::operator=(const BasicTxnInfo& other810) { + isnull = other810.isnull; + time = other810.time; + txnid = other810.txnid; + dbname = other810.dbname; + tablename = other810.tablename; + partitionname = other810.partitionname; + __isset = other810.__isset; return *this; } void BasicTxnInfo::printTo(std::ostream& out) const { @@ -20568,15 +20634,15 @@ uint32_t CreationMetadata::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_SET) { { this->tablesUsed.clear(); - uint32_t _size805; - ::apache::thrift::protocol::TType _etype808; - xfer += iprot->readSetBegin(_etype808, _size805); - uint32_t _i809; - for (_i809 = 0; _i809 < _size805; ++_i809) + uint32_t _size811; + ::apache::thrift::protocol::TType _etype814; + xfer += iprot->readSetBegin(_etype814, _size811); + uint32_t _i815; + for (_i815 = 0; _i815 < _size811; ++_i815) { - std::string _elem810; - xfer += iprot->readString(_elem810); - this->tablesUsed.insert(_elem810); + std::string _elem816; + xfer += iprot->readString(_elem816); + this->tablesUsed.insert(_elem816); } xfer += iprot->readSetEnd(); } @@ -20633,10 +20699,10 @@ uint32_t CreationMetadata::write(::apache::thrift::protocol::TProtocol* oprot) c xfer += oprot->writeFieldBegin("tablesUsed", ::apache::thrift::protocol::T_SET, 4); { xfer += oprot->writeSetBegin(::apache::thrift::protocol::T_STRING, static_cast(this->tablesUsed.size())); - std::set ::const_iterator _iter811; - for (_iter811 = this->tablesUsed.begin(); _iter811 != this->tablesUsed.end(); ++_iter811) + std::set ::const_iterator _iter817; + for (_iter817 = this->tablesUsed.begin(); _iter817 != this->tablesUsed.end(); ++_iter817) { - xfer += oprot->writeString((*_iter811)); + xfer += oprot->writeString((*_iter817)); } xfer += oprot->writeSetEnd(); } @@ -20662,21 +20728,21 @@ void swap(CreationMetadata &a, CreationMetadata &b) { swap(a.__isset, b.__isset); } -CreationMetadata::CreationMetadata(const CreationMetadata& other812) { - catName = other812.catName; - dbName = other812.dbName; - tblName = other812.tblName; - tablesUsed = other812.tablesUsed; - validTxnList = other812.validTxnList; - __isset = other812.__isset; -} -CreationMetadata& CreationMetadata::operator=(const CreationMetadata& other813) { - catName = other813.catName; - dbName = other813.dbName; - tblName = other813.tblName; - tablesUsed = other813.tablesUsed; - validTxnList = other813.validTxnList; - __isset = other813.__isset; +CreationMetadata::CreationMetadata(const CreationMetadata& other818) { + catName = other818.catName; + dbName = other818.dbName; + tblName = other818.tblName; + tablesUsed = other818.tablesUsed; + validTxnList = other818.validTxnList; + __isset = other818.__isset; +} +CreationMetadata& CreationMetadata::operator=(const CreationMetadata& other819) { + catName = other819.catName; + dbName = other819.dbName; + tblName = other819.tblName; + tablesUsed = other819.tablesUsed; + validTxnList = other819.validTxnList; + __isset = other819.__isset; return *this; } void CreationMetadata::printTo(std::ostream& out) const { @@ -20782,15 +20848,15 @@ void swap(NotificationEventRequest &a, NotificationEventRequest &b) { swap(a.__isset, b.__isset); } -NotificationEventRequest::NotificationEventRequest(const NotificationEventRequest& other814) { - lastEvent = other814.lastEvent; - maxEvents = other814.maxEvents; - __isset = other814.__isset; +NotificationEventRequest::NotificationEventRequest(const NotificationEventRequest& other820) { + lastEvent = other820.lastEvent; + maxEvents = other820.maxEvents; + __isset = other820.__isset; } -NotificationEventRequest& NotificationEventRequest::operator=(const NotificationEventRequest& other815) { - lastEvent = other815.lastEvent; - maxEvents = other815.maxEvents; - __isset = other815.__isset; +NotificationEventRequest& NotificationEventRequest::operator=(const NotificationEventRequest& other821) { + lastEvent = other821.lastEvent; + maxEvents = other821.maxEvents; + __isset = other821.__isset; return *this; } void NotificationEventRequest::printTo(std::ostream& out) const { @@ -21010,27 +21076,27 @@ void swap(NotificationEvent &a, NotificationEvent &b) { swap(a.__isset, b.__isset); } -NotificationEvent::NotificationEvent(const NotificationEvent& other816) { - eventId = other816.eventId; - eventTime = other816.eventTime; - eventType = other816.eventType; - dbName = other816.dbName; - tableName = other816.tableName; - message = other816.message; - messageFormat = other816.messageFormat; - catName = other816.catName; - __isset = other816.__isset; -} -NotificationEvent& NotificationEvent::operator=(const NotificationEvent& other817) { - eventId = other817.eventId; - eventTime = other817.eventTime; - eventType = other817.eventType; - dbName = other817.dbName; - tableName = other817.tableName; - message = other817.message; - messageFormat = other817.messageFormat; - catName = other817.catName; - __isset = other817.__isset; +NotificationEvent::NotificationEvent(const NotificationEvent& other822) { + eventId = other822.eventId; + eventTime = other822.eventTime; + eventType = other822.eventType; + dbName = other822.dbName; + tableName = other822.tableName; + message = other822.message; + messageFormat = other822.messageFormat; + catName = other822.catName; + __isset = other822.__isset; +} +NotificationEvent& NotificationEvent::operator=(const NotificationEvent& other823) { + eventId = other823.eventId; + eventTime = other823.eventTime; + eventType = other823.eventType; + dbName = other823.dbName; + tableName = other823.tableName; + message = other823.message; + messageFormat = other823.messageFormat; + catName = other823.catName; + __isset = other823.__isset; return *this; } void NotificationEvent::printTo(std::ostream& out) const { @@ -21082,14 +21148,14 @@ uint32_t NotificationEventResponse::read(::apache::thrift::protocol::TProtocol* if (ftype == ::apache::thrift::protocol::T_LIST) { { this->events.clear(); - uint32_t _size818; - ::apache::thrift::protocol::TType _etype821; - xfer += iprot->readListBegin(_etype821, _size818); - this->events.resize(_size818); - uint32_t _i822; - for (_i822 = 0; _i822 < _size818; ++_i822) + uint32_t _size824; + ::apache::thrift::protocol::TType _etype827; + xfer += iprot->readListBegin(_etype827, _size824); + this->events.resize(_size824); + uint32_t _i828; + for (_i828 = 0; _i828 < _size824; ++_i828) { - xfer += this->events[_i822].read(iprot); + xfer += this->events[_i828].read(iprot); } xfer += iprot->readListEnd(); } @@ -21120,10 +21186,10 @@ uint32_t NotificationEventResponse::write(::apache::thrift::protocol::TProtocol* xfer += oprot->writeFieldBegin("events", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->events.size())); - std::vector ::const_iterator _iter823; - for (_iter823 = this->events.begin(); _iter823 != this->events.end(); ++_iter823) + std::vector ::const_iterator _iter829; + for (_iter829 = this->events.begin(); _iter829 != this->events.end(); ++_iter829) { - xfer += (*_iter823).write(oprot); + xfer += (*_iter829).write(oprot); } xfer += oprot->writeListEnd(); } @@ -21139,11 +21205,11 @@ void swap(NotificationEventResponse &a, NotificationEventResponse &b) { swap(a.events, b.events); } -NotificationEventResponse::NotificationEventResponse(const NotificationEventResponse& other824) { - events = other824.events; +NotificationEventResponse::NotificationEventResponse(const NotificationEventResponse& other830) { + events = other830.events; } -NotificationEventResponse& NotificationEventResponse::operator=(const NotificationEventResponse& other825) { - events = other825.events; +NotificationEventResponse& NotificationEventResponse::operator=(const NotificationEventResponse& other831) { + events = other831.events; return *this; } void NotificationEventResponse::printTo(std::ostream& out) const { @@ -21225,11 +21291,11 @@ void swap(CurrentNotificationEventId &a, CurrentNotificationEventId &b) { swap(a.eventId, b.eventId); } -CurrentNotificationEventId::CurrentNotificationEventId(const CurrentNotificationEventId& other826) { - eventId = other826.eventId; +CurrentNotificationEventId::CurrentNotificationEventId(const CurrentNotificationEventId& other832) { + eventId = other832.eventId; } -CurrentNotificationEventId& CurrentNotificationEventId::operator=(const CurrentNotificationEventId& other827) { - eventId = other827.eventId; +CurrentNotificationEventId& CurrentNotificationEventId::operator=(const CurrentNotificationEventId& other833) { + eventId = other833.eventId; return *this; } void CurrentNotificationEventId::printTo(std::ostream& out) const { @@ -21351,17 +21417,17 @@ void swap(NotificationEventsCountRequest &a, NotificationEventsCountRequest &b) swap(a.__isset, b.__isset); } -NotificationEventsCountRequest::NotificationEventsCountRequest(const NotificationEventsCountRequest& other828) { - fromEventId = other828.fromEventId; - dbName = other828.dbName; - catName = other828.catName; - __isset = other828.__isset; +NotificationEventsCountRequest::NotificationEventsCountRequest(const NotificationEventsCountRequest& other834) { + fromEventId = other834.fromEventId; + dbName = other834.dbName; + catName = other834.catName; + __isset = other834.__isset; } -NotificationEventsCountRequest& NotificationEventsCountRequest::operator=(const NotificationEventsCountRequest& other829) { - fromEventId = other829.fromEventId; - dbName = other829.dbName; - catName = other829.catName; - __isset = other829.__isset; +NotificationEventsCountRequest& NotificationEventsCountRequest::operator=(const NotificationEventsCountRequest& other835) { + fromEventId = other835.fromEventId; + dbName = other835.dbName; + catName = other835.catName; + __isset = other835.__isset; return *this; } void NotificationEventsCountRequest::printTo(std::ostream& out) const { @@ -21445,11 +21511,11 @@ void swap(NotificationEventsCountResponse &a, NotificationEventsCountResponse &b swap(a.eventsCount, b.eventsCount); } -NotificationEventsCountResponse::NotificationEventsCountResponse(const NotificationEventsCountResponse& other830) { - eventsCount = other830.eventsCount; +NotificationEventsCountResponse::NotificationEventsCountResponse(const NotificationEventsCountResponse& other836) { + eventsCount = other836.eventsCount; } -NotificationEventsCountResponse& NotificationEventsCountResponse::operator=(const NotificationEventsCountResponse& other831) { - eventsCount = other831.eventsCount; +NotificationEventsCountResponse& NotificationEventsCountResponse::operator=(const NotificationEventsCountResponse& other837) { + eventsCount = other837.eventsCount; return *this; } void NotificationEventsCountResponse::printTo(std::ostream& out) const { @@ -21512,14 +21578,14 @@ uint32_t InsertEventRequestData::read(::apache::thrift::protocol::TProtocol* ipr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->filesAdded.clear(); - uint32_t _size832; - ::apache::thrift::protocol::TType _etype835; - xfer += iprot->readListBegin(_etype835, _size832); - this->filesAdded.resize(_size832); - uint32_t _i836; - for (_i836 = 0; _i836 < _size832; ++_i836) + uint32_t _size838; + ::apache::thrift::protocol::TType _etype841; + xfer += iprot->readListBegin(_etype841, _size838); + this->filesAdded.resize(_size838); + uint32_t _i842; + for (_i842 = 0; _i842 < _size838; ++_i842) { - xfer += iprot->readString(this->filesAdded[_i836]); + xfer += iprot->readString(this->filesAdded[_i842]); } xfer += iprot->readListEnd(); } @@ -21532,14 +21598,14 @@ uint32_t InsertEventRequestData::read(::apache::thrift::protocol::TProtocol* ipr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->filesAddedChecksum.clear(); - uint32_t _size837; - ::apache::thrift::protocol::TType _etype840; - xfer += iprot->readListBegin(_etype840, _size837); - this->filesAddedChecksum.resize(_size837); - uint32_t _i841; - for (_i841 = 0; _i841 < _size837; ++_i841) + uint32_t _size843; + ::apache::thrift::protocol::TType _etype846; + xfer += iprot->readListBegin(_etype846, _size843); + this->filesAddedChecksum.resize(_size843); + uint32_t _i847; + for (_i847 = 0; _i847 < _size843; ++_i847) { - xfer += iprot->readString(this->filesAddedChecksum[_i841]); + xfer += iprot->readString(this->filesAddedChecksum[_i847]); } xfer += iprot->readListEnd(); } @@ -21575,10 +21641,10 @@ uint32_t InsertEventRequestData::write(::apache::thrift::protocol::TProtocol* op xfer += oprot->writeFieldBegin("filesAdded", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->filesAdded.size())); - std::vector ::const_iterator _iter842; - for (_iter842 = this->filesAdded.begin(); _iter842 != this->filesAdded.end(); ++_iter842) + std::vector ::const_iterator _iter848; + for (_iter848 = this->filesAdded.begin(); _iter848 != this->filesAdded.end(); ++_iter848) { - xfer += oprot->writeString((*_iter842)); + xfer += oprot->writeString((*_iter848)); } xfer += oprot->writeListEnd(); } @@ -21588,10 +21654,10 @@ uint32_t InsertEventRequestData::write(::apache::thrift::protocol::TProtocol* op xfer += oprot->writeFieldBegin("filesAddedChecksum", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->filesAddedChecksum.size())); - std::vector ::const_iterator _iter843; - for (_iter843 = this->filesAddedChecksum.begin(); _iter843 != this->filesAddedChecksum.end(); ++_iter843) + std::vector ::const_iterator _iter849; + for (_iter849 = this->filesAddedChecksum.begin(); _iter849 != this->filesAddedChecksum.end(); ++_iter849) { - xfer += oprot->writeString((*_iter843)); + xfer += oprot->writeString((*_iter849)); } xfer += oprot->writeListEnd(); } @@ -21610,17 +21676,17 @@ void swap(InsertEventRequestData &a, InsertEventRequestData &b) { swap(a.__isset, b.__isset); } -InsertEventRequestData::InsertEventRequestData(const InsertEventRequestData& other844) { - replace = other844.replace; - filesAdded = other844.filesAdded; - filesAddedChecksum = other844.filesAddedChecksum; - __isset = other844.__isset; +InsertEventRequestData::InsertEventRequestData(const InsertEventRequestData& other850) { + replace = other850.replace; + filesAdded = other850.filesAdded; + filesAddedChecksum = other850.filesAddedChecksum; + __isset = other850.__isset; } -InsertEventRequestData& InsertEventRequestData::operator=(const InsertEventRequestData& other845) { - replace = other845.replace; - filesAdded = other845.filesAdded; - filesAddedChecksum = other845.filesAddedChecksum; - __isset = other845.__isset; +InsertEventRequestData& InsertEventRequestData::operator=(const InsertEventRequestData& other851) { + replace = other851.replace; + filesAdded = other851.filesAdded; + filesAddedChecksum = other851.filesAddedChecksum; + __isset = other851.__isset; return *this; } void InsertEventRequestData::printTo(std::ostream& out) const { @@ -21702,13 +21768,13 @@ void swap(FireEventRequestData &a, FireEventRequestData &b) { swap(a.__isset, b.__isset); } -FireEventRequestData::FireEventRequestData(const FireEventRequestData& other846) { - insertData = other846.insertData; - __isset = other846.__isset; +FireEventRequestData::FireEventRequestData(const FireEventRequestData& other852) { + insertData = other852.insertData; + __isset = other852.__isset; } -FireEventRequestData& FireEventRequestData::operator=(const FireEventRequestData& other847) { - insertData = other847.insertData; - __isset = other847.__isset; +FireEventRequestData& FireEventRequestData::operator=(const FireEventRequestData& other853) { + insertData = other853.insertData; + __isset = other853.__isset; return *this; } void FireEventRequestData::printTo(std::ostream& out) const { @@ -21810,14 +21876,14 @@ uint32_t FireEventRequest::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_LIST) { { this->partitionVals.clear(); - uint32_t _size848; - ::apache::thrift::protocol::TType _etype851; - xfer += iprot->readListBegin(_etype851, _size848); - this->partitionVals.resize(_size848); - uint32_t _i852; - for (_i852 = 0; _i852 < _size848; ++_i852) + uint32_t _size854; + ::apache::thrift::protocol::TType _etype857; + xfer += iprot->readListBegin(_etype857, _size854); + this->partitionVals.resize(_size854); + uint32_t _i858; + for (_i858 = 0; _i858 < _size854; ++_i858) { - xfer += iprot->readString(this->partitionVals[_i852]); + xfer += iprot->readString(this->partitionVals[_i858]); } xfer += iprot->readListEnd(); } @@ -21877,10 +21943,10 @@ uint32_t FireEventRequest::write(::apache::thrift::protocol::TProtocol* oprot) c xfer += oprot->writeFieldBegin("partitionVals", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->partitionVals.size())); - std::vector ::const_iterator _iter853; - for (_iter853 = this->partitionVals.begin(); _iter853 != this->partitionVals.end(); ++_iter853) + std::vector ::const_iterator _iter859; + for (_iter859 = this->partitionVals.begin(); _iter859 != this->partitionVals.end(); ++_iter859) { - xfer += oprot->writeString((*_iter853)); + xfer += oprot->writeString((*_iter859)); } xfer += oprot->writeListEnd(); } @@ -21907,23 +21973,23 @@ void swap(FireEventRequest &a, FireEventRequest &b) { swap(a.__isset, b.__isset); } -FireEventRequest::FireEventRequest(const FireEventRequest& other854) { - successful = other854.successful; - data = other854.data; - dbName = other854.dbName; - tableName = other854.tableName; - partitionVals = other854.partitionVals; - catName = other854.catName; - __isset = other854.__isset; -} -FireEventRequest& FireEventRequest::operator=(const FireEventRequest& other855) { - successful = other855.successful; - data = other855.data; - dbName = other855.dbName; - tableName = other855.tableName; - partitionVals = other855.partitionVals; - catName = other855.catName; - __isset = other855.__isset; +FireEventRequest::FireEventRequest(const FireEventRequest& other860) { + successful = other860.successful; + data = other860.data; + dbName = other860.dbName; + tableName = other860.tableName; + partitionVals = other860.partitionVals; + catName = other860.catName; + __isset = other860.__isset; +} +FireEventRequest& FireEventRequest::operator=(const FireEventRequest& other861) { + successful = other861.successful; + data = other861.data; + dbName = other861.dbName; + tableName = other861.tableName; + partitionVals = other861.partitionVals; + catName = other861.catName; + __isset = other861.__isset; return *this; } void FireEventRequest::printTo(std::ostream& out) const { @@ -21987,11 +22053,11 @@ void swap(FireEventResponse &a, FireEventResponse &b) { (void) b; } -FireEventResponse::FireEventResponse(const FireEventResponse& other856) { - (void) other856; +FireEventResponse::FireEventResponse(const FireEventResponse& other862) { + (void) other862; } -FireEventResponse& FireEventResponse::operator=(const FireEventResponse& other857) { - (void) other857; +FireEventResponse& FireEventResponse::operator=(const FireEventResponse& other863) { + (void) other863; return *this; } void FireEventResponse::printTo(std::ostream& out) const { @@ -22091,15 +22157,15 @@ void swap(MetadataPpdResult &a, MetadataPpdResult &b) { swap(a.__isset, b.__isset); } -MetadataPpdResult::MetadataPpdResult(const MetadataPpdResult& other858) { - metadata = other858.metadata; - includeBitset = other858.includeBitset; - __isset = other858.__isset; +MetadataPpdResult::MetadataPpdResult(const MetadataPpdResult& other864) { + metadata = other864.metadata; + includeBitset = other864.includeBitset; + __isset = other864.__isset; } -MetadataPpdResult& MetadataPpdResult::operator=(const MetadataPpdResult& other859) { - metadata = other859.metadata; - includeBitset = other859.includeBitset; - __isset = other859.__isset; +MetadataPpdResult& MetadataPpdResult::operator=(const MetadataPpdResult& other865) { + metadata = other865.metadata; + includeBitset = other865.includeBitset; + __isset = other865.__isset; return *this; } void MetadataPpdResult::printTo(std::ostream& out) const { @@ -22150,17 +22216,17 @@ uint32_t GetFileMetadataByExprResult::read(::apache::thrift::protocol::TProtocol if (ftype == ::apache::thrift::protocol::T_MAP) { { this->metadata.clear(); - uint32_t _size860; - ::apache::thrift::protocol::TType _ktype861; - ::apache::thrift::protocol::TType _vtype862; - xfer += iprot->readMapBegin(_ktype861, _vtype862, _size860); - uint32_t _i864; - for (_i864 = 0; _i864 < _size860; ++_i864) + uint32_t _size866; + ::apache::thrift::protocol::TType _ktype867; + ::apache::thrift::protocol::TType _vtype868; + xfer += iprot->readMapBegin(_ktype867, _vtype868, _size866); + uint32_t _i870; + for (_i870 = 0; _i870 < _size866; ++_i870) { - int64_t _key865; - xfer += iprot->readI64(_key865); - MetadataPpdResult& _val866 = this->metadata[_key865]; - xfer += _val866.read(iprot); + int64_t _key871; + xfer += iprot->readI64(_key871); + MetadataPpdResult& _val872 = this->metadata[_key871]; + xfer += _val872.read(iprot); } xfer += iprot->readMapEnd(); } @@ -22201,11 +22267,11 @@ uint32_t GetFileMetadataByExprResult::write(::apache::thrift::protocol::TProtoco xfer += oprot->writeFieldBegin("metadata", ::apache::thrift::protocol::T_MAP, 1); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_I64, ::apache::thrift::protocol::T_STRUCT, static_cast(this->metadata.size())); - std::map ::const_iterator _iter867; - for (_iter867 = this->metadata.begin(); _iter867 != this->metadata.end(); ++_iter867) + std::map ::const_iterator _iter873; + for (_iter873 = this->metadata.begin(); _iter873 != this->metadata.end(); ++_iter873) { - xfer += oprot->writeI64(_iter867->first); - xfer += _iter867->second.write(oprot); + xfer += oprot->writeI64(_iter873->first); + xfer += _iter873->second.write(oprot); } xfer += oprot->writeMapEnd(); } @@ -22226,13 +22292,13 @@ void swap(GetFileMetadataByExprResult &a, GetFileMetadataByExprResult &b) { swap(a.isSupported, b.isSupported); } -GetFileMetadataByExprResult::GetFileMetadataByExprResult(const GetFileMetadataByExprResult& other868) { - metadata = other868.metadata; - isSupported = other868.isSupported; +GetFileMetadataByExprResult::GetFileMetadataByExprResult(const GetFileMetadataByExprResult& other874) { + metadata = other874.metadata; + isSupported = other874.isSupported; } -GetFileMetadataByExprResult& GetFileMetadataByExprResult::operator=(const GetFileMetadataByExprResult& other869) { - metadata = other869.metadata; - isSupported = other869.isSupported; +GetFileMetadataByExprResult& GetFileMetadataByExprResult::operator=(const GetFileMetadataByExprResult& other875) { + metadata = other875.metadata; + isSupported = other875.isSupported; return *this; } void GetFileMetadataByExprResult::printTo(std::ostream& out) const { @@ -22293,14 +22359,14 @@ uint32_t GetFileMetadataByExprRequest::read(::apache::thrift::protocol::TProtoco if (ftype == ::apache::thrift::protocol::T_LIST) { { this->fileIds.clear(); - uint32_t _size870; - ::apache::thrift::protocol::TType _etype873; - xfer += iprot->readListBegin(_etype873, _size870); - this->fileIds.resize(_size870); - uint32_t _i874; - for (_i874 = 0; _i874 < _size870; ++_i874) + uint32_t _size876; + ::apache::thrift::protocol::TType _etype879; + xfer += iprot->readListBegin(_etype879, _size876); + this->fileIds.resize(_size876); + uint32_t _i880; + for (_i880 = 0; _i880 < _size876; ++_i880) { - xfer += iprot->readI64(this->fileIds[_i874]); + xfer += iprot->readI64(this->fileIds[_i880]); } xfer += iprot->readListEnd(); } @@ -22327,9 +22393,9 @@ uint32_t GetFileMetadataByExprRequest::read(::apache::thrift::protocol::TProtoco break; case 4: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast875; - xfer += iprot->readI32(ecast875); - this->type = (FileMetadataExprType::type)ecast875; + int32_t ecast881; + xfer += iprot->readI32(ecast881); + this->type = (FileMetadataExprType::type)ecast881; this->__isset.type = true; } else { xfer += iprot->skip(ftype); @@ -22359,10 +22425,10 @@ uint32_t GetFileMetadataByExprRequest::write(::apache::thrift::protocol::TProtoc xfer += oprot->writeFieldBegin("fileIds", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I64, static_cast(this->fileIds.size())); - std::vector ::const_iterator _iter876; - for (_iter876 = this->fileIds.begin(); _iter876 != this->fileIds.end(); ++_iter876) + std::vector ::const_iterator _iter882; + for (_iter882 = this->fileIds.begin(); _iter882 != this->fileIds.end(); ++_iter882) { - xfer += oprot->writeI64((*_iter876)); + xfer += oprot->writeI64((*_iter882)); } xfer += oprot->writeListEnd(); } @@ -22396,19 +22462,19 @@ void swap(GetFileMetadataByExprRequest &a, GetFileMetadataByExprRequest &b) { swap(a.__isset, b.__isset); } -GetFileMetadataByExprRequest::GetFileMetadataByExprRequest(const GetFileMetadataByExprRequest& other877) { - fileIds = other877.fileIds; - expr = other877.expr; - doGetFooters = other877.doGetFooters; - type = other877.type; - __isset = other877.__isset; +GetFileMetadataByExprRequest::GetFileMetadataByExprRequest(const GetFileMetadataByExprRequest& other883) { + fileIds = other883.fileIds; + expr = other883.expr; + doGetFooters = other883.doGetFooters; + type = other883.type; + __isset = other883.__isset; } -GetFileMetadataByExprRequest& GetFileMetadataByExprRequest::operator=(const GetFileMetadataByExprRequest& other878) { - fileIds = other878.fileIds; - expr = other878.expr; - doGetFooters = other878.doGetFooters; - type = other878.type; - __isset = other878.__isset; +GetFileMetadataByExprRequest& GetFileMetadataByExprRequest::operator=(const GetFileMetadataByExprRequest& other884) { + fileIds = other884.fileIds; + expr = other884.expr; + doGetFooters = other884.doGetFooters; + type = other884.type; + __isset = other884.__isset; return *this; } void GetFileMetadataByExprRequest::printTo(std::ostream& out) const { @@ -22461,17 +22527,17 @@ uint32_t GetFileMetadataResult::read(::apache::thrift::protocol::TProtocol* ipro if (ftype == ::apache::thrift::protocol::T_MAP) { { this->metadata.clear(); - uint32_t _size879; - ::apache::thrift::protocol::TType _ktype880; - ::apache::thrift::protocol::TType _vtype881; - xfer += iprot->readMapBegin(_ktype880, _vtype881, _size879); - uint32_t _i883; - for (_i883 = 0; _i883 < _size879; ++_i883) + uint32_t _size885; + ::apache::thrift::protocol::TType _ktype886; + ::apache::thrift::protocol::TType _vtype887; + xfer += iprot->readMapBegin(_ktype886, _vtype887, _size885); + uint32_t _i889; + for (_i889 = 0; _i889 < _size885; ++_i889) { - int64_t _key884; - xfer += iprot->readI64(_key884); - std::string& _val885 = this->metadata[_key884]; - xfer += iprot->readBinary(_val885); + int64_t _key890; + xfer += iprot->readI64(_key890); + std::string& _val891 = this->metadata[_key890]; + xfer += iprot->readBinary(_val891); } xfer += iprot->readMapEnd(); } @@ -22512,11 +22578,11 @@ uint32_t GetFileMetadataResult::write(::apache::thrift::protocol::TProtocol* opr xfer += oprot->writeFieldBegin("metadata", ::apache::thrift::protocol::T_MAP, 1); { xfer += oprot->writeMapBegin(::apache::thrift::protocol::T_I64, ::apache::thrift::protocol::T_STRING, static_cast(this->metadata.size())); - std::map ::const_iterator _iter886; - for (_iter886 = this->metadata.begin(); _iter886 != this->metadata.end(); ++_iter886) + std::map ::const_iterator _iter892; + for (_iter892 = this->metadata.begin(); _iter892 != this->metadata.end(); ++_iter892) { - xfer += oprot->writeI64(_iter886->first); - xfer += oprot->writeBinary(_iter886->second); + xfer += oprot->writeI64(_iter892->first); + xfer += oprot->writeBinary(_iter892->second); } xfer += oprot->writeMapEnd(); } @@ -22537,13 +22603,13 @@ void swap(GetFileMetadataResult &a, GetFileMetadataResult &b) { swap(a.isSupported, b.isSupported); } -GetFileMetadataResult::GetFileMetadataResult(const GetFileMetadataResult& other887) { - metadata = other887.metadata; - isSupported = other887.isSupported; +GetFileMetadataResult::GetFileMetadataResult(const GetFileMetadataResult& other893) { + metadata = other893.metadata; + isSupported = other893.isSupported; } -GetFileMetadataResult& GetFileMetadataResult::operator=(const GetFileMetadataResult& other888) { - metadata = other888.metadata; - isSupported = other888.isSupported; +GetFileMetadataResult& GetFileMetadataResult::operator=(const GetFileMetadataResult& other894) { + metadata = other894.metadata; + isSupported = other894.isSupported; return *this; } void GetFileMetadataResult::printTo(std::ostream& out) const { @@ -22589,14 +22655,14 @@ uint32_t GetFileMetadataRequest::read(::apache::thrift::protocol::TProtocol* ipr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->fileIds.clear(); - uint32_t _size889; - ::apache::thrift::protocol::TType _etype892; - xfer += iprot->readListBegin(_etype892, _size889); - this->fileIds.resize(_size889); - uint32_t _i893; - for (_i893 = 0; _i893 < _size889; ++_i893) + uint32_t _size895; + ::apache::thrift::protocol::TType _etype898; + xfer += iprot->readListBegin(_etype898, _size895); + this->fileIds.resize(_size895); + uint32_t _i899; + for (_i899 = 0; _i899 < _size895; ++_i899) { - xfer += iprot->readI64(this->fileIds[_i893]); + xfer += iprot->readI64(this->fileIds[_i899]); } xfer += iprot->readListEnd(); } @@ -22627,10 +22693,10 @@ uint32_t GetFileMetadataRequest::write(::apache::thrift::protocol::TProtocol* op xfer += oprot->writeFieldBegin("fileIds", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I64, static_cast(this->fileIds.size())); - std::vector ::const_iterator _iter894; - for (_iter894 = this->fileIds.begin(); _iter894 != this->fileIds.end(); ++_iter894) + std::vector ::const_iterator _iter900; + for (_iter900 = this->fileIds.begin(); _iter900 != this->fileIds.end(); ++_iter900) { - xfer += oprot->writeI64((*_iter894)); + xfer += oprot->writeI64((*_iter900)); } xfer += oprot->writeListEnd(); } @@ -22646,11 +22712,11 @@ void swap(GetFileMetadataRequest &a, GetFileMetadataRequest &b) { swap(a.fileIds, b.fileIds); } -GetFileMetadataRequest::GetFileMetadataRequest(const GetFileMetadataRequest& other895) { - fileIds = other895.fileIds; +GetFileMetadataRequest::GetFileMetadataRequest(const GetFileMetadataRequest& other901) { + fileIds = other901.fileIds; } -GetFileMetadataRequest& GetFileMetadataRequest::operator=(const GetFileMetadataRequest& other896) { - fileIds = other896.fileIds; +GetFileMetadataRequest& GetFileMetadataRequest::operator=(const GetFileMetadataRequest& other902) { + fileIds = other902.fileIds; return *this; } void GetFileMetadataRequest::printTo(std::ostream& out) const { @@ -22709,11 +22775,11 @@ void swap(PutFileMetadataResult &a, PutFileMetadataResult &b) { (void) b; } -PutFileMetadataResult::PutFileMetadataResult(const PutFileMetadataResult& other897) { - (void) other897; +PutFileMetadataResult::PutFileMetadataResult(const PutFileMetadataResult& other903) { + (void) other903; } -PutFileMetadataResult& PutFileMetadataResult::operator=(const PutFileMetadataResult& other898) { - (void) other898; +PutFileMetadataResult& PutFileMetadataResult::operator=(const PutFileMetadataResult& other904) { + (void) other904; return *this; } void PutFileMetadataResult::printTo(std::ostream& out) const { @@ -22767,14 +22833,14 @@ uint32_t PutFileMetadataRequest::read(::apache::thrift::protocol::TProtocol* ipr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->fileIds.clear(); - uint32_t _size899; - ::apache::thrift::protocol::TType _etype902; - xfer += iprot->readListBegin(_etype902, _size899); - this->fileIds.resize(_size899); - uint32_t _i903; - for (_i903 = 0; _i903 < _size899; ++_i903) + uint32_t _size905; + ::apache::thrift::protocol::TType _etype908; + xfer += iprot->readListBegin(_etype908, _size905); + this->fileIds.resize(_size905); + uint32_t _i909; + for (_i909 = 0; _i909 < _size905; ++_i909) { - xfer += iprot->readI64(this->fileIds[_i903]); + xfer += iprot->readI64(this->fileIds[_i909]); } xfer += iprot->readListEnd(); } @@ -22787,14 +22853,14 @@ uint32_t PutFileMetadataRequest::read(::apache::thrift::protocol::TProtocol* ipr if (ftype == ::apache::thrift::protocol::T_LIST) { { this->metadata.clear(); - uint32_t _size904; - ::apache::thrift::protocol::TType _etype907; - xfer += iprot->readListBegin(_etype907, _size904); - this->metadata.resize(_size904); - uint32_t _i908; - for (_i908 = 0; _i908 < _size904; ++_i908) + uint32_t _size910; + ::apache::thrift::protocol::TType _etype913; + xfer += iprot->readListBegin(_etype913, _size910); + this->metadata.resize(_size910); + uint32_t _i914; + for (_i914 = 0; _i914 < _size910; ++_i914) { - xfer += iprot->readBinary(this->metadata[_i908]); + xfer += iprot->readBinary(this->metadata[_i914]); } xfer += iprot->readListEnd(); } @@ -22805,9 +22871,9 @@ uint32_t PutFileMetadataRequest::read(::apache::thrift::protocol::TProtocol* ipr break; case 3: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast909; - xfer += iprot->readI32(ecast909); - this->type = (FileMetadataExprType::type)ecast909; + int32_t ecast915; + xfer += iprot->readI32(ecast915); + this->type = (FileMetadataExprType::type)ecast915; this->__isset.type = true; } else { xfer += iprot->skip(ftype); @@ -22837,10 +22903,10 @@ uint32_t PutFileMetadataRequest::write(::apache::thrift::protocol::TProtocol* op xfer += oprot->writeFieldBegin("fileIds", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I64, static_cast(this->fileIds.size())); - std::vector ::const_iterator _iter910; - for (_iter910 = this->fileIds.begin(); _iter910 != this->fileIds.end(); ++_iter910) + std::vector ::const_iterator _iter916; + for (_iter916 = this->fileIds.begin(); _iter916 != this->fileIds.end(); ++_iter916) { - xfer += oprot->writeI64((*_iter910)); + xfer += oprot->writeI64((*_iter916)); } xfer += oprot->writeListEnd(); } @@ -22849,10 +22915,10 @@ uint32_t PutFileMetadataRequest::write(::apache::thrift::protocol::TProtocol* op xfer += oprot->writeFieldBegin("metadata", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->metadata.size())); - std::vector ::const_iterator _iter911; - for (_iter911 = this->metadata.begin(); _iter911 != this->metadata.end(); ++_iter911) + std::vector ::const_iterator _iter917; + for (_iter917 = this->metadata.begin(); _iter917 != this->metadata.end(); ++_iter917) { - xfer += oprot->writeBinary((*_iter911)); + xfer += oprot->writeBinary((*_iter917)); } xfer += oprot->writeListEnd(); } @@ -22876,17 +22942,17 @@ void swap(PutFileMetadataRequest &a, PutFileMetadataRequest &b) { swap(a.__isset, b.__isset); } -PutFileMetadataRequest::PutFileMetadataRequest(const PutFileMetadataRequest& other912) { - fileIds = other912.fileIds; - metadata = other912.metadata; - type = other912.type; - __isset = other912.__isset; +PutFileMetadataRequest::PutFileMetadataRequest(const PutFileMetadataRequest& other918) { + fileIds = other918.fileIds; + metadata = other918.metadata; + type = other918.type; + __isset = other918.__isset; } -PutFileMetadataRequest& PutFileMetadataRequest::operator=(const PutFileMetadataRequest& other913) { - fileIds = other913.fileIds; - metadata = other913.metadata; - type = other913.type; - __isset = other913.__isset; +PutFileMetadataRequest& PutFileMetadataRequest::operator=(const PutFileMetadataRequest& other919) { + fileIds = other919.fileIds; + metadata = other919.metadata; + type = other919.type; + __isset = other919.__isset; return *this; } void PutFileMetadataRequest::printTo(std::ostream& out) const { @@ -22947,11 +23013,11 @@ void swap(ClearFileMetadataResult &a, ClearFileMetadataResult &b) { (void) b; } -ClearFileMetadataResult::ClearFileMetadataResult(const ClearFileMetadataResult& other914) { - (void) other914; +ClearFileMetadataResult::ClearFileMetadataResult(const ClearFileMetadataResult& other920) { + (void) other920; } -ClearFileMetadataResult& ClearFileMetadataResult::operator=(const ClearFileMetadataResult& other915) { - (void) other915; +ClearFileMetadataResult& ClearFileMetadataResult::operator=(const ClearFileMetadataResult& other921) { + (void) other921; return *this; } void ClearFileMetadataResult::printTo(std::ostream& out) const { @@ -22995,14 +23061,14 @@ uint32_t ClearFileMetadataRequest::read(::apache::thrift::protocol::TProtocol* i if (ftype == ::apache::thrift::protocol::T_LIST) { { this->fileIds.clear(); - uint32_t _size916; - ::apache::thrift::protocol::TType _etype919; - xfer += iprot->readListBegin(_etype919, _size916); - this->fileIds.resize(_size916); - uint32_t _i920; - for (_i920 = 0; _i920 < _size916; ++_i920) + uint32_t _size922; + ::apache::thrift::protocol::TType _etype925; + xfer += iprot->readListBegin(_etype925, _size922); + this->fileIds.resize(_size922); + uint32_t _i926; + for (_i926 = 0; _i926 < _size922; ++_i926) { - xfer += iprot->readI64(this->fileIds[_i920]); + xfer += iprot->readI64(this->fileIds[_i926]); } xfer += iprot->readListEnd(); } @@ -23033,10 +23099,10 @@ uint32_t ClearFileMetadataRequest::write(::apache::thrift::protocol::TProtocol* xfer += oprot->writeFieldBegin("fileIds", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I64, static_cast(this->fileIds.size())); - std::vector ::const_iterator _iter921; - for (_iter921 = this->fileIds.begin(); _iter921 != this->fileIds.end(); ++_iter921) + std::vector ::const_iterator _iter927; + for (_iter927 = this->fileIds.begin(); _iter927 != this->fileIds.end(); ++_iter927) { - xfer += oprot->writeI64((*_iter921)); + xfer += oprot->writeI64((*_iter927)); } xfer += oprot->writeListEnd(); } @@ -23052,11 +23118,11 @@ void swap(ClearFileMetadataRequest &a, ClearFileMetadataRequest &b) { swap(a.fileIds, b.fileIds); } -ClearFileMetadataRequest::ClearFileMetadataRequest(const ClearFileMetadataRequest& other922) { - fileIds = other922.fileIds; +ClearFileMetadataRequest::ClearFileMetadataRequest(const ClearFileMetadataRequest& other928) { + fileIds = other928.fileIds; } -ClearFileMetadataRequest& ClearFileMetadataRequest::operator=(const ClearFileMetadataRequest& other923) { - fileIds = other923.fileIds; +ClearFileMetadataRequest& ClearFileMetadataRequest::operator=(const ClearFileMetadataRequest& other929) { + fileIds = other929.fileIds; return *this; } void ClearFileMetadataRequest::printTo(std::ostream& out) const { @@ -23138,11 +23204,11 @@ void swap(CacheFileMetadataResult &a, CacheFileMetadataResult &b) { swap(a.isSupported, b.isSupported); } -CacheFileMetadataResult::CacheFileMetadataResult(const CacheFileMetadataResult& other924) { - isSupported = other924.isSupported; +CacheFileMetadataResult::CacheFileMetadataResult(const CacheFileMetadataResult& other930) { + isSupported = other930.isSupported; } -CacheFileMetadataResult& CacheFileMetadataResult::operator=(const CacheFileMetadataResult& other925) { - isSupported = other925.isSupported; +CacheFileMetadataResult& CacheFileMetadataResult::operator=(const CacheFileMetadataResult& other931) { + isSupported = other931.isSupported; return *this; } void CacheFileMetadataResult::printTo(std::ostream& out) const { @@ -23283,19 +23349,19 @@ void swap(CacheFileMetadataRequest &a, CacheFileMetadataRequest &b) { swap(a.__isset, b.__isset); } -CacheFileMetadataRequest::CacheFileMetadataRequest(const CacheFileMetadataRequest& other926) { - dbName = other926.dbName; - tblName = other926.tblName; - partName = other926.partName; - isAllParts = other926.isAllParts; - __isset = other926.__isset; +CacheFileMetadataRequest::CacheFileMetadataRequest(const CacheFileMetadataRequest& other932) { + dbName = other932.dbName; + tblName = other932.tblName; + partName = other932.partName; + isAllParts = other932.isAllParts; + __isset = other932.__isset; } -CacheFileMetadataRequest& CacheFileMetadataRequest::operator=(const CacheFileMetadataRequest& other927) { - dbName = other927.dbName; - tblName = other927.tblName; - partName = other927.partName; - isAllParts = other927.isAllParts; - __isset = other927.__isset; +CacheFileMetadataRequest& CacheFileMetadataRequest::operator=(const CacheFileMetadataRequest& other933) { + dbName = other933.dbName; + tblName = other933.tblName; + partName = other933.partName; + isAllParts = other933.isAllParts; + __isset = other933.__isset; return *this; } void CacheFileMetadataRequest::printTo(std::ostream& out) const { @@ -23343,14 +23409,14 @@ uint32_t GetAllFunctionsResponse::read(::apache::thrift::protocol::TProtocol* ip if (ftype == ::apache::thrift::protocol::T_LIST) { { this->functions.clear(); - uint32_t _size928; - ::apache::thrift::protocol::TType _etype931; - xfer += iprot->readListBegin(_etype931, _size928); - this->functions.resize(_size928); - uint32_t _i932; - for (_i932 = 0; _i932 < _size928; ++_i932) + uint32_t _size934; + ::apache::thrift::protocol::TType _etype937; + xfer += iprot->readListBegin(_etype937, _size934); + this->functions.resize(_size934); + uint32_t _i938; + for (_i938 = 0; _i938 < _size934; ++_i938) { - xfer += this->functions[_i932].read(iprot); + xfer += this->functions[_i938].read(iprot); } xfer += iprot->readListEnd(); } @@ -23380,10 +23446,10 @@ uint32_t GetAllFunctionsResponse::write(::apache::thrift::protocol::TProtocol* o xfer += oprot->writeFieldBegin("functions", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->functions.size())); - std::vector ::const_iterator _iter933; - for (_iter933 = this->functions.begin(); _iter933 != this->functions.end(); ++_iter933) + std::vector ::const_iterator _iter939; + for (_iter939 = this->functions.begin(); _iter939 != this->functions.end(); ++_iter939) { - xfer += (*_iter933).write(oprot); + xfer += (*_iter939).write(oprot); } xfer += oprot->writeListEnd(); } @@ -23400,13 +23466,13 @@ void swap(GetAllFunctionsResponse &a, GetAllFunctionsResponse &b) { swap(a.__isset, b.__isset); } -GetAllFunctionsResponse::GetAllFunctionsResponse(const GetAllFunctionsResponse& other934) { - functions = other934.functions; - __isset = other934.__isset; +GetAllFunctionsResponse::GetAllFunctionsResponse(const GetAllFunctionsResponse& other940) { + functions = other940.functions; + __isset = other940.__isset; } -GetAllFunctionsResponse& GetAllFunctionsResponse::operator=(const GetAllFunctionsResponse& other935) { - functions = other935.functions; - __isset = other935.__isset; +GetAllFunctionsResponse& GetAllFunctionsResponse::operator=(const GetAllFunctionsResponse& other941) { + functions = other941.functions; + __isset = other941.__isset; return *this; } void GetAllFunctionsResponse::printTo(std::ostream& out) const { @@ -23451,16 +23517,16 @@ uint32_t ClientCapabilities::read(::apache::thrift::protocol::TProtocol* iprot) if (ftype == ::apache::thrift::protocol::T_LIST) { { this->values.clear(); - uint32_t _size936; - ::apache::thrift::protocol::TType _etype939; - xfer += iprot->readListBegin(_etype939, _size936); - this->values.resize(_size936); - uint32_t _i940; - for (_i940 = 0; _i940 < _size936; ++_i940) + uint32_t _size942; + ::apache::thrift::protocol::TType _etype945; + xfer += iprot->readListBegin(_etype945, _size942); + this->values.resize(_size942); + uint32_t _i946; + for (_i946 = 0; _i946 < _size942; ++_i946) { - int32_t ecast941; - xfer += iprot->readI32(ecast941); - this->values[_i940] = (ClientCapability::type)ecast941; + int32_t ecast947; + xfer += iprot->readI32(ecast947); + this->values[_i946] = (ClientCapability::type)ecast947; } xfer += iprot->readListEnd(); } @@ -23491,10 +23557,10 @@ uint32_t ClientCapabilities::write(::apache::thrift::protocol::TProtocol* oprot) xfer += oprot->writeFieldBegin("values", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_I32, static_cast(this->values.size())); - std::vector ::const_iterator _iter942; - for (_iter942 = this->values.begin(); _iter942 != this->values.end(); ++_iter942) + std::vector ::const_iterator _iter948; + for (_iter948 = this->values.begin(); _iter948 != this->values.end(); ++_iter948) { - xfer += oprot->writeI32((int32_t)(*_iter942)); + xfer += oprot->writeI32((int32_t)(*_iter948)); } xfer += oprot->writeListEnd(); } @@ -23510,11 +23576,11 @@ void swap(ClientCapabilities &a, ClientCapabilities &b) { swap(a.values, b.values); } -ClientCapabilities::ClientCapabilities(const ClientCapabilities& other943) { - values = other943.values; +ClientCapabilities::ClientCapabilities(const ClientCapabilities& other949) { + values = other949.values; } -ClientCapabilities& ClientCapabilities::operator=(const ClientCapabilities& other944) { - values = other944.values; +ClientCapabilities& ClientCapabilities::operator=(const ClientCapabilities& other950) { + values = other950.values; return *this; } void ClientCapabilities::printTo(std::ostream& out) const { @@ -23655,19 +23721,19 @@ void swap(GetTableRequest &a, GetTableRequest &b) { swap(a.__isset, b.__isset); } -GetTableRequest::GetTableRequest(const GetTableRequest& other945) { - dbName = other945.dbName; - tblName = other945.tblName; - capabilities = other945.capabilities; - catName = other945.catName; - __isset = other945.__isset; +GetTableRequest::GetTableRequest(const GetTableRequest& other951) { + dbName = other951.dbName; + tblName = other951.tblName; + capabilities = other951.capabilities; + catName = other951.catName; + __isset = other951.__isset; } -GetTableRequest& GetTableRequest::operator=(const GetTableRequest& other946) { - dbName = other946.dbName; - tblName = other946.tblName; - capabilities = other946.capabilities; - catName = other946.catName; - __isset = other946.__isset; +GetTableRequest& GetTableRequest::operator=(const GetTableRequest& other952) { + dbName = other952.dbName; + tblName = other952.tblName; + capabilities = other952.capabilities; + catName = other952.catName; + __isset = other952.__isset; return *this; } void GetTableRequest::printTo(std::ostream& out) const { @@ -23752,11 +23818,11 @@ void swap(GetTableResult &a, GetTableResult &b) { swap(a.table, b.table); } -GetTableResult::GetTableResult(const GetTableResult& other947) { - table = other947.table; +GetTableResult::GetTableResult(const GetTableResult& other953) { + table = other953.table; } -GetTableResult& GetTableResult::operator=(const GetTableResult& other948) { - table = other948.table; +GetTableResult& GetTableResult::operator=(const GetTableResult& other954) { + table = other954.table; return *this; } void GetTableResult::printTo(std::ostream& out) const { @@ -23824,14 +23890,14 @@ uint32_t GetTablesRequest::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_LIST) { { this->tblNames.clear(); - uint32_t _size949; - ::apache::thrift::protocol::TType _etype952; - xfer += iprot->readListBegin(_etype952, _size949); - this->tblNames.resize(_size949); - uint32_t _i953; - for (_i953 = 0; _i953 < _size949; ++_i953) + uint32_t _size955; + ::apache::thrift::protocol::TType _etype958; + xfer += iprot->readListBegin(_etype958, _size955); + this->tblNames.resize(_size955); + uint32_t _i959; + for (_i959 = 0; _i959 < _size955; ++_i959) { - xfer += iprot->readString(this->tblNames[_i953]); + xfer += iprot->readString(this->tblNames[_i959]); } xfer += iprot->readListEnd(); } @@ -23883,10 +23949,10 @@ uint32_t GetTablesRequest::write(::apache::thrift::protocol::TProtocol* oprot) c xfer += oprot->writeFieldBegin("tblNames", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->tblNames.size())); - std::vector ::const_iterator _iter954; - for (_iter954 = this->tblNames.begin(); _iter954 != this->tblNames.end(); ++_iter954) + std::vector ::const_iterator _iter960; + for (_iter960 = this->tblNames.begin(); _iter960 != this->tblNames.end(); ++_iter960) { - xfer += oprot->writeString((*_iter954)); + xfer += oprot->writeString((*_iter960)); } xfer += oprot->writeListEnd(); } @@ -23916,19 +23982,19 @@ void swap(GetTablesRequest &a, GetTablesRequest &b) { swap(a.__isset, b.__isset); } -GetTablesRequest::GetTablesRequest(const GetTablesRequest& other955) { - dbName = other955.dbName; - tblNames = other955.tblNames; - capabilities = other955.capabilities; - catName = other955.catName; - __isset = other955.__isset; +GetTablesRequest::GetTablesRequest(const GetTablesRequest& other961) { + dbName = other961.dbName; + tblNames = other961.tblNames; + capabilities = other961.capabilities; + catName = other961.catName; + __isset = other961.__isset; } -GetTablesRequest& GetTablesRequest::operator=(const GetTablesRequest& other956) { - dbName = other956.dbName; - tblNames = other956.tblNames; - capabilities = other956.capabilities; - catName = other956.catName; - __isset = other956.__isset; +GetTablesRequest& GetTablesRequest::operator=(const GetTablesRequest& other962) { + dbName = other962.dbName; + tblNames = other962.tblNames; + capabilities = other962.capabilities; + catName = other962.catName; + __isset = other962.__isset; return *this; } void GetTablesRequest::printTo(std::ostream& out) const { @@ -23976,14 +24042,14 @@ uint32_t GetTablesResult::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_LIST) { { this->tables.clear(); - uint32_t _size957; - ::apache::thrift::protocol::TType _etype960; - xfer += iprot->readListBegin(_etype960, _size957); - this->tables.resize(_size957); - uint32_t _i961; - for (_i961 = 0; _i961 < _size957; ++_i961) + uint32_t _size963; + ::apache::thrift::protocol::TType _etype966; + xfer += iprot->readListBegin(_etype966, _size963); + this->tables.resize(_size963); + uint32_t _i967; + for (_i967 = 0; _i967 < _size963; ++_i967) { - xfer += this->tables[_i961].read(iprot); + xfer += this->tables[_i967].read(iprot); } xfer += iprot->readListEnd(); } @@ -24014,10 +24080,10 @@ uint32_t GetTablesResult::write(::apache::thrift::protocol::TProtocol* oprot) co xfer += oprot->writeFieldBegin("tables", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->tables.size())); - std::vector
::const_iterator _iter962; - for (_iter962 = this->tables.begin(); _iter962 != this->tables.end(); ++_iter962) + std::vector
::const_iterator _iter968; + for (_iter968 = this->tables.begin(); _iter968 != this->tables.end(); ++_iter968) { - xfer += (*_iter962).write(oprot); + xfer += (*_iter968).write(oprot); } xfer += oprot->writeListEnd(); } @@ -24033,11 +24099,11 @@ void swap(GetTablesResult &a, GetTablesResult &b) { swap(a.tables, b.tables); } -GetTablesResult::GetTablesResult(const GetTablesResult& other963) { - tables = other963.tables; +GetTablesResult::GetTablesResult(const GetTablesResult& other969) { + tables = other969.tables; } -GetTablesResult& GetTablesResult::operator=(const GetTablesResult& other964) { - tables = other964.tables; +GetTablesResult& GetTablesResult::operator=(const GetTablesResult& other970) { + tables = other970.tables; return *this; } void GetTablesResult::printTo(std::ostream& out) const { @@ -24139,13 +24205,13 @@ void swap(CmRecycleRequest &a, CmRecycleRequest &b) { swap(a.purge, b.purge); } -CmRecycleRequest::CmRecycleRequest(const CmRecycleRequest& other965) { - dataPath = other965.dataPath; - purge = other965.purge; +CmRecycleRequest::CmRecycleRequest(const CmRecycleRequest& other971) { + dataPath = other971.dataPath; + purge = other971.purge; } -CmRecycleRequest& CmRecycleRequest::operator=(const CmRecycleRequest& other966) { - dataPath = other966.dataPath; - purge = other966.purge; +CmRecycleRequest& CmRecycleRequest::operator=(const CmRecycleRequest& other972) { + dataPath = other972.dataPath; + purge = other972.purge; return *this; } void CmRecycleRequest::printTo(std::ostream& out) const { @@ -24205,11 +24271,11 @@ void swap(CmRecycleResponse &a, CmRecycleResponse &b) { (void) b; } -CmRecycleResponse::CmRecycleResponse(const CmRecycleResponse& other967) { - (void) other967; +CmRecycleResponse::CmRecycleResponse(const CmRecycleResponse& other973) { + (void) other973; } -CmRecycleResponse& CmRecycleResponse::operator=(const CmRecycleResponse& other968) { - (void) other968; +CmRecycleResponse& CmRecycleResponse::operator=(const CmRecycleResponse& other974) { + (void) other974; return *this; } void CmRecycleResponse::printTo(std::ostream& out) const { @@ -24369,21 +24435,21 @@ void swap(TableMeta &a, TableMeta &b) { swap(a.__isset, b.__isset); } -TableMeta::TableMeta(const TableMeta& other969) { - dbName = other969.dbName; - tableName = other969.tableName; - tableType = other969.tableType; - comments = other969.comments; - catName = other969.catName; - __isset = other969.__isset; -} -TableMeta& TableMeta::operator=(const TableMeta& other970) { - dbName = other970.dbName; - tableName = other970.tableName; - tableType = other970.tableType; - comments = other970.comments; - catName = other970.catName; - __isset = other970.__isset; +TableMeta::TableMeta(const TableMeta& other975) { + dbName = other975.dbName; + tableName = other975.tableName; + tableType = other975.tableType; + comments = other975.comments; + catName = other975.catName; + __isset = other975.__isset; +} +TableMeta& TableMeta::operator=(const TableMeta& other976) { + dbName = other976.dbName; + tableName = other976.tableName; + tableType = other976.tableType; + comments = other976.comments; + catName = other976.catName; + __isset = other976.__isset; return *this; } void TableMeta::printTo(std::ostream& out) const { @@ -24447,15 +24513,15 @@ uint32_t Materialization::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_SET) { { this->tablesUsed.clear(); - uint32_t _size971; - ::apache::thrift::protocol::TType _etype974; - xfer += iprot->readSetBegin(_etype974, _size971); - uint32_t _i975; - for (_i975 = 0; _i975 < _size971; ++_i975) + uint32_t _size977; + ::apache::thrift::protocol::TType _etype980; + xfer += iprot->readSetBegin(_etype980, _size977); + uint32_t _i981; + for (_i981 = 0; _i981 < _size977; ++_i981) { - std::string _elem976; - xfer += iprot->readString(_elem976); - this->tablesUsed.insert(_elem976); + std::string _elem982; + xfer += iprot->readString(_elem982); + this->tablesUsed.insert(_elem982); } xfer += iprot->readSetEnd(); } @@ -24510,10 +24576,10 @@ uint32_t Materialization::write(::apache::thrift::protocol::TProtocol* oprot) co xfer += oprot->writeFieldBegin("tablesUsed", ::apache::thrift::protocol::T_SET, 1); { xfer += oprot->writeSetBegin(::apache::thrift::protocol::T_STRING, static_cast(this->tablesUsed.size())); - std::set ::const_iterator _iter977; - for (_iter977 = this->tablesUsed.begin(); _iter977 != this->tablesUsed.end(); ++_iter977) + std::set ::const_iterator _iter983; + for (_iter983 = this->tablesUsed.begin(); _iter983 != this->tablesUsed.end(); ++_iter983) { - xfer += oprot->writeString((*_iter977)); + xfer += oprot->writeString((*_iter983)); } xfer += oprot->writeSetEnd(); } @@ -24548,19 +24614,19 @@ void swap(Materialization &a, Materialization &b) { swap(a.__isset, b.__isset); } -Materialization::Materialization(const Materialization& other978) { - tablesUsed = other978.tablesUsed; - validTxnList = other978.validTxnList; - invalidationTime = other978.invalidationTime; - sourceTablesUpdateDeleteModified = other978.sourceTablesUpdateDeleteModified; - __isset = other978.__isset; +Materialization::Materialization(const Materialization& other984) { + tablesUsed = other984.tablesUsed; + validTxnList = other984.validTxnList; + invalidationTime = other984.invalidationTime; + sourceTablesUpdateDeleteModified = other984.sourceTablesUpdateDeleteModified; + __isset = other984.__isset; } -Materialization& Materialization::operator=(const Materialization& other979) { - tablesUsed = other979.tablesUsed; - validTxnList = other979.validTxnList; - invalidationTime = other979.invalidationTime; - sourceTablesUpdateDeleteModified = other979.sourceTablesUpdateDeleteModified; - __isset = other979.__isset; +Materialization& Materialization::operator=(const Materialization& other985) { + tablesUsed = other985.tablesUsed; + validTxnList = other985.validTxnList; + invalidationTime = other985.invalidationTime; + sourceTablesUpdateDeleteModified = other985.sourceTablesUpdateDeleteModified; + __isset = other985.__isset; return *this; } void Materialization::printTo(std::ostream& out) const { @@ -24629,9 +24695,9 @@ uint32_t WMResourcePlan::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 2: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast980; - xfer += iprot->readI32(ecast980); - this->status = (WMResourcePlanStatus::type)ecast980; + int32_t ecast986; + xfer += iprot->readI32(ecast986); + this->status = (WMResourcePlanStatus::type)ecast986; this->__isset.status = true; } else { xfer += iprot->skip(ftype); @@ -24705,19 +24771,19 @@ void swap(WMResourcePlan &a, WMResourcePlan &b) { swap(a.__isset, b.__isset); } -WMResourcePlan::WMResourcePlan(const WMResourcePlan& other981) { - name = other981.name; - status = other981.status; - queryParallelism = other981.queryParallelism; - defaultPoolPath = other981.defaultPoolPath; - __isset = other981.__isset; +WMResourcePlan::WMResourcePlan(const WMResourcePlan& other987) { + name = other987.name; + status = other987.status; + queryParallelism = other987.queryParallelism; + defaultPoolPath = other987.defaultPoolPath; + __isset = other987.__isset; } -WMResourcePlan& WMResourcePlan::operator=(const WMResourcePlan& other982) { - name = other982.name; - status = other982.status; - queryParallelism = other982.queryParallelism; - defaultPoolPath = other982.defaultPoolPath; - __isset = other982.__isset; +WMResourcePlan& WMResourcePlan::operator=(const WMResourcePlan& other988) { + name = other988.name; + status = other988.status; + queryParallelism = other988.queryParallelism; + defaultPoolPath = other988.defaultPoolPath; + __isset = other988.__isset; return *this; } void WMResourcePlan::printTo(std::ostream& out) const { @@ -24796,9 +24862,9 @@ uint32_t WMNullableResourcePlan::read(::apache::thrift::protocol::TProtocol* ipr break; case 2: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast983; - xfer += iprot->readI32(ecast983); - this->status = (WMResourcePlanStatus::type)ecast983; + int32_t ecast989; + xfer += iprot->readI32(ecast989); + this->status = (WMResourcePlanStatus::type)ecast989; this->__isset.status = true; } else { xfer += iprot->skip(ftype); @@ -24899,23 +24965,23 @@ void swap(WMNullableResourcePlan &a, WMNullableResourcePlan &b) { swap(a.__isset, b.__isset); } -WMNullableResourcePlan::WMNullableResourcePlan(const WMNullableResourcePlan& other984) { - name = other984.name; - status = other984.status; - queryParallelism = other984.queryParallelism; - isSetQueryParallelism = other984.isSetQueryParallelism; - defaultPoolPath = other984.defaultPoolPath; - isSetDefaultPoolPath = other984.isSetDefaultPoolPath; - __isset = other984.__isset; +WMNullableResourcePlan::WMNullableResourcePlan(const WMNullableResourcePlan& other990) { + name = other990.name; + status = other990.status; + queryParallelism = other990.queryParallelism; + isSetQueryParallelism = other990.isSetQueryParallelism; + defaultPoolPath = other990.defaultPoolPath; + isSetDefaultPoolPath = other990.isSetDefaultPoolPath; + __isset = other990.__isset; } -WMNullableResourcePlan& WMNullableResourcePlan::operator=(const WMNullableResourcePlan& other985) { - name = other985.name; - status = other985.status; - queryParallelism = other985.queryParallelism; - isSetQueryParallelism = other985.isSetQueryParallelism; - defaultPoolPath = other985.defaultPoolPath; - isSetDefaultPoolPath = other985.isSetDefaultPoolPath; - __isset = other985.__isset; +WMNullableResourcePlan& WMNullableResourcePlan::operator=(const WMNullableResourcePlan& other991) { + name = other991.name; + status = other991.status; + queryParallelism = other991.queryParallelism; + isSetQueryParallelism = other991.isSetQueryParallelism; + defaultPoolPath = other991.defaultPoolPath; + isSetDefaultPoolPath = other991.isSetDefaultPoolPath; + __isset = other991.__isset; return *this; } void WMNullableResourcePlan::printTo(std::ostream& out) const { @@ -25080,21 +25146,21 @@ void swap(WMPool &a, WMPool &b) { swap(a.__isset, b.__isset); } -WMPool::WMPool(const WMPool& other986) { - resourcePlanName = other986.resourcePlanName; - poolPath = other986.poolPath; - allocFraction = other986.allocFraction; - queryParallelism = other986.queryParallelism; - schedulingPolicy = other986.schedulingPolicy; - __isset = other986.__isset; +WMPool::WMPool(const WMPool& other992) { + resourcePlanName = other992.resourcePlanName; + poolPath = other992.poolPath; + allocFraction = other992.allocFraction; + queryParallelism = other992.queryParallelism; + schedulingPolicy = other992.schedulingPolicy; + __isset = other992.__isset; } -WMPool& WMPool::operator=(const WMPool& other987) { - resourcePlanName = other987.resourcePlanName; - poolPath = other987.poolPath; - allocFraction = other987.allocFraction; - queryParallelism = other987.queryParallelism; - schedulingPolicy = other987.schedulingPolicy; - __isset = other987.__isset; +WMPool& WMPool::operator=(const WMPool& other993) { + resourcePlanName = other993.resourcePlanName; + poolPath = other993.poolPath; + allocFraction = other993.allocFraction; + queryParallelism = other993.queryParallelism; + schedulingPolicy = other993.schedulingPolicy; + __isset = other993.__isset; return *this; } void WMPool::printTo(std::ostream& out) const { @@ -25277,23 +25343,23 @@ void swap(WMNullablePool &a, WMNullablePool &b) { swap(a.__isset, b.__isset); } -WMNullablePool::WMNullablePool(const WMNullablePool& other988) { - resourcePlanName = other988.resourcePlanName; - poolPath = other988.poolPath; - allocFraction = other988.allocFraction; - queryParallelism = other988.queryParallelism; - schedulingPolicy = other988.schedulingPolicy; - isSetSchedulingPolicy = other988.isSetSchedulingPolicy; - __isset = other988.__isset; -} -WMNullablePool& WMNullablePool::operator=(const WMNullablePool& other989) { - resourcePlanName = other989.resourcePlanName; - poolPath = other989.poolPath; - allocFraction = other989.allocFraction; - queryParallelism = other989.queryParallelism; - schedulingPolicy = other989.schedulingPolicy; - isSetSchedulingPolicy = other989.isSetSchedulingPolicy; - __isset = other989.__isset; +WMNullablePool::WMNullablePool(const WMNullablePool& other994) { + resourcePlanName = other994.resourcePlanName; + poolPath = other994.poolPath; + allocFraction = other994.allocFraction; + queryParallelism = other994.queryParallelism; + schedulingPolicy = other994.schedulingPolicy; + isSetSchedulingPolicy = other994.isSetSchedulingPolicy; + __isset = other994.__isset; +} +WMNullablePool& WMNullablePool::operator=(const WMNullablePool& other995) { + resourcePlanName = other995.resourcePlanName; + poolPath = other995.poolPath; + allocFraction = other995.allocFraction; + queryParallelism = other995.queryParallelism; + schedulingPolicy = other995.schedulingPolicy; + isSetSchedulingPolicy = other995.isSetSchedulingPolicy; + __isset = other995.__isset; return *this; } void WMNullablePool::printTo(std::ostream& out) const { @@ -25458,21 +25524,21 @@ void swap(WMTrigger &a, WMTrigger &b) { swap(a.__isset, b.__isset); } -WMTrigger::WMTrigger(const WMTrigger& other990) { - resourcePlanName = other990.resourcePlanName; - triggerName = other990.triggerName; - triggerExpression = other990.triggerExpression; - actionExpression = other990.actionExpression; - isInUnmanaged = other990.isInUnmanaged; - __isset = other990.__isset; -} -WMTrigger& WMTrigger::operator=(const WMTrigger& other991) { - resourcePlanName = other991.resourcePlanName; - triggerName = other991.triggerName; - triggerExpression = other991.triggerExpression; - actionExpression = other991.actionExpression; - isInUnmanaged = other991.isInUnmanaged; - __isset = other991.__isset; +WMTrigger::WMTrigger(const WMTrigger& other996) { + resourcePlanName = other996.resourcePlanName; + triggerName = other996.triggerName; + triggerExpression = other996.triggerExpression; + actionExpression = other996.actionExpression; + isInUnmanaged = other996.isInUnmanaged; + __isset = other996.__isset; +} +WMTrigger& WMTrigger::operator=(const WMTrigger& other997) { + resourcePlanName = other997.resourcePlanName; + triggerName = other997.triggerName; + triggerExpression = other997.triggerExpression; + actionExpression = other997.actionExpression; + isInUnmanaged = other997.isInUnmanaged; + __isset = other997.__isset; return *this; } void WMTrigger::printTo(std::ostream& out) const { @@ -25637,21 +25703,21 @@ void swap(WMMapping &a, WMMapping &b) { swap(a.__isset, b.__isset); } -WMMapping::WMMapping(const WMMapping& other992) { - resourcePlanName = other992.resourcePlanName; - entityType = other992.entityType; - entityName = other992.entityName; - poolPath = other992.poolPath; - ordering = other992.ordering; - __isset = other992.__isset; -} -WMMapping& WMMapping::operator=(const WMMapping& other993) { - resourcePlanName = other993.resourcePlanName; - entityType = other993.entityType; - entityName = other993.entityName; - poolPath = other993.poolPath; - ordering = other993.ordering; - __isset = other993.__isset; +WMMapping::WMMapping(const WMMapping& other998) { + resourcePlanName = other998.resourcePlanName; + entityType = other998.entityType; + entityName = other998.entityName; + poolPath = other998.poolPath; + ordering = other998.ordering; + __isset = other998.__isset; +} +WMMapping& WMMapping::operator=(const WMMapping& other999) { + resourcePlanName = other999.resourcePlanName; + entityType = other999.entityType; + entityName = other999.entityName; + poolPath = other999.poolPath; + ordering = other999.ordering; + __isset = other999.__isset; return *this; } void WMMapping::printTo(std::ostream& out) const { @@ -25757,13 +25823,13 @@ void swap(WMPoolTrigger &a, WMPoolTrigger &b) { swap(a.trigger, b.trigger); } -WMPoolTrigger::WMPoolTrigger(const WMPoolTrigger& other994) { - pool = other994.pool; - trigger = other994.trigger; +WMPoolTrigger::WMPoolTrigger(const WMPoolTrigger& other1000) { + pool = other1000.pool; + trigger = other1000.trigger; } -WMPoolTrigger& WMPoolTrigger::operator=(const WMPoolTrigger& other995) { - pool = other995.pool; - trigger = other995.trigger; +WMPoolTrigger& WMPoolTrigger::operator=(const WMPoolTrigger& other1001) { + pool = other1001.pool; + trigger = other1001.trigger; return *this; } void WMPoolTrigger::printTo(std::ostream& out) const { @@ -25837,14 +25903,14 @@ uint32_t WMFullResourcePlan::read(::apache::thrift::protocol::TProtocol* iprot) if (ftype == ::apache::thrift::protocol::T_LIST) { { this->pools.clear(); - uint32_t _size996; - ::apache::thrift::protocol::TType _etype999; - xfer += iprot->readListBegin(_etype999, _size996); - this->pools.resize(_size996); - uint32_t _i1000; - for (_i1000 = 0; _i1000 < _size996; ++_i1000) + uint32_t _size1002; + ::apache::thrift::protocol::TType _etype1005; + xfer += iprot->readListBegin(_etype1005, _size1002); + this->pools.resize(_size1002); + uint32_t _i1006; + for (_i1006 = 0; _i1006 < _size1002; ++_i1006) { - xfer += this->pools[_i1000].read(iprot); + xfer += this->pools[_i1006].read(iprot); } xfer += iprot->readListEnd(); } @@ -25857,14 +25923,14 @@ uint32_t WMFullResourcePlan::read(::apache::thrift::protocol::TProtocol* iprot) if (ftype == ::apache::thrift::protocol::T_LIST) { { this->mappings.clear(); - uint32_t _size1001; - ::apache::thrift::protocol::TType _etype1004; - xfer += iprot->readListBegin(_etype1004, _size1001); - this->mappings.resize(_size1001); - uint32_t _i1005; - for (_i1005 = 0; _i1005 < _size1001; ++_i1005) + uint32_t _size1007; + ::apache::thrift::protocol::TType _etype1010; + xfer += iprot->readListBegin(_etype1010, _size1007); + this->mappings.resize(_size1007); + uint32_t _i1011; + for (_i1011 = 0; _i1011 < _size1007; ++_i1011) { - xfer += this->mappings[_i1005].read(iprot); + xfer += this->mappings[_i1011].read(iprot); } xfer += iprot->readListEnd(); } @@ -25877,14 +25943,14 @@ uint32_t WMFullResourcePlan::read(::apache::thrift::protocol::TProtocol* iprot) if (ftype == ::apache::thrift::protocol::T_LIST) { { this->triggers.clear(); - uint32_t _size1006; - ::apache::thrift::protocol::TType _etype1009; - xfer += iprot->readListBegin(_etype1009, _size1006); - this->triggers.resize(_size1006); - uint32_t _i1010; - for (_i1010 = 0; _i1010 < _size1006; ++_i1010) + uint32_t _size1012; + ::apache::thrift::protocol::TType _etype1015; + xfer += iprot->readListBegin(_etype1015, _size1012); + this->triggers.resize(_size1012); + uint32_t _i1016; + for (_i1016 = 0; _i1016 < _size1012; ++_i1016) { - xfer += this->triggers[_i1010].read(iprot); + xfer += this->triggers[_i1016].read(iprot); } xfer += iprot->readListEnd(); } @@ -25897,14 +25963,14 @@ uint32_t WMFullResourcePlan::read(::apache::thrift::protocol::TProtocol* iprot) if (ftype == ::apache::thrift::protocol::T_LIST) { { this->poolTriggers.clear(); - uint32_t _size1011; - ::apache::thrift::protocol::TType _etype1014; - xfer += iprot->readListBegin(_etype1014, _size1011); - this->poolTriggers.resize(_size1011); - uint32_t _i1015; - for (_i1015 = 0; _i1015 < _size1011; ++_i1015) + uint32_t _size1017; + ::apache::thrift::protocol::TType _etype1020; + xfer += iprot->readListBegin(_etype1020, _size1017); + this->poolTriggers.resize(_size1017); + uint32_t _i1021; + for (_i1021 = 0; _i1021 < _size1017; ++_i1021) { - xfer += this->poolTriggers[_i1015].read(iprot); + xfer += this->poolTriggers[_i1021].read(iprot); } xfer += iprot->readListEnd(); } @@ -25941,10 +26007,10 @@ uint32_t WMFullResourcePlan::write(::apache::thrift::protocol::TProtocol* oprot) xfer += oprot->writeFieldBegin("pools", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->pools.size())); - std::vector ::const_iterator _iter1016; - for (_iter1016 = this->pools.begin(); _iter1016 != this->pools.end(); ++_iter1016) + std::vector ::const_iterator _iter1022; + for (_iter1022 = this->pools.begin(); _iter1022 != this->pools.end(); ++_iter1022) { - xfer += (*_iter1016).write(oprot); + xfer += (*_iter1022).write(oprot); } xfer += oprot->writeListEnd(); } @@ -25954,10 +26020,10 @@ uint32_t WMFullResourcePlan::write(::apache::thrift::protocol::TProtocol* oprot) xfer += oprot->writeFieldBegin("mappings", ::apache::thrift::protocol::T_LIST, 3); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->mappings.size())); - std::vector ::const_iterator _iter1017; - for (_iter1017 = this->mappings.begin(); _iter1017 != this->mappings.end(); ++_iter1017) + std::vector ::const_iterator _iter1023; + for (_iter1023 = this->mappings.begin(); _iter1023 != this->mappings.end(); ++_iter1023) { - xfer += (*_iter1017).write(oprot); + xfer += (*_iter1023).write(oprot); } xfer += oprot->writeListEnd(); } @@ -25967,10 +26033,10 @@ uint32_t WMFullResourcePlan::write(::apache::thrift::protocol::TProtocol* oprot) xfer += oprot->writeFieldBegin("triggers", ::apache::thrift::protocol::T_LIST, 4); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->triggers.size())); - std::vector ::const_iterator _iter1018; - for (_iter1018 = this->triggers.begin(); _iter1018 != this->triggers.end(); ++_iter1018) + std::vector ::const_iterator _iter1024; + for (_iter1024 = this->triggers.begin(); _iter1024 != this->triggers.end(); ++_iter1024) { - xfer += (*_iter1018).write(oprot); + xfer += (*_iter1024).write(oprot); } xfer += oprot->writeListEnd(); } @@ -25980,10 +26046,10 @@ uint32_t WMFullResourcePlan::write(::apache::thrift::protocol::TProtocol* oprot) xfer += oprot->writeFieldBegin("poolTriggers", ::apache::thrift::protocol::T_LIST, 5); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->poolTriggers.size())); - std::vector ::const_iterator _iter1019; - for (_iter1019 = this->poolTriggers.begin(); _iter1019 != this->poolTriggers.end(); ++_iter1019) + std::vector ::const_iterator _iter1025; + for (_iter1025 = this->poolTriggers.begin(); _iter1025 != this->poolTriggers.end(); ++_iter1025) { - xfer += (*_iter1019).write(oprot); + xfer += (*_iter1025).write(oprot); } xfer += oprot->writeListEnd(); } @@ -26004,21 +26070,21 @@ void swap(WMFullResourcePlan &a, WMFullResourcePlan &b) { swap(a.__isset, b.__isset); } -WMFullResourcePlan::WMFullResourcePlan(const WMFullResourcePlan& other1020) { - plan = other1020.plan; - pools = other1020.pools; - mappings = other1020.mappings; - triggers = other1020.triggers; - poolTriggers = other1020.poolTriggers; - __isset = other1020.__isset; -} -WMFullResourcePlan& WMFullResourcePlan::operator=(const WMFullResourcePlan& other1021) { - plan = other1021.plan; - pools = other1021.pools; - mappings = other1021.mappings; - triggers = other1021.triggers; - poolTriggers = other1021.poolTriggers; - __isset = other1021.__isset; +WMFullResourcePlan::WMFullResourcePlan(const WMFullResourcePlan& other1026) { + plan = other1026.plan; + pools = other1026.pools; + mappings = other1026.mappings; + triggers = other1026.triggers; + poolTriggers = other1026.poolTriggers; + __isset = other1026.__isset; +} +WMFullResourcePlan& WMFullResourcePlan::operator=(const WMFullResourcePlan& other1027) { + plan = other1027.plan; + pools = other1027.pools; + mappings = other1027.mappings; + triggers = other1027.triggers; + poolTriggers = other1027.poolTriggers; + __isset = other1027.__isset; return *this; } void WMFullResourcePlan::printTo(std::ostream& out) const { @@ -26123,15 +26189,15 @@ void swap(WMCreateResourcePlanRequest &a, WMCreateResourcePlanRequest &b) { swap(a.__isset, b.__isset); } -WMCreateResourcePlanRequest::WMCreateResourcePlanRequest(const WMCreateResourcePlanRequest& other1022) { - resourcePlan = other1022.resourcePlan; - copyFrom = other1022.copyFrom; - __isset = other1022.__isset; +WMCreateResourcePlanRequest::WMCreateResourcePlanRequest(const WMCreateResourcePlanRequest& other1028) { + resourcePlan = other1028.resourcePlan; + copyFrom = other1028.copyFrom; + __isset = other1028.__isset; } -WMCreateResourcePlanRequest& WMCreateResourcePlanRequest::operator=(const WMCreateResourcePlanRequest& other1023) { - resourcePlan = other1023.resourcePlan; - copyFrom = other1023.copyFrom; - __isset = other1023.__isset; +WMCreateResourcePlanRequest& WMCreateResourcePlanRequest::operator=(const WMCreateResourcePlanRequest& other1029) { + resourcePlan = other1029.resourcePlan; + copyFrom = other1029.copyFrom; + __isset = other1029.__isset; return *this; } void WMCreateResourcePlanRequest::printTo(std::ostream& out) const { @@ -26191,11 +26257,11 @@ void swap(WMCreateResourcePlanResponse &a, WMCreateResourcePlanResponse &b) { (void) b; } -WMCreateResourcePlanResponse::WMCreateResourcePlanResponse(const WMCreateResourcePlanResponse& other1024) { - (void) other1024; +WMCreateResourcePlanResponse::WMCreateResourcePlanResponse(const WMCreateResourcePlanResponse& other1030) { + (void) other1030; } -WMCreateResourcePlanResponse& WMCreateResourcePlanResponse::operator=(const WMCreateResourcePlanResponse& other1025) { - (void) other1025; +WMCreateResourcePlanResponse& WMCreateResourcePlanResponse::operator=(const WMCreateResourcePlanResponse& other1031) { + (void) other1031; return *this; } void WMCreateResourcePlanResponse::printTo(std::ostream& out) const { @@ -26253,11 +26319,11 @@ void swap(WMGetActiveResourcePlanRequest &a, WMGetActiveResourcePlanRequest &b) (void) b; } -WMGetActiveResourcePlanRequest::WMGetActiveResourcePlanRequest(const WMGetActiveResourcePlanRequest& other1026) { - (void) other1026; +WMGetActiveResourcePlanRequest::WMGetActiveResourcePlanRequest(const WMGetActiveResourcePlanRequest& other1032) { + (void) other1032; } -WMGetActiveResourcePlanRequest& WMGetActiveResourcePlanRequest::operator=(const WMGetActiveResourcePlanRequest& other1027) { - (void) other1027; +WMGetActiveResourcePlanRequest& WMGetActiveResourcePlanRequest::operator=(const WMGetActiveResourcePlanRequest& other1033) { + (void) other1033; return *this; } void WMGetActiveResourcePlanRequest::printTo(std::ostream& out) const { @@ -26338,13 +26404,13 @@ void swap(WMGetActiveResourcePlanResponse &a, WMGetActiveResourcePlanResponse &b swap(a.__isset, b.__isset); } -WMGetActiveResourcePlanResponse::WMGetActiveResourcePlanResponse(const WMGetActiveResourcePlanResponse& other1028) { - resourcePlan = other1028.resourcePlan; - __isset = other1028.__isset; +WMGetActiveResourcePlanResponse::WMGetActiveResourcePlanResponse(const WMGetActiveResourcePlanResponse& other1034) { + resourcePlan = other1034.resourcePlan; + __isset = other1034.__isset; } -WMGetActiveResourcePlanResponse& WMGetActiveResourcePlanResponse::operator=(const WMGetActiveResourcePlanResponse& other1029) { - resourcePlan = other1029.resourcePlan; - __isset = other1029.__isset; +WMGetActiveResourcePlanResponse& WMGetActiveResourcePlanResponse::operator=(const WMGetActiveResourcePlanResponse& other1035) { + resourcePlan = other1035.resourcePlan; + __isset = other1035.__isset; return *this; } void WMGetActiveResourcePlanResponse::printTo(std::ostream& out) const { @@ -26426,13 +26492,13 @@ void swap(WMGetResourcePlanRequest &a, WMGetResourcePlanRequest &b) { swap(a.__isset, b.__isset); } -WMGetResourcePlanRequest::WMGetResourcePlanRequest(const WMGetResourcePlanRequest& other1030) { - resourcePlanName = other1030.resourcePlanName; - __isset = other1030.__isset; +WMGetResourcePlanRequest::WMGetResourcePlanRequest(const WMGetResourcePlanRequest& other1036) { + resourcePlanName = other1036.resourcePlanName; + __isset = other1036.__isset; } -WMGetResourcePlanRequest& WMGetResourcePlanRequest::operator=(const WMGetResourcePlanRequest& other1031) { - resourcePlanName = other1031.resourcePlanName; - __isset = other1031.__isset; +WMGetResourcePlanRequest& WMGetResourcePlanRequest::operator=(const WMGetResourcePlanRequest& other1037) { + resourcePlanName = other1037.resourcePlanName; + __isset = other1037.__isset; return *this; } void WMGetResourcePlanRequest::printTo(std::ostream& out) const { @@ -26514,13 +26580,13 @@ void swap(WMGetResourcePlanResponse &a, WMGetResourcePlanResponse &b) { swap(a.__isset, b.__isset); } -WMGetResourcePlanResponse::WMGetResourcePlanResponse(const WMGetResourcePlanResponse& other1032) { - resourcePlan = other1032.resourcePlan; - __isset = other1032.__isset; +WMGetResourcePlanResponse::WMGetResourcePlanResponse(const WMGetResourcePlanResponse& other1038) { + resourcePlan = other1038.resourcePlan; + __isset = other1038.__isset; } -WMGetResourcePlanResponse& WMGetResourcePlanResponse::operator=(const WMGetResourcePlanResponse& other1033) { - resourcePlan = other1033.resourcePlan; - __isset = other1033.__isset; +WMGetResourcePlanResponse& WMGetResourcePlanResponse::operator=(const WMGetResourcePlanResponse& other1039) { + resourcePlan = other1039.resourcePlan; + __isset = other1039.__isset; return *this; } void WMGetResourcePlanResponse::printTo(std::ostream& out) const { @@ -26579,11 +26645,11 @@ void swap(WMGetAllResourcePlanRequest &a, WMGetAllResourcePlanRequest &b) { (void) b; } -WMGetAllResourcePlanRequest::WMGetAllResourcePlanRequest(const WMGetAllResourcePlanRequest& other1034) { - (void) other1034; +WMGetAllResourcePlanRequest::WMGetAllResourcePlanRequest(const WMGetAllResourcePlanRequest& other1040) { + (void) other1040; } -WMGetAllResourcePlanRequest& WMGetAllResourcePlanRequest::operator=(const WMGetAllResourcePlanRequest& other1035) { - (void) other1035; +WMGetAllResourcePlanRequest& WMGetAllResourcePlanRequest::operator=(const WMGetAllResourcePlanRequest& other1041) { + (void) other1041; return *this; } void WMGetAllResourcePlanRequest::printTo(std::ostream& out) const { @@ -26627,14 +26693,14 @@ uint32_t WMGetAllResourcePlanResponse::read(::apache::thrift::protocol::TProtoco if (ftype == ::apache::thrift::protocol::T_LIST) { { this->resourcePlans.clear(); - uint32_t _size1036; - ::apache::thrift::protocol::TType _etype1039; - xfer += iprot->readListBegin(_etype1039, _size1036); - this->resourcePlans.resize(_size1036); - uint32_t _i1040; - for (_i1040 = 0; _i1040 < _size1036; ++_i1040) + uint32_t _size1042; + ::apache::thrift::protocol::TType _etype1045; + xfer += iprot->readListBegin(_etype1045, _size1042); + this->resourcePlans.resize(_size1042); + uint32_t _i1046; + for (_i1046 = 0; _i1046 < _size1042; ++_i1046) { - xfer += this->resourcePlans[_i1040].read(iprot); + xfer += this->resourcePlans[_i1046].read(iprot); } xfer += iprot->readListEnd(); } @@ -26664,10 +26730,10 @@ uint32_t WMGetAllResourcePlanResponse::write(::apache::thrift::protocol::TProtoc xfer += oprot->writeFieldBegin("resourcePlans", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->resourcePlans.size())); - std::vector ::const_iterator _iter1041; - for (_iter1041 = this->resourcePlans.begin(); _iter1041 != this->resourcePlans.end(); ++_iter1041) + std::vector ::const_iterator _iter1047; + for (_iter1047 = this->resourcePlans.begin(); _iter1047 != this->resourcePlans.end(); ++_iter1047) { - xfer += (*_iter1041).write(oprot); + xfer += (*_iter1047).write(oprot); } xfer += oprot->writeListEnd(); } @@ -26684,13 +26750,13 @@ void swap(WMGetAllResourcePlanResponse &a, WMGetAllResourcePlanResponse &b) { swap(a.__isset, b.__isset); } -WMGetAllResourcePlanResponse::WMGetAllResourcePlanResponse(const WMGetAllResourcePlanResponse& other1042) { - resourcePlans = other1042.resourcePlans; - __isset = other1042.__isset; +WMGetAllResourcePlanResponse::WMGetAllResourcePlanResponse(const WMGetAllResourcePlanResponse& other1048) { + resourcePlans = other1048.resourcePlans; + __isset = other1048.__isset; } -WMGetAllResourcePlanResponse& WMGetAllResourcePlanResponse::operator=(const WMGetAllResourcePlanResponse& other1043) { - resourcePlans = other1043.resourcePlans; - __isset = other1043.__isset; +WMGetAllResourcePlanResponse& WMGetAllResourcePlanResponse::operator=(const WMGetAllResourcePlanResponse& other1049) { + resourcePlans = other1049.resourcePlans; + __isset = other1049.__isset; return *this; } void WMGetAllResourcePlanResponse::printTo(std::ostream& out) const { @@ -26848,21 +26914,21 @@ void swap(WMAlterResourcePlanRequest &a, WMAlterResourcePlanRequest &b) { swap(a.__isset, b.__isset); } -WMAlterResourcePlanRequest::WMAlterResourcePlanRequest(const WMAlterResourcePlanRequest& other1044) { - resourcePlanName = other1044.resourcePlanName; - resourcePlan = other1044.resourcePlan; - isEnableAndActivate = other1044.isEnableAndActivate; - isForceDeactivate = other1044.isForceDeactivate; - isReplace = other1044.isReplace; - __isset = other1044.__isset; -} -WMAlterResourcePlanRequest& WMAlterResourcePlanRequest::operator=(const WMAlterResourcePlanRequest& other1045) { - resourcePlanName = other1045.resourcePlanName; - resourcePlan = other1045.resourcePlan; - isEnableAndActivate = other1045.isEnableAndActivate; - isForceDeactivate = other1045.isForceDeactivate; - isReplace = other1045.isReplace; - __isset = other1045.__isset; +WMAlterResourcePlanRequest::WMAlterResourcePlanRequest(const WMAlterResourcePlanRequest& other1050) { + resourcePlanName = other1050.resourcePlanName; + resourcePlan = other1050.resourcePlan; + isEnableAndActivate = other1050.isEnableAndActivate; + isForceDeactivate = other1050.isForceDeactivate; + isReplace = other1050.isReplace; + __isset = other1050.__isset; +} +WMAlterResourcePlanRequest& WMAlterResourcePlanRequest::operator=(const WMAlterResourcePlanRequest& other1051) { + resourcePlanName = other1051.resourcePlanName; + resourcePlan = other1051.resourcePlan; + isEnableAndActivate = other1051.isEnableAndActivate; + isForceDeactivate = other1051.isForceDeactivate; + isReplace = other1051.isReplace; + __isset = other1051.__isset; return *this; } void WMAlterResourcePlanRequest::printTo(std::ostream& out) const { @@ -26948,13 +27014,13 @@ void swap(WMAlterResourcePlanResponse &a, WMAlterResourcePlanResponse &b) { swap(a.__isset, b.__isset); } -WMAlterResourcePlanResponse::WMAlterResourcePlanResponse(const WMAlterResourcePlanResponse& other1046) { - fullResourcePlan = other1046.fullResourcePlan; - __isset = other1046.__isset; +WMAlterResourcePlanResponse::WMAlterResourcePlanResponse(const WMAlterResourcePlanResponse& other1052) { + fullResourcePlan = other1052.fullResourcePlan; + __isset = other1052.__isset; } -WMAlterResourcePlanResponse& WMAlterResourcePlanResponse::operator=(const WMAlterResourcePlanResponse& other1047) { - fullResourcePlan = other1047.fullResourcePlan; - __isset = other1047.__isset; +WMAlterResourcePlanResponse& WMAlterResourcePlanResponse::operator=(const WMAlterResourcePlanResponse& other1053) { + fullResourcePlan = other1053.fullResourcePlan; + __isset = other1053.__isset; return *this; } void WMAlterResourcePlanResponse::printTo(std::ostream& out) const { @@ -27036,13 +27102,13 @@ void swap(WMValidateResourcePlanRequest &a, WMValidateResourcePlanRequest &b) { swap(a.__isset, b.__isset); } -WMValidateResourcePlanRequest::WMValidateResourcePlanRequest(const WMValidateResourcePlanRequest& other1048) { - resourcePlanName = other1048.resourcePlanName; - __isset = other1048.__isset; +WMValidateResourcePlanRequest::WMValidateResourcePlanRequest(const WMValidateResourcePlanRequest& other1054) { + resourcePlanName = other1054.resourcePlanName; + __isset = other1054.__isset; } -WMValidateResourcePlanRequest& WMValidateResourcePlanRequest::operator=(const WMValidateResourcePlanRequest& other1049) { - resourcePlanName = other1049.resourcePlanName; - __isset = other1049.__isset; +WMValidateResourcePlanRequest& WMValidateResourcePlanRequest::operator=(const WMValidateResourcePlanRequest& other1055) { + resourcePlanName = other1055.resourcePlanName; + __isset = other1055.__isset; return *this; } void WMValidateResourcePlanRequest::printTo(std::ostream& out) const { @@ -27092,14 +27158,14 @@ uint32_t WMValidateResourcePlanResponse::read(::apache::thrift::protocol::TProto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->errors.clear(); - uint32_t _size1050; - ::apache::thrift::protocol::TType _etype1053; - xfer += iprot->readListBegin(_etype1053, _size1050); - this->errors.resize(_size1050); - uint32_t _i1054; - for (_i1054 = 0; _i1054 < _size1050; ++_i1054) + uint32_t _size1056; + ::apache::thrift::protocol::TType _etype1059; + xfer += iprot->readListBegin(_etype1059, _size1056); + this->errors.resize(_size1056); + uint32_t _i1060; + for (_i1060 = 0; _i1060 < _size1056; ++_i1060) { - xfer += iprot->readString(this->errors[_i1054]); + xfer += iprot->readString(this->errors[_i1060]); } xfer += iprot->readListEnd(); } @@ -27112,14 +27178,14 @@ uint32_t WMValidateResourcePlanResponse::read(::apache::thrift::protocol::TProto if (ftype == ::apache::thrift::protocol::T_LIST) { { this->warnings.clear(); - uint32_t _size1055; - ::apache::thrift::protocol::TType _etype1058; - xfer += iprot->readListBegin(_etype1058, _size1055); - this->warnings.resize(_size1055); - uint32_t _i1059; - for (_i1059 = 0; _i1059 < _size1055; ++_i1059) + uint32_t _size1061; + ::apache::thrift::protocol::TType _etype1064; + xfer += iprot->readListBegin(_etype1064, _size1061); + this->warnings.resize(_size1061); + uint32_t _i1065; + for (_i1065 = 0; _i1065 < _size1061; ++_i1065) { - xfer += iprot->readString(this->warnings[_i1059]); + xfer += iprot->readString(this->warnings[_i1065]); } xfer += iprot->readListEnd(); } @@ -27149,10 +27215,10 @@ uint32_t WMValidateResourcePlanResponse::write(::apache::thrift::protocol::TProt xfer += oprot->writeFieldBegin("errors", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->errors.size())); - std::vector ::const_iterator _iter1060; - for (_iter1060 = this->errors.begin(); _iter1060 != this->errors.end(); ++_iter1060) + std::vector ::const_iterator _iter1066; + for (_iter1066 = this->errors.begin(); _iter1066 != this->errors.end(); ++_iter1066) { - xfer += oprot->writeString((*_iter1060)); + xfer += oprot->writeString((*_iter1066)); } xfer += oprot->writeListEnd(); } @@ -27162,10 +27228,10 @@ uint32_t WMValidateResourcePlanResponse::write(::apache::thrift::protocol::TProt xfer += oprot->writeFieldBegin("warnings", ::apache::thrift::protocol::T_LIST, 2); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRING, static_cast(this->warnings.size())); - std::vector ::const_iterator _iter1061; - for (_iter1061 = this->warnings.begin(); _iter1061 != this->warnings.end(); ++_iter1061) + std::vector ::const_iterator _iter1067; + for (_iter1067 = this->warnings.begin(); _iter1067 != this->warnings.end(); ++_iter1067) { - xfer += oprot->writeString((*_iter1061)); + xfer += oprot->writeString((*_iter1067)); } xfer += oprot->writeListEnd(); } @@ -27183,15 +27249,15 @@ void swap(WMValidateResourcePlanResponse &a, WMValidateResourcePlanResponse &b) swap(a.__isset, b.__isset); } -WMValidateResourcePlanResponse::WMValidateResourcePlanResponse(const WMValidateResourcePlanResponse& other1062) { - errors = other1062.errors; - warnings = other1062.warnings; - __isset = other1062.__isset; +WMValidateResourcePlanResponse::WMValidateResourcePlanResponse(const WMValidateResourcePlanResponse& other1068) { + errors = other1068.errors; + warnings = other1068.warnings; + __isset = other1068.__isset; } -WMValidateResourcePlanResponse& WMValidateResourcePlanResponse::operator=(const WMValidateResourcePlanResponse& other1063) { - errors = other1063.errors; - warnings = other1063.warnings; - __isset = other1063.__isset; +WMValidateResourcePlanResponse& WMValidateResourcePlanResponse::operator=(const WMValidateResourcePlanResponse& other1069) { + errors = other1069.errors; + warnings = other1069.warnings; + __isset = other1069.__isset; return *this; } void WMValidateResourcePlanResponse::printTo(std::ostream& out) const { @@ -27274,13 +27340,13 @@ void swap(WMDropResourcePlanRequest &a, WMDropResourcePlanRequest &b) { swap(a.__isset, b.__isset); } -WMDropResourcePlanRequest::WMDropResourcePlanRequest(const WMDropResourcePlanRequest& other1064) { - resourcePlanName = other1064.resourcePlanName; - __isset = other1064.__isset; +WMDropResourcePlanRequest::WMDropResourcePlanRequest(const WMDropResourcePlanRequest& other1070) { + resourcePlanName = other1070.resourcePlanName; + __isset = other1070.__isset; } -WMDropResourcePlanRequest& WMDropResourcePlanRequest::operator=(const WMDropResourcePlanRequest& other1065) { - resourcePlanName = other1065.resourcePlanName; - __isset = other1065.__isset; +WMDropResourcePlanRequest& WMDropResourcePlanRequest::operator=(const WMDropResourcePlanRequest& other1071) { + resourcePlanName = other1071.resourcePlanName; + __isset = other1071.__isset; return *this; } void WMDropResourcePlanRequest::printTo(std::ostream& out) const { @@ -27339,11 +27405,11 @@ void swap(WMDropResourcePlanResponse &a, WMDropResourcePlanResponse &b) { (void) b; } -WMDropResourcePlanResponse::WMDropResourcePlanResponse(const WMDropResourcePlanResponse& other1066) { - (void) other1066; +WMDropResourcePlanResponse::WMDropResourcePlanResponse(const WMDropResourcePlanResponse& other1072) { + (void) other1072; } -WMDropResourcePlanResponse& WMDropResourcePlanResponse::operator=(const WMDropResourcePlanResponse& other1067) { - (void) other1067; +WMDropResourcePlanResponse& WMDropResourcePlanResponse::operator=(const WMDropResourcePlanResponse& other1073) { + (void) other1073; return *this; } void WMDropResourcePlanResponse::printTo(std::ostream& out) const { @@ -27424,13 +27490,13 @@ void swap(WMCreateTriggerRequest &a, WMCreateTriggerRequest &b) { swap(a.__isset, b.__isset); } -WMCreateTriggerRequest::WMCreateTriggerRequest(const WMCreateTriggerRequest& other1068) { - trigger = other1068.trigger; - __isset = other1068.__isset; +WMCreateTriggerRequest::WMCreateTriggerRequest(const WMCreateTriggerRequest& other1074) { + trigger = other1074.trigger; + __isset = other1074.__isset; } -WMCreateTriggerRequest& WMCreateTriggerRequest::operator=(const WMCreateTriggerRequest& other1069) { - trigger = other1069.trigger; - __isset = other1069.__isset; +WMCreateTriggerRequest& WMCreateTriggerRequest::operator=(const WMCreateTriggerRequest& other1075) { + trigger = other1075.trigger; + __isset = other1075.__isset; return *this; } void WMCreateTriggerRequest::printTo(std::ostream& out) const { @@ -27489,11 +27555,11 @@ void swap(WMCreateTriggerResponse &a, WMCreateTriggerResponse &b) { (void) b; } -WMCreateTriggerResponse::WMCreateTriggerResponse(const WMCreateTriggerResponse& other1070) { - (void) other1070; +WMCreateTriggerResponse::WMCreateTriggerResponse(const WMCreateTriggerResponse& other1076) { + (void) other1076; } -WMCreateTriggerResponse& WMCreateTriggerResponse::operator=(const WMCreateTriggerResponse& other1071) { - (void) other1071; +WMCreateTriggerResponse& WMCreateTriggerResponse::operator=(const WMCreateTriggerResponse& other1077) { + (void) other1077; return *this; } void WMCreateTriggerResponse::printTo(std::ostream& out) const { @@ -27574,13 +27640,13 @@ void swap(WMAlterTriggerRequest &a, WMAlterTriggerRequest &b) { swap(a.__isset, b.__isset); } -WMAlterTriggerRequest::WMAlterTriggerRequest(const WMAlterTriggerRequest& other1072) { - trigger = other1072.trigger; - __isset = other1072.__isset; +WMAlterTriggerRequest::WMAlterTriggerRequest(const WMAlterTriggerRequest& other1078) { + trigger = other1078.trigger; + __isset = other1078.__isset; } -WMAlterTriggerRequest& WMAlterTriggerRequest::operator=(const WMAlterTriggerRequest& other1073) { - trigger = other1073.trigger; - __isset = other1073.__isset; +WMAlterTriggerRequest& WMAlterTriggerRequest::operator=(const WMAlterTriggerRequest& other1079) { + trigger = other1079.trigger; + __isset = other1079.__isset; return *this; } void WMAlterTriggerRequest::printTo(std::ostream& out) const { @@ -27639,11 +27705,11 @@ void swap(WMAlterTriggerResponse &a, WMAlterTriggerResponse &b) { (void) b; } -WMAlterTriggerResponse::WMAlterTriggerResponse(const WMAlterTriggerResponse& other1074) { - (void) other1074; +WMAlterTriggerResponse::WMAlterTriggerResponse(const WMAlterTriggerResponse& other1080) { + (void) other1080; } -WMAlterTriggerResponse& WMAlterTriggerResponse::operator=(const WMAlterTriggerResponse& other1075) { - (void) other1075; +WMAlterTriggerResponse& WMAlterTriggerResponse::operator=(const WMAlterTriggerResponse& other1081) { + (void) other1081; return *this; } void WMAlterTriggerResponse::printTo(std::ostream& out) const { @@ -27743,15 +27809,15 @@ void swap(WMDropTriggerRequest &a, WMDropTriggerRequest &b) { swap(a.__isset, b.__isset); } -WMDropTriggerRequest::WMDropTriggerRequest(const WMDropTriggerRequest& other1076) { - resourcePlanName = other1076.resourcePlanName; - triggerName = other1076.triggerName; - __isset = other1076.__isset; +WMDropTriggerRequest::WMDropTriggerRequest(const WMDropTriggerRequest& other1082) { + resourcePlanName = other1082.resourcePlanName; + triggerName = other1082.triggerName; + __isset = other1082.__isset; } -WMDropTriggerRequest& WMDropTriggerRequest::operator=(const WMDropTriggerRequest& other1077) { - resourcePlanName = other1077.resourcePlanName; - triggerName = other1077.triggerName; - __isset = other1077.__isset; +WMDropTriggerRequest& WMDropTriggerRequest::operator=(const WMDropTriggerRequest& other1083) { + resourcePlanName = other1083.resourcePlanName; + triggerName = other1083.triggerName; + __isset = other1083.__isset; return *this; } void WMDropTriggerRequest::printTo(std::ostream& out) const { @@ -27811,11 +27877,11 @@ void swap(WMDropTriggerResponse &a, WMDropTriggerResponse &b) { (void) b; } -WMDropTriggerResponse::WMDropTriggerResponse(const WMDropTriggerResponse& other1078) { - (void) other1078; +WMDropTriggerResponse::WMDropTriggerResponse(const WMDropTriggerResponse& other1084) { + (void) other1084; } -WMDropTriggerResponse& WMDropTriggerResponse::operator=(const WMDropTriggerResponse& other1079) { - (void) other1079; +WMDropTriggerResponse& WMDropTriggerResponse::operator=(const WMDropTriggerResponse& other1085) { + (void) other1085; return *this; } void WMDropTriggerResponse::printTo(std::ostream& out) const { @@ -27896,13 +27962,13 @@ void swap(WMGetTriggersForResourePlanRequest &a, WMGetTriggersForResourePlanRequ swap(a.__isset, b.__isset); } -WMGetTriggersForResourePlanRequest::WMGetTriggersForResourePlanRequest(const WMGetTriggersForResourePlanRequest& other1080) { - resourcePlanName = other1080.resourcePlanName; - __isset = other1080.__isset; +WMGetTriggersForResourePlanRequest::WMGetTriggersForResourePlanRequest(const WMGetTriggersForResourePlanRequest& other1086) { + resourcePlanName = other1086.resourcePlanName; + __isset = other1086.__isset; } -WMGetTriggersForResourePlanRequest& WMGetTriggersForResourePlanRequest::operator=(const WMGetTriggersForResourePlanRequest& other1081) { - resourcePlanName = other1081.resourcePlanName; - __isset = other1081.__isset; +WMGetTriggersForResourePlanRequest& WMGetTriggersForResourePlanRequest::operator=(const WMGetTriggersForResourePlanRequest& other1087) { + resourcePlanName = other1087.resourcePlanName; + __isset = other1087.__isset; return *this; } void WMGetTriggersForResourePlanRequest::printTo(std::ostream& out) const { @@ -27947,14 +28013,14 @@ uint32_t WMGetTriggersForResourePlanResponse::read(::apache::thrift::protocol::T if (ftype == ::apache::thrift::protocol::T_LIST) { { this->triggers.clear(); - uint32_t _size1082; - ::apache::thrift::protocol::TType _etype1085; - xfer += iprot->readListBegin(_etype1085, _size1082); - this->triggers.resize(_size1082); - uint32_t _i1086; - for (_i1086 = 0; _i1086 < _size1082; ++_i1086) + uint32_t _size1088; + ::apache::thrift::protocol::TType _etype1091; + xfer += iprot->readListBegin(_etype1091, _size1088); + this->triggers.resize(_size1088); + uint32_t _i1092; + for (_i1092 = 0; _i1092 < _size1088; ++_i1092) { - xfer += this->triggers[_i1086].read(iprot); + xfer += this->triggers[_i1092].read(iprot); } xfer += iprot->readListEnd(); } @@ -27984,10 +28050,10 @@ uint32_t WMGetTriggersForResourePlanResponse::write(::apache::thrift::protocol:: xfer += oprot->writeFieldBegin("triggers", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->triggers.size())); - std::vector ::const_iterator _iter1087; - for (_iter1087 = this->triggers.begin(); _iter1087 != this->triggers.end(); ++_iter1087) + std::vector ::const_iterator _iter1093; + for (_iter1093 = this->triggers.begin(); _iter1093 != this->triggers.end(); ++_iter1093) { - xfer += (*_iter1087).write(oprot); + xfer += (*_iter1093).write(oprot); } xfer += oprot->writeListEnd(); } @@ -28004,13 +28070,13 @@ void swap(WMGetTriggersForResourePlanResponse &a, WMGetTriggersForResourePlanRes swap(a.__isset, b.__isset); } -WMGetTriggersForResourePlanResponse::WMGetTriggersForResourePlanResponse(const WMGetTriggersForResourePlanResponse& other1088) { - triggers = other1088.triggers; - __isset = other1088.__isset; +WMGetTriggersForResourePlanResponse::WMGetTriggersForResourePlanResponse(const WMGetTriggersForResourePlanResponse& other1094) { + triggers = other1094.triggers; + __isset = other1094.__isset; } -WMGetTriggersForResourePlanResponse& WMGetTriggersForResourePlanResponse::operator=(const WMGetTriggersForResourePlanResponse& other1089) { - triggers = other1089.triggers; - __isset = other1089.__isset; +WMGetTriggersForResourePlanResponse& WMGetTriggersForResourePlanResponse::operator=(const WMGetTriggersForResourePlanResponse& other1095) { + triggers = other1095.triggers; + __isset = other1095.__isset; return *this; } void WMGetTriggersForResourePlanResponse::printTo(std::ostream& out) const { @@ -28092,13 +28158,13 @@ void swap(WMCreatePoolRequest &a, WMCreatePoolRequest &b) { swap(a.__isset, b.__isset); } -WMCreatePoolRequest::WMCreatePoolRequest(const WMCreatePoolRequest& other1090) { - pool = other1090.pool; - __isset = other1090.__isset; +WMCreatePoolRequest::WMCreatePoolRequest(const WMCreatePoolRequest& other1096) { + pool = other1096.pool; + __isset = other1096.__isset; } -WMCreatePoolRequest& WMCreatePoolRequest::operator=(const WMCreatePoolRequest& other1091) { - pool = other1091.pool; - __isset = other1091.__isset; +WMCreatePoolRequest& WMCreatePoolRequest::operator=(const WMCreatePoolRequest& other1097) { + pool = other1097.pool; + __isset = other1097.__isset; return *this; } void WMCreatePoolRequest::printTo(std::ostream& out) const { @@ -28157,11 +28223,11 @@ void swap(WMCreatePoolResponse &a, WMCreatePoolResponse &b) { (void) b; } -WMCreatePoolResponse::WMCreatePoolResponse(const WMCreatePoolResponse& other1092) { - (void) other1092; +WMCreatePoolResponse::WMCreatePoolResponse(const WMCreatePoolResponse& other1098) { + (void) other1098; } -WMCreatePoolResponse& WMCreatePoolResponse::operator=(const WMCreatePoolResponse& other1093) { - (void) other1093; +WMCreatePoolResponse& WMCreatePoolResponse::operator=(const WMCreatePoolResponse& other1099) { + (void) other1099; return *this; } void WMCreatePoolResponse::printTo(std::ostream& out) const { @@ -28261,15 +28327,15 @@ void swap(WMAlterPoolRequest &a, WMAlterPoolRequest &b) { swap(a.__isset, b.__isset); } -WMAlterPoolRequest::WMAlterPoolRequest(const WMAlterPoolRequest& other1094) { - pool = other1094.pool; - poolPath = other1094.poolPath; - __isset = other1094.__isset; +WMAlterPoolRequest::WMAlterPoolRequest(const WMAlterPoolRequest& other1100) { + pool = other1100.pool; + poolPath = other1100.poolPath; + __isset = other1100.__isset; } -WMAlterPoolRequest& WMAlterPoolRequest::operator=(const WMAlterPoolRequest& other1095) { - pool = other1095.pool; - poolPath = other1095.poolPath; - __isset = other1095.__isset; +WMAlterPoolRequest& WMAlterPoolRequest::operator=(const WMAlterPoolRequest& other1101) { + pool = other1101.pool; + poolPath = other1101.poolPath; + __isset = other1101.__isset; return *this; } void WMAlterPoolRequest::printTo(std::ostream& out) const { @@ -28329,11 +28395,11 @@ void swap(WMAlterPoolResponse &a, WMAlterPoolResponse &b) { (void) b; } -WMAlterPoolResponse::WMAlterPoolResponse(const WMAlterPoolResponse& other1096) { - (void) other1096; +WMAlterPoolResponse::WMAlterPoolResponse(const WMAlterPoolResponse& other1102) { + (void) other1102; } -WMAlterPoolResponse& WMAlterPoolResponse::operator=(const WMAlterPoolResponse& other1097) { - (void) other1097; +WMAlterPoolResponse& WMAlterPoolResponse::operator=(const WMAlterPoolResponse& other1103) { + (void) other1103; return *this; } void WMAlterPoolResponse::printTo(std::ostream& out) const { @@ -28433,15 +28499,15 @@ void swap(WMDropPoolRequest &a, WMDropPoolRequest &b) { swap(a.__isset, b.__isset); } -WMDropPoolRequest::WMDropPoolRequest(const WMDropPoolRequest& other1098) { - resourcePlanName = other1098.resourcePlanName; - poolPath = other1098.poolPath; - __isset = other1098.__isset; +WMDropPoolRequest::WMDropPoolRequest(const WMDropPoolRequest& other1104) { + resourcePlanName = other1104.resourcePlanName; + poolPath = other1104.poolPath; + __isset = other1104.__isset; } -WMDropPoolRequest& WMDropPoolRequest::operator=(const WMDropPoolRequest& other1099) { - resourcePlanName = other1099.resourcePlanName; - poolPath = other1099.poolPath; - __isset = other1099.__isset; +WMDropPoolRequest& WMDropPoolRequest::operator=(const WMDropPoolRequest& other1105) { + resourcePlanName = other1105.resourcePlanName; + poolPath = other1105.poolPath; + __isset = other1105.__isset; return *this; } void WMDropPoolRequest::printTo(std::ostream& out) const { @@ -28501,11 +28567,11 @@ void swap(WMDropPoolResponse &a, WMDropPoolResponse &b) { (void) b; } -WMDropPoolResponse::WMDropPoolResponse(const WMDropPoolResponse& other1100) { - (void) other1100; +WMDropPoolResponse::WMDropPoolResponse(const WMDropPoolResponse& other1106) { + (void) other1106; } -WMDropPoolResponse& WMDropPoolResponse::operator=(const WMDropPoolResponse& other1101) { - (void) other1101; +WMDropPoolResponse& WMDropPoolResponse::operator=(const WMDropPoolResponse& other1107) { + (void) other1107; return *this; } void WMDropPoolResponse::printTo(std::ostream& out) const { @@ -28605,15 +28671,15 @@ void swap(WMCreateOrUpdateMappingRequest &a, WMCreateOrUpdateMappingRequest &b) swap(a.__isset, b.__isset); } -WMCreateOrUpdateMappingRequest::WMCreateOrUpdateMappingRequest(const WMCreateOrUpdateMappingRequest& other1102) { - mapping = other1102.mapping; - update = other1102.update; - __isset = other1102.__isset; +WMCreateOrUpdateMappingRequest::WMCreateOrUpdateMappingRequest(const WMCreateOrUpdateMappingRequest& other1108) { + mapping = other1108.mapping; + update = other1108.update; + __isset = other1108.__isset; } -WMCreateOrUpdateMappingRequest& WMCreateOrUpdateMappingRequest::operator=(const WMCreateOrUpdateMappingRequest& other1103) { - mapping = other1103.mapping; - update = other1103.update; - __isset = other1103.__isset; +WMCreateOrUpdateMappingRequest& WMCreateOrUpdateMappingRequest::operator=(const WMCreateOrUpdateMappingRequest& other1109) { + mapping = other1109.mapping; + update = other1109.update; + __isset = other1109.__isset; return *this; } void WMCreateOrUpdateMappingRequest::printTo(std::ostream& out) const { @@ -28673,11 +28739,11 @@ void swap(WMCreateOrUpdateMappingResponse &a, WMCreateOrUpdateMappingResponse &b (void) b; } -WMCreateOrUpdateMappingResponse::WMCreateOrUpdateMappingResponse(const WMCreateOrUpdateMappingResponse& other1104) { - (void) other1104; +WMCreateOrUpdateMappingResponse::WMCreateOrUpdateMappingResponse(const WMCreateOrUpdateMappingResponse& other1110) { + (void) other1110; } -WMCreateOrUpdateMappingResponse& WMCreateOrUpdateMappingResponse::operator=(const WMCreateOrUpdateMappingResponse& other1105) { - (void) other1105; +WMCreateOrUpdateMappingResponse& WMCreateOrUpdateMappingResponse::operator=(const WMCreateOrUpdateMappingResponse& other1111) { + (void) other1111; return *this; } void WMCreateOrUpdateMappingResponse::printTo(std::ostream& out) const { @@ -28758,13 +28824,13 @@ void swap(WMDropMappingRequest &a, WMDropMappingRequest &b) { swap(a.__isset, b.__isset); } -WMDropMappingRequest::WMDropMappingRequest(const WMDropMappingRequest& other1106) { - mapping = other1106.mapping; - __isset = other1106.__isset; +WMDropMappingRequest::WMDropMappingRequest(const WMDropMappingRequest& other1112) { + mapping = other1112.mapping; + __isset = other1112.__isset; } -WMDropMappingRequest& WMDropMappingRequest::operator=(const WMDropMappingRequest& other1107) { - mapping = other1107.mapping; - __isset = other1107.__isset; +WMDropMappingRequest& WMDropMappingRequest::operator=(const WMDropMappingRequest& other1113) { + mapping = other1113.mapping; + __isset = other1113.__isset; return *this; } void WMDropMappingRequest::printTo(std::ostream& out) const { @@ -28823,11 +28889,11 @@ void swap(WMDropMappingResponse &a, WMDropMappingResponse &b) { (void) b; } -WMDropMappingResponse::WMDropMappingResponse(const WMDropMappingResponse& other1108) { - (void) other1108; +WMDropMappingResponse::WMDropMappingResponse(const WMDropMappingResponse& other1114) { + (void) other1114; } -WMDropMappingResponse& WMDropMappingResponse::operator=(const WMDropMappingResponse& other1109) { - (void) other1109; +WMDropMappingResponse& WMDropMappingResponse::operator=(const WMDropMappingResponse& other1115) { + (void) other1115; return *this; } void WMDropMappingResponse::printTo(std::ostream& out) const { @@ -28965,19 +29031,19 @@ void swap(WMCreateOrDropTriggerToPoolMappingRequest &a, WMCreateOrDropTriggerToP swap(a.__isset, b.__isset); } -WMCreateOrDropTriggerToPoolMappingRequest::WMCreateOrDropTriggerToPoolMappingRequest(const WMCreateOrDropTriggerToPoolMappingRequest& other1110) { - resourcePlanName = other1110.resourcePlanName; - triggerName = other1110.triggerName; - poolPath = other1110.poolPath; - drop = other1110.drop; - __isset = other1110.__isset; +WMCreateOrDropTriggerToPoolMappingRequest::WMCreateOrDropTriggerToPoolMappingRequest(const WMCreateOrDropTriggerToPoolMappingRequest& other1116) { + resourcePlanName = other1116.resourcePlanName; + triggerName = other1116.triggerName; + poolPath = other1116.poolPath; + drop = other1116.drop; + __isset = other1116.__isset; } -WMCreateOrDropTriggerToPoolMappingRequest& WMCreateOrDropTriggerToPoolMappingRequest::operator=(const WMCreateOrDropTriggerToPoolMappingRequest& other1111) { - resourcePlanName = other1111.resourcePlanName; - triggerName = other1111.triggerName; - poolPath = other1111.poolPath; - drop = other1111.drop; - __isset = other1111.__isset; +WMCreateOrDropTriggerToPoolMappingRequest& WMCreateOrDropTriggerToPoolMappingRequest::operator=(const WMCreateOrDropTriggerToPoolMappingRequest& other1117) { + resourcePlanName = other1117.resourcePlanName; + triggerName = other1117.triggerName; + poolPath = other1117.poolPath; + drop = other1117.drop; + __isset = other1117.__isset; return *this; } void WMCreateOrDropTriggerToPoolMappingRequest::printTo(std::ostream& out) const { @@ -29039,11 +29105,11 @@ void swap(WMCreateOrDropTriggerToPoolMappingResponse &a, WMCreateOrDropTriggerTo (void) b; } -WMCreateOrDropTriggerToPoolMappingResponse::WMCreateOrDropTriggerToPoolMappingResponse(const WMCreateOrDropTriggerToPoolMappingResponse& other1112) { - (void) other1112; +WMCreateOrDropTriggerToPoolMappingResponse::WMCreateOrDropTriggerToPoolMappingResponse(const WMCreateOrDropTriggerToPoolMappingResponse& other1118) { + (void) other1118; } -WMCreateOrDropTriggerToPoolMappingResponse& WMCreateOrDropTriggerToPoolMappingResponse::operator=(const WMCreateOrDropTriggerToPoolMappingResponse& other1113) { - (void) other1113; +WMCreateOrDropTriggerToPoolMappingResponse& WMCreateOrDropTriggerToPoolMappingResponse::operator=(const WMCreateOrDropTriggerToPoolMappingResponse& other1119) { + (void) other1119; return *this; } void WMCreateOrDropTriggerToPoolMappingResponse::printTo(std::ostream& out) const { @@ -29118,9 +29184,9 @@ uint32_t ISchema::read(::apache::thrift::protocol::TProtocol* iprot) { { case 1: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1114; - xfer += iprot->readI32(ecast1114); - this->schemaType = (SchemaType::type)ecast1114; + int32_t ecast1120; + xfer += iprot->readI32(ecast1120); + this->schemaType = (SchemaType::type)ecast1120; this->__isset.schemaType = true; } else { xfer += iprot->skip(ftype); @@ -29152,9 +29218,9 @@ uint32_t ISchema::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 5: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1115; - xfer += iprot->readI32(ecast1115); - this->compatibility = (SchemaCompatibility::type)ecast1115; + int32_t ecast1121; + xfer += iprot->readI32(ecast1121); + this->compatibility = (SchemaCompatibility::type)ecast1121; this->__isset.compatibility = true; } else { xfer += iprot->skip(ftype); @@ -29162,9 +29228,9 @@ uint32_t ISchema::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 6: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1116; - xfer += iprot->readI32(ecast1116); - this->validationLevel = (SchemaValidation::type)ecast1116; + int32_t ecast1122; + xfer += iprot->readI32(ecast1122); + this->validationLevel = (SchemaValidation::type)ecast1122; this->__isset.validationLevel = true; } else { xfer += iprot->skip(ftype); @@ -29268,29 +29334,29 @@ void swap(ISchema &a, ISchema &b) { swap(a.__isset, b.__isset); } -ISchema::ISchema(const ISchema& other1117) { - schemaType = other1117.schemaType; - name = other1117.name; - catName = other1117.catName; - dbName = other1117.dbName; - compatibility = other1117.compatibility; - validationLevel = other1117.validationLevel; - canEvolve = other1117.canEvolve; - schemaGroup = other1117.schemaGroup; - description = other1117.description; - __isset = other1117.__isset; -} -ISchema& ISchema::operator=(const ISchema& other1118) { - schemaType = other1118.schemaType; - name = other1118.name; - catName = other1118.catName; - dbName = other1118.dbName; - compatibility = other1118.compatibility; - validationLevel = other1118.validationLevel; - canEvolve = other1118.canEvolve; - schemaGroup = other1118.schemaGroup; - description = other1118.description; - __isset = other1118.__isset; +ISchema::ISchema(const ISchema& other1123) { + schemaType = other1123.schemaType; + name = other1123.name; + catName = other1123.catName; + dbName = other1123.dbName; + compatibility = other1123.compatibility; + validationLevel = other1123.validationLevel; + canEvolve = other1123.canEvolve; + schemaGroup = other1123.schemaGroup; + description = other1123.description; + __isset = other1123.__isset; +} +ISchema& ISchema::operator=(const ISchema& other1124) { + schemaType = other1124.schemaType; + name = other1124.name; + catName = other1124.catName; + dbName = other1124.dbName; + compatibility = other1124.compatibility; + validationLevel = other1124.validationLevel; + canEvolve = other1124.canEvolve; + schemaGroup = other1124.schemaGroup; + description = other1124.description; + __isset = other1124.__isset; return *this; } void ISchema::printTo(std::ostream& out) const { @@ -29412,17 +29478,17 @@ void swap(ISchemaName &a, ISchemaName &b) { swap(a.__isset, b.__isset); } -ISchemaName::ISchemaName(const ISchemaName& other1119) { - catName = other1119.catName; - dbName = other1119.dbName; - schemaName = other1119.schemaName; - __isset = other1119.__isset; +ISchemaName::ISchemaName(const ISchemaName& other1125) { + catName = other1125.catName; + dbName = other1125.dbName; + schemaName = other1125.schemaName; + __isset = other1125.__isset; } -ISchemaName& ISchemaName::operator=(const ISchemaName& other1120) { - catName = other1120.catName; - dbName = other1120.dbName; - schemaName = other1120.schemaName; - __isset = other1120.__isset; +ISchemaName& ISchemaName::operator=(const ISchemaName& other1126) { + catName = other1126.catName; + dbName = other1126.dbName; + schemaName = other1126.schemaName; + __isset = other1126.__isset; return *this; } void ISchemaName::printTo(std::ostream& out) const { @@ -29521,15 +29587,15 @@ void swap(AlterISchemaRequest &a, AlterISchemaRequest &b) { swap(a.__isset, b.__isset); } -AlterISchemaRequest::AlterISchemaRequest(const AlterISchemaRequest& other1121) { - name = other1121.name; - newSchema = other1121.newSchema; - __isset = other1121.__isset; +AlterISchemaRequest::AlterISchemaRequest(const AlterISchemaRequest& other1127) { + name = other1127.name; + newSchema = other1127.newSchema; + __isset = other1127.__isset; } -AlterISchemaRequest& AlterISchemaRequest::operator=(const AlterISchemaRequest& other1122) { - name = other1122.name; - newSchema = other1122.newSchema; - __isset = other1122.__isset; +AlterISchemaRequest& AlterISchemaRequest::operator=(const AlterISchemaRequest& other1128) { + name = other1128.name; + newSchema = other1128.newSchema; + __isset = other1128.__isset; return *this; } void AlterISchemaRequest::printTo(std::ostream& out) const { @@ -29640,14 +29706,14 @@ uint32_t SchemaVersion::read(::apache::thrift::protocol::TProtocol* iprot) { if (ftype == ::apache::thrift::protocol::T_LIST) { { this->cols.clear(); - uint32_t _size1123; - ::apache::thrift::protocol::TType _etype1126; - xfer += iprot->readListBegin(_etype1126, _size1123); - this->cols.resize(_size1123); - uint32_t _i1127; - for (_i1127 = 0; _i1127 < _size1123; ++_i1127) + uint32_t _size1129; + ::apache::thrift::protocol::TType _etype1132; + xfer += iprot->readListBegin(_etype1132, _size1129); + this->cols.resize(_size1129); + uint32_t _i1133; + for (_i1133 = 0; _i1133 < _size1129; ++_i1133) { - xfer += this->cols[_i1127].read(iprot); + xfer += this->cols[_i1133].read(iprot); } xfer += iprot->readListEnd(); } @@ -29658,9 +29724,9 @@ uint32_t SchemaVersion::read(::apache::thrift::protocol::TProtocol* iprot) { break; case 5: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1128; - xfer += iprot->readI32(ecast1128); - this->state = (SchemaVersionState::type)ecast1128; + int32_t ecast1134; + xfer += iprot->readI32(ecast1134); + this->state = (SchemaVersionState::type)ecast1134; this->__isset.state = true; } else { xfer += iprot->skip(ftype); @@ -29738,10 +29804,10 @@ uint32_t SchemaVersion::write(::apache::thrift::protocol::TProtocol* oprot) cons xfer += oprot->writeFieldBegin("cols", ::apache::thrift::protocol::T_LIST, 4); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->cols.size())); - std::vector ::const_iterator _iter1129; - for (_iter1129 = this->cols.begin(); _iter1129 != this->cols.end(); ++_iter1129) + std::vector ::const_iterator _iter1135; + for (_iter1135 = this->cols.begin(); _iter1135 != this->cols.end(); ++_iter1135) { - xfer += (*_iter1129).write(oprot); + xfer += (*_iter1135).write(oprot); } xfer += oprot->writeListEnd(); } @@ -29797,31 +29863,31 @@ void swap(SchemaVersion &a, SchemaVersion &b) { swap(a.__isset, b.__isset); } -SchemaVersion::SchemaVersion(const SchemaVersion& other1130) { - schema = other1130.schema; - version = other1130.version; - createdAt = other1130.createdAt; - cols = other1130.cols; - state = other1130.state; - description = other1130.description; - schemaText = other1130.schemaText; - fingerprint = other1130.fingerprint; - name = other1130.name; - serDe = other1130.serDe; - __isset = other1130.__isset; -} -SchemaVersion& SchemaVersion::operator=(const SchemaVersion& other1131) { - schema = other1131.schema; - version = other1131.version; - createdAt = other1131.createdAt; - cols = other1131.cols; - state = other1131.state; - description = other1131.description; - schemaText = other1131.schemaText; - fingerprint = other1131.fingerprint; - name = other1131.name; - serDe = other1131.serDe; - __isset = other1131.__isset; +SchemaVersion::SchemaVersion(const SchemaVersion& other1136) { + schema = other1136.schema; + version = other1136.version; + createdAt = other1136.createdAt; + cols = other1136.cols; + state = other1136.state; + description = other1136.description; + schemaText = other1136.schemaText; + fingerprint = other1136.fingerprint; + name = other1136.name; + serDe = other1136.serDe; + __isset = other1136.__isset; +} +SchemaVersion& SchemaVersion::operator=(const SchemaVersion& other1137) { + schema = other1137.schema; + version = other1137.version; + createdAt = other1137.createdAt; + cols = other1137.cols; + state = other1137.state; + description = other1137.description; + schemaText = other1137.schemaText; + fingerprint = other1137.fingerprint; + name = other1137.name; + serDe = other1137.serDe; + __isset = other1137.__isset; return *this; } void SchemaVersion::printTo(std::ostream& out) const { @@ -29927,15 +29993,15 @@ void swap(SchemaVersionDescriptor &a, SchemaVersionDescriptor &b) { swap(a.__isset, b.__isset); } -SchemaVersionDescriptor::SchemaVersionDescriptor(const SchemaVersionDescriptor& other1132) { - schema = other1132.schema; - version = other1132.version; - __isset = other1132.__isset; +SchemaVersionDescriptor::SchemaVersionDescriptor(const SchemaVersionDescriptor& other1138) { + schema = other1138.schema; + version = other1138.version; + __isset = other1138.__isset; } -SchemaVersionDescriptor& SchemaVersionDescriptor::operator=(const SchemaVersionDescriptor& other1133) { - schema = other1133.schema; - version = other1133.version; - __isset = other1133.__isset; +SchemaVersionDescriptor& SchemaVersionDescriptor::operator=(const SchemaVersionDescriptor& other1139) { + schema = other1139.schema; + version = other1139.version; + __isset = other1139.__isset; return *this; } void SchemaVersionDescriptor::printTo(std::ostream& out) const { @@ -30056,17 +30122,17 @@ void swap(FindSchemasByColsRqst &a, FindSchemasByColsRqst &b) { swap(a.__isset, b.__isset); } -FindSchemasByColsRqst::FindSchemasByColsRqst(const FindSchemasByColsRqst& other1134) { - colName = other1134.colName; - colNamespace = other1134.colNamespace; - type = other1134.type; - __isset = other1134.__isset; +FindSchemasByColsRqst::FindSchemasByColsRqst(const FindSchemasByColsRqst& other1140) { + colName = other1140.colName; + colNamespace = other1140.colNamespace; + type = other1140.type; + __isset = other1140.__isset; } -FindSchemasByColsRqst& FindSchemasByColsRqst::operator=(const FindSchemasByColsRqst& other1135) { - colName = other1135.colName; - colNamespace = other1135.colNamespace; - type = other1135.type; - __isset = other1135.__isset; +FindSchemasByColsRqst& FindSchemasByColsRqst::operator=(const FindSchemasByColsRqst& other1141) { + colName = other1141.colName; + colNamespace = other1141.colNamespace; + type = other1141.type; + __isset = other1141.__isset; return *this; } void FindSchemasByColsRqst::printTo(std::ostream& out) const { @@ -30112,14 +30178,14 @@ uint32_t FindSchemasByColsResp::read(::apache::thrift::protocol::TProtocol* ipro if (ftype == ::apache::thrift::protocol::T_LIST) { { this->schemaVersions.clear(); - uint32_t _size1136; - ::apache::thrift::protocol::TType _etype1139; - xfer += iprot->readListBegin(_etype1139, _size1136); - this->schemaVersions.resize(_size1136); - uint32_t _i1140; - for (_i1140 = 0; _i1140 < _size1136; ++_i1140) + uint32_t _size1142; + ::apache::thrift::protocol::TType _etype1145; + xfer += iprot->readListBegin(_etype1145, _size1142); + this->schemaVersions.resize(_size1142); + uint32_t _i1146; + for (_i1146 = 0; _i1146 < _size1142; ++_i1146) { - xfer += this->schemaVersions[_i1140].read(iprot); + xfer += this->schemaVersions[_i1146].read(iprot); } xfer += iprot->readListEnd(); } @@ -30148,10 +30214,10 @@ uint32_t FindSchemasByColsResp::write(::apache::thrift::protocol::TProtocol* opr xfer += oprot->writeFieldBegin("schemaVersions", ::apache::thrift::protocol::T_LIST, 1); { xfer += oprot->writeListBegin(::apache::thrift::protocol::T_STRUCT, static_cast(this->schemaVersions.size())); - std::vector ::const_iterator _iter1141; - for (_iter1141 = this->schemaVersions.begin(); _iter1141 != this->schemaVersions.end(); ++_iter1141) + std::vector ::const_iterator _iter1147; + for (_iter1147 = this->schemaVersions.begin(); _iter1147 != this->schemaVersions.end(); ++_iter1147) { - xfer += (*_iter1141).write(oprot); + xfer += (*_iter1147).write(oprot); } xfer += oprot->writeListEnd(); } @@ -30168,13 +30234,13 @@ void swap(FindSchemasByColsResp &a, FindSchemasByColsResp &b) { swap(a.__isset, b.__isset); } -FindSchemasByColsResp::FindSchemasByColsResp(const FindSchemasByColsResp& other1142) { - schemaVersions = other1142.schemaVersions; - __isset = other1142.__isset; +FindSchemasByColsResp::FindSchemasByColsResp(const FindSchemasByColsResp& other1148) { + schemaVersions = other1148.schemaVersions; + __isset = other1148.__isset; } -FindSchemasByColsResp& FindSchemasByColsResp::operator=(const FindSchemasByColsResp& other1143) { - schemaVersions = other1143.schemaVersions; - __isset = other1143.__isset; +FindSchemasByColsResp& FindSchemasByColsResp::operator=(const FindSchemasByColsResp& other1149) { + schemaVersions = other1149.schemaVersions; + __isset = other1149.__isset; return *this; } void FindSchemasByColsResp::printTo(std::ostream& out) const { @@ -30271,15 +30337,15 @@ void swap(MapSchemaVersionToSerdeRequest &a, MapSchemaVersionToSerdeRequest &b) swap(a.__isset, b.__isset); } -MapSchemaVersionToSerdeRequest::MapSchemaVersionToSerdeRequest(const MapSchemaVersionToSerdeRequest& other1144) { - schemaVersion = other1144.schemaVersion; - serdeName = other1144.serdeName; - __isset = other1144.__isset; +MapSchemaVersionToSerdeRequest::MapSchemaVersionToSerdeRequest(const MapSchemaVersionToSerdeRequest& other1150) { + schemaVersion = other1150.schemaVersion; + serdeName = other1150.serdeName; + __isset = other1150.__isset; } -MapSchemaVersionToSerdeRequest& MapSchemaVersionToSerdeRequest::operator=(const MapSchemaVersionToSerdeRequest& other1145) { - schemaVersion = other1145.schemaVersion; - serdeName = other1145.serdeName; - __isset = other1145.__isset; +MapSchemaVersionToSerdeRequest& MapSchemaVersionToSerdeRequest::operator=(const MapSchemaVersionToSerdeRequest& other1151) { + schemaVersion = other1151.schemaVersion; + serdeName = other1151.serdeName; + __isset = other1151.__isset; return *this; } void MapSchemaVersionToSerdeRequest::printTo(std::ostream& out) const { @@ -30334,9 +30400,9 @@ uint32_t SetSchemaVersionStateRequest::read(::apache::thrift::protocol::TProtoco break; case 2: if (ftype == ::apache::thrift::protocol::T_I32) { - int32_t ecast1146; - xfer += iprot->readI32(ecast1146); - this->state = (SchemaVersionState::type)ecast1146; + int32_t ecast1152; + xfer += iprot->readI32(ecast1152); + this->state = (SchemaVersionState::type)ecast1152; this->__isset.state = true; } else { xfer += iprot->skip(ftype); @@ -30379,15 +30445,15 @@ void swap(SetSchemaVersionStateRequest &a, SetSchemaVersionStateRequest &b) { swap(a.__isset, b.__isset); } -SetSchemaVersionStateRequest::SetSchemaVersionStateRequest(const SetSchemaVersionStateRequest& other1147) { - schemaVersion = other1147.schemaVersion; - state = other1147.state; - __isset = other1147.__isset; +SetSchemaVersionStateRequest::SetSchemaVersionStateRequest(const SetSchemaVersionStateRequest& other1153) { + schemaVersion = other1153.schemaVersion; + state = other1153.state; + __isset = other1153.__isset; } -SetSchemaVersionStateRequest& SetSchemaVersionStateRequest::operator=(const SetSchemaVersionStateRequest& other1148) { - schemaVersion = other1148.schemaVersion; - state = other1148.state; - __isset = other1148.__isset; +SetSchemaVersionStateRequest& SetSchemaVersionStateRequest::operator=(const SetSchemaVersionStateRequest& other1154) { + schemaVersion = other1154.schemaVersion; + state = other1154.state; + __isset = other1154.__isset; return *this; } void SetSchemaVersionStateRequest::printTo(std::ostream& out) const { @@ -30468,13 +30534,13 @@ void swap(GetSerdeRequest &a, GetSerdeRequest &b) { swap(a.__isset, b.__isset); } -GetSerdeRequest::GetSerdeRequest(const GetSerdeRequest& other1149) { - serdeName = other1149.serdeName; - __isset = other1149.__isset; +GetSerdeRequest::GetSerdeRequest(const GetSerdeRequest& other1155) { + serdeName = other1155.serdeName; + __isset = other1155.__isset; } -GetSerdeRequest& GetSerdeRequest::operator=(const GetSerdeRequest& other1150) { - serdeName = other1150.serdeName; - __isset = other1150.__isset; +GetSerdeRequest& GetSerdeRequest::operator=(const GetSerdeRequest& other1156) { + serdeName = other1156.serdeName; + __isset = other1156.__isset; return *this; } void GetSerdeRequest::printTo(std::ostream& out) const { @@ -30554,13 +30620,13 @@ void swap(MetaException &a, MetaException &b) { swap(a.__isset, b.__isset); } -MetaException::MetaException(const MetaException& other1151) : TException() { - message = other1151.message; - __isset = other1151.__isset; +MetaException::MetaException(const MetaException& other1157) : TException() { + message = other1157.message; + __isset = other1157.__isset; } -MetaException& MetaException::operator=(const MetaException& other1152) { - message = other1152.message; - __isset = other1152.__isset; +MetaException& MetaException::operator=(const MetaException& other1158) { + message = other1158.message; + __isset = other1158.__isset; return *this; } void MetaException::printTo(std::ostream& out) const { @@ -30651,13 +30717,13 @@ void swap(UnknownTableException &a, UnknownTableException &b) { swap(a.__isset, b.__isset); } -UnknownTableException::UnknownTableException(const UnknownTableException& other1153) : TException() { - message = other1153.message; - __isset = other1153.__isset; +UnknownTableException::UnknownTableException(const UnknownTableException& other1159) : TException() { + message = other1159.message; + __isset = other1159.__isset; } -UnknownTableException& UnknownTableException::operator=(const UnknownTableException& other1154) { - message = other1154.message; - __isset = other1154.__isset; +UnknownTableException& UnknownTableException::operator=(const UnknownTableException& other1160) { + message = other1160.message; + __isset = other1160.__isset; return *this; } void UnknownTableException::printTo(std::ostream& out) const { @@ -30748,13 +30814,13 @@ void swap(UnknownDBException &a, UnknownDBException &b) { swap(a.__isset, b.__isset); } -UnknownDBException::UnknownDBException(const UnknownDBException& other1155) : TException() { - message = other1155.message; - __isset = other1155.__isset; +UnknownDBException::UnknownDBException(const UnknownDBException& other1161) : TException() { + message = other1161.message; + __isset = other1161.__isset; } -UnknownDBException& UnknownDBException::operator=(const UnknownDBException& other1156) { - message = other1156.message; - __isset = other1156.__isset; +UnknownDBException& UnknownDBException::operator=(const UnknownDBException& other1162) { + message = other1162.message; + __isset = other1162.__isset; return *this; } void UnknownDBException::printTo(std::ostream& out) const { @@ -30845,13 +30911,13 @@ void swap(AlreadyExistsException &a, AlreadyExistsException &b) { swap(a.__isset, b.__isset); } -AlreadyExistsException::AlreadyExistsException(const AlreadyExistsException& other1157) : TException() { - message = other1157.message; - __isset = other1157.__isset; +AlreadyExistsException::AlreadyExistsException(const AlreadyExistsException& other1163) : TException() { + message = other1163.message; + __isset = other1163.__isset; } -AlreadyExistsException& AlreadyExistsException::operator=(const AlreadyExistsException& other1158) { - message = other1158.message; - __isset = other1158.__isset; +AlreadyExistsException& AlreadyExistsException::operator=(const AlreadyExistsException& other1164) { + message = other1164.message; + __isset = other1164.__isset; return *this; } void AlreadyExistsException::printTo(std::ostream& out) const { @@ -30942,13 +31008,13 @@ void swap(InvalidPartitionException &a, InvalidPartitionException &b) { swap(a.__isset, b.__isset); } -InvalidPartitionException::InvalidPartitionException(const InvalidPartitionException& other1159) : TException() { - message = other1159.message; - __isset = other1159.__isset; +InvalidPartitionException::InvalidPartitionException(const InvalidPartitionException& other1165) : TException() { + message = other1165.message; + __isset = other1165.__isset; } -InvalidPartitionException& InvalidPartitionException::operator=(const InvalidPartitionException& other1160) { - message = other1160.message; - __isset = other1160.__isset; +InvalidPartitionException& InvalidPartitionException::operator=(const InvalidPartitionException& other1166) { + message = other1166.message; + __isset = other1166.__isset; return *this; } void InvalidPartitionException::printTo(std::ostream& out) const { @@ -31039,13 +31105,13 @@ void swap(UnknownPartitionException &a, UnknownPartitionException &b) { swap(a.__isset, b.__isset); } -UnknownPartitionException::UnknownPartitionException(const UnknownPartitionException& other1161) : TException() { - message = other1161.message; - __isset = other1161.__isset; +UnknownPartitionException::UnknownPartitionException(const UnknownPartitionException& other1167) : TException() { + message = other1167.message; + __isset = other1167.__isset; } -UnknownPartitionException& UnknownPartitionException::operator=(const UnknownPartitionException& other1162) { - message = other1162.message; - __isset = other1162.__isset; +UnknownPartitionException& UnknownPartitionException::operator=(const UnknownPartitionException& other1168) { + message = other1168.message; + __isset = other1168.__isset; return *this; } void UnknownPartitionException::printTo(std::ostream& out) const { @@ -31136,13 +31202,13 @@ void swap(InvalidObjectException &a, InvalidObjectException &b) { swap(a.__isset, b.__isset); } -InvalidObjectException::InvalidObjectException(const InvalidObjectException& other1163) : TException() { - message = other1163.message; - __isset = other1163.__isset; +InvalidObjectException::InvalidObjectException(const InvalidObjectException& other1169) : TException() { + message = other1169.message; + __isset = other1169.__isset; } -InvalidObjectException& InvalidObjectException::operator=(const InvalidObjectException& other1164) { - message = other1164.message; - __isset = other1164.__isset; +InvalidObjectException& InvalidObjectException::operator=(const InvalidObjectException& other1170) { + message = other1170.message; + __isset = other1170.__isset; return *this; } void InvalidObjectException::printTo(std::ostream& out) const { @@ -31233,13 +31299,13 @@ void swap(NoSuchObjectException &a, NoSuchObjectException &b) { swap(a.__isset, b.__isset); } -NoSuchObjectException::NoSuchObjectException(const NoSuchObjectException& other1165) : TException() { - message = other1165.message; - __isset = other1165.__isset; +NoSuchObjectException::NoSuchObjectException(const NoSuchObjectException& other1171) : TException() { + message = other1171.message; + __isset = other1171.__isset; } -NoSuchObjectException& NoSuchObjectException::operator=(const NoSuchObjectException& other1166) { - message = other1166.message; - __isset = other1166.__isset; +NoSuchObjectException& NoSuchObjectException::operator=(const NoSuchObjectException& other1172) { + message = other1172.message; + __isset = other1172.__isset; return *this; } void NoSuchObjectException::printTo(std::ostream& out) const { @@ -31330,13 +31396,13 @@ void swap(InvalidOperationException &a, InvalidOperationException &b) { swap(a.__isset, b.__isset); } -InvalidOperationException::InvalidOperationException(const InvalidOperationException& other1167) : TException() { - message = other1167.message; - __isset = other1167.__isset; +InvalidOperationException::InvalidOperationException(const InvalidOperationException& other1173) : TException() { + message = other1173.message; + __isset = other1173.__isset; } -InvalidOperationException& InvalidOperationException::operator=(const InvalidOperationException& other1168) { - message = other1168.message; - __isset = other1168.__isset; +InvalidOperationException& InvalidOperationException::operator=(const InvalidOperationException& other1174) { + message = other1174.message; + __isset = other1174.__isset; return *this; } void InvalidOperationException::printTo(std::ostream& out) const { @@ -31427,13 +31493,13 @@ void swap(ConfigValSecurityException &a, ConfigValSecurityException &b) { swap(a.__isset, b.__isset); } -ConfigValSecurityException::ConfigValSecurityException(const ConfigValSecurityException& other1169) : TException() { - message = other1169.message; - __isset = other1169.__isset; +ConfigValSecurityException::ConfigValSecurityException(const ConfigValSecurityException& other1175) : TException() { + message = other1175.message; + __isset = other1175.__isset; } -ConfigValSecurityException& ConfigValSecurityException::operator=(const ConfigValSecurityException& other1170) { - message = other1170.message; - __isset = other1170.__isset; +ConfigValSecurityException& ConfigValSecurityException::operator=(const ConfigValSecurityException& other1176) { + message = other1176.message; + __isset = other1176.__isset; return *this; } void ConfigValSecurityException::printTo(std::ostream& out) const { @@ -31524,13 +31590,13 @@ void swap(InvalidInputException &a, InvalidInputException &b) { swap(a.__isset, b.__isset); } -InvalidInputException::InvalidInputException(const InvalidInputException& other1171) : TException() { - message = other1171.message; - __isset = other1171.__isset; +InvalidInputException::InvalidInputException(const InvalidInputException& other1177) : TException() { + message = other1177.message; + __isset = other1177.__isset; } -InvalidInputException& InvalidInputException::operator=(const InvalidInputException& other1172) { - message = other1172.message; - __isset = other1172.__isset; +InvalidInputException& InvalidInputException::operator=(const InvalidInputException& other1178) { + message = other1178.message; + __isset = other1178.__isset; return *this; } void InvalidInputException::printTo(std::ostream& out) const { @@ -31621,13 +31687,13 @@ void swap(NoSuchTxnException &a, NoSuchTxnException &b) { swap(a.__isset, b.__isset); } -NoSuchTxnException::NoSuchTxnException(const NoSuchTxnException& other1173) : TException() { - message = other1173.message; - __isset = other1173.__isset; +NoSuchTxnException::NoSuchTxnException(const NoSuchTxnException& other1179) : TException() { + message = other1179.message; + __isset = other1179.__isset; } -NoSuchTxnException& NoSuchTxnException::operator=(const NoSuchTxnException& other1174) { - message = other1174.message; - __isset = other1174.__isset; +NoSuchTxnException& NoSuchTxnException::operator=(const NoSuchTxnException& other1180) { + message = other1180.message; + __isset = other1180.__isset; return *this; } void NoSuchTxnException::printTo(std::ostream& out) const { @@ -31718,13 +31784,13 @@ void swap(TxnAbortedException &a, TxnAbortedException &b) { swap(a.__isset, b.__isset); } -TxnAbortedException::TxnAbortedException(const TxnAbortedException& other1175) : TException() { - message = other1175.message; - __isset = other1175.__isset; +TxnAbortedException::TxnAbortedException(const TxnAbortedException& other1181) : TException() { + message = other1181.message; + __isset = other1181.__isset; } -TxnAbortedException& TxnAbortedException::operator=(const TxnAbortedException& other1176) { - message = other1176.message; - __isset = other1176.__isset; +TxnAbortedException& TxnAbortedException::operator=(const TxnAbortedException& other1182) { + message = other1182.message; + __isset = other1182.__isset; return *this; } void TxnAbortedException::printTo(std::ostream& out) const { @@ -31815,13 +31881,13 @@ void swap(TxnOpenException &a, TxnOpenException &b) { swap(a.__isset, b.__isset); } -TxnOpenException::TxnOpenException(const TxnOpenException& other1177) : TException() { - message = other1177.message; - __isset = other1177.__isset; +TxnOpenException::TxnOpenException(const TxnOpenException& other1183) : TException() { + message = other1183.message; + __isset = other1183.__isset; } -TxnOpenException& TxnOpenException::operator=(const TxnOpenException& other1178) { - message = other1178.message; - __isset = other1178.__isset; +TxnOpenException& TxnOpenException::operator=(const TxnOpenException& other1184) { + message = other1184.message; + __isset = other1184.__isset; return *this; } void TxnOpenException::printTo(std::ostream& out) const { @@ -31912,13 +31978,13 @@ void swap(NoSuchLockException &a, NoSuchLockException &b) { swap(a.__isset, b.__isset); } -NoSuchLockException::NoSuchLockException(const NoSuchLockException& other1179) : TException() { - message = other1179.message; - __isset = other1179.__isset; +NoSuchLockException::NoSuchLockException(const NoSuchLockException& other1185) : TException() { + message = other1185.message; + __isset = other1185.__isset; } -NoSuchLockException& NoSuchLockException::operator=(const NoSuchLockException& other1180) { - message = other1180.message; - __isset = other1180.__isset; +NoSuchLockException& NoSuchLockException::operator=(const NoSuchLockException& other1186) { + message = other1186.message; + __isset = other1186.__isset; return *this; } void NoSuchLockException::printTo(std::ostream& out) const { diff --git a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.h b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.h index 55a97de28f..2c95007daa 100644 --- a/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.h +++ b/standalone-metastore/src/gen/thrift/gen-cpp/hive_metastore_types.h @@ -7114,34 +7114,58 @@ inline std::ostream& operator<<(std::ostream& out, const GetValidWriteIdsRespons return out; } +typedef struct _AllocateTableWriteIdsRequest__isset { + _AllocateTableWriteIdsRequest__isset() : txnIds(false), replPolicy(false), srcTxnToWriteIdList(false) {} + bool txnIds :1; + bool replPolicy :1; + bool srcTxnToWriteIdList :1; +} _AllocateTableWriteIdsRequest__isset; class AllocateTableWriteIdsRequest { public: AllocateTableWriteIdsRequest(const AllocateTableWriteIdsRequest&); AllocateTableWriteIdsRequest& operator=(const AllocateTableWriteIdsRequest&); - AllocateTableWriteIdsRequest() : dbName(), tableName() { + AllocateTableWriteIdsRequest() : dbName(), tableName(), replPolicy() { } virtual ~AllocateTableWriteIdsRequest() throw(); - std::vector txnIds; std::string dbName; std::string tableName; + std::vector txnIds; + std::string replPolicy; + std::vector srcTxnToWriteIdList; - void __set_txnIds(const std::vector & val); + _AllocateTableWriteIdsRequest__isset __isset; void __set_dbName(const std::string& val); void __set_tableName(const std::string& val); + void __set_txnIds(const std::vector & val); + + void __set_replPolicy(const std::string& val); + + void __set_srcTxnToWriteIdList(const std::vector & val); + bool operator == (const AllocateTableWriteIdsRequest & rhs) const { - if (!(txnIds == rhs.txnIds)) - return false; if (!(dbName == rhs.dbName)) return false; if (!(tableName == rhs.tableName)) return false; + if (__isset.txnIds != rhs.__isset.txnIds) + return false; + else if (__isset.txnIds && !(txnIds == rhs.txnIds)) + return false; + if (__isset.replPolicy != rhs.__isset.replPolicy) + return false; + else if (__isset.replPolicy && !(replPolicy == rhs.replPolicy)) + return false; + if (__isset.srcTxnToWriteIdList != rhs.__isset.srcTxnToWriteIdList) + return false; + else if (__isset.srcTxnToWriteIdList && !(srcTxnToWriteIdList == rhs.srcTxnToWriteIdList)) + return false; return true; } bool operator != (const AllocateTableWriteIdsRequest &rhs) const { diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java index 3acdec5a40..64111296a6 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AddDynamicPartitions.java @@ -816,13 +816,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, AddDynamicPartition case 5: // PARTITIONNAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list684 = iprot.readListBegin(); - struct.partitionnames = new ArrayList(_list684.size); - String _elem685; - for (int _i686 = 0; _i686 < _list684.size; ++_i686) + org.apache.thrift.protocol.TList _list692 = iprot.readListBegin(); + struct.partitionnames = new ArrayList(_list692.size); + String _elem693; + for (int _i694 = 0; _i694 < _list692.size; ++_i694) { - _elem685 = iprot.readString(); - struct.partitionnames.add(_elem685); + _elem693 = iprot.readString(); + struct.partitionnames.add(_elem693); } iprot.readListEnd(); } @@ -872,9 +872,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, AddDynamicPartitio oprot.writeFieldBegin(PARTITIONNAMES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.partitionnames.size())); - for (String _iter687 : struct.partitionnames) + for (String _iter695 : struct.partitionnames) { - oprot.writeString(_iter687); + oprot.writeString(_iter695); } oprot.writeListEnd(); } @@ -910,9 +910,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AddDynamicPartition oprot.writeString(struct.tablename); { oprot.writeI32(struct.partitionnames.size()); - for (String _iter688 : struct.partitionnames) + for (String _iter696 : struct.partitionnames) { - oprot.writeString(_iter688); + oprot.writeString(_iter696); } } BitSet optionals = new BitSet(); @@ -937,13 +937,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, AddDynamicPartitions struct.tablename = iprot.readString(); struct.setTablenameIsSet(true); { - org.apache.thrift.protocol.TList _list689 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.partitionnames = new ArrayList(_list689.size); - String _elem690; - for (int _i691 = 0; _i691 < _list689.size; ++_i691) + org.apache.thrift.protocol.TList _list697 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.partitionnames = new ArrayList(_list697.size); + String _elem698; + for (int _i699 = 0; _i699 < _list697.size; ++_i699) { - _elem690 = iprot.readString(); - struct.partitionnames.add(_elem690); + _elem698 = iprot.readString(); + struct.partitionnames.add(_elem698); } } struct.setPartitionnamesIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java index 35ccef73a2..5a60e95517 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsRequest.java @@ -38,9 +38,11 @@ @org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class AllocateTableWriteIdsRequest implements org.apache.thrift.TBase, java.io.Serializable, Cloneable, Comparable { private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("AllocateTableWriteIdsRequest"); - private static final org.apache.thrift.protocol.TField TXN_IDS_FIELD_DESC = new org.apache.thrift.protocol.TField("txnIds", org.apache.thrift.protocol.TType.LIST, (short)1); - private static final org.apache.thrift.protocol.TField DB_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("dbName", org.apache.thrift.protocol.TType.STRING, (short)2); - private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)3); + private static final org.apache.thrift.protocol.TField DB_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("dbName", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField TABLE_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("tableName", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TXN_IDS_FIELD_DESC = new org.apache.thrift.protocol.TField("txnIds", org.apache.thrift.protocol.TType.LIST, (short)3); + private static final org.apache.thrift.protocol.TField REPL_POLICY_FIELD_DESC = new org.apache.thrift.protocol.TField("replPolicy", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField SRC_TXN_TO_WRITE_ID_LIST_FIELD_DESC = new org.apache.thrift.protocol.TField("srcTxnToWriteIdList", org.apache.thrift.protocol.TType.LIST, (short)5); private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>(); static { @@ -48,15 +50,19 @@ schemes.put(TupleScheme.class, new AllocateTableWriteIdsRequestTupleSchemeFactory()); } - private List txnIds; // required private String dbName; // required private String tableName; // required + private List txnIds; // optional + private String replPolicy; // optional + private List srcTxnToWriteIdList; // optional /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ public enum _Fields implements org.apache.thrift.TFieldIdEnum { - TXN_IDS((short)1, "txnIds"), - DB_NAME((short)2, "dbName"), - TABLE_NAME((short)3, "tableName"); + DB_NAME((short)1, "dbName"), + TABLE_NAME((short)2, "tableName"), + TXN_IDS((short)3, "txnIds"), + REPL_POLICY((short)4, "replPolicy"), + SRC_TXN_TO_WRITE_ID_LIST((short)5, "srcTxnToWriteIdList"); private static final Map byName = new HashMap(); @@ -71,12 +77,16 @@ */ public static _Fields findByThriftId(int fieldId) { switch(fieldId) { - case 1: // TXN_IDS - return TXN_IDS; - case 2: // DB_NAME + case 1: // DB_NAME return DB_NAME; - case 3: // TABLE_NAME + case 2: // TABLE_NAME return TABLE_NAME; + case 3: // TXN_IDS + return TXN_IDS; + case 4: // REPL_POLICY + return REPL_POLICY; + case 5: // SRC_TXN_TO_WRITE_ID_LIST + return SRC_TXN_TO_WRITE_ID_LIST; default: return null; } @@ -117,16 +127,22 @@ public String getFieldName() { } // isset id assignments + private static final _Fields optionals[] = {_Fields.TXN_IDS,_Fields.REPL_POLICY,_Fields.SRC_TXN_TO_WRITE_ID_LIST}; public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; static { Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); - tmpMap.put(_Fields.TXN_IDS, new org.apache.thrift.meta_data.FieldMetaData("txnIds", org.apache.thrift.TFieldRequirementType.REQUIRED, - new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, - new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); tmpMap.put(_Fields.DB_NAME, new org.apache.thrift.meta_data.FieldMetaData("dbName", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); tmpMap.put(_Fields.TABLE_NAME, new org.apache.thrift.meta_data.FieldMetaData("tableName", org.apache.thrift.TFieldRequirementType.REQUIRED, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TXN_IDS, new org.apache.thrift.meta_data.FieldMetaData("txnIds", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64)))); + tmpMap.put(_Fields.REPL_POLICY, new org.apache.thrift.meta_data.FieldMetaData("replPolicy", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.SRC_TXN_TO_WRITE_ID_LIST, new org.apache.thrift.meta_data.FieldMetaData("srcTxnToWriteIdList", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT , "TxnToWriteId")))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(AllocateTableWriteIdsRequest.class, metaDataMap); } @@ -135,12 +151,10 @@ public AllocateTableWriteIdsRequest() { } public AllocateTableWriteIdsRequest( - List txnIds, String dbName, String tableName) { this(); - this.txnIds = txnIds; this.dbName = dbName; this.tableName = tableName; } @@ -149,16 +163,26 @@ public AllocateTableWriteIdsRequest( * Performs a deep copy on other. */ public AllocateTableWriteIdsRequest(AllocateTableWriteIdsRequest other) { - if (other.isSetTxnIds()) { - List __this__txnIds = new ArrayList(other.txnIds); - this.txnIds = __this__txnIds; - } if (other.isSetDbName()) { this.dbName = other.dbName; } if (other.isSetTableName()) { this.tableName = other.tableName; } + if (other.isSetTxnIds()) { + List __this__txnIds = new ArrayList(other.txnIds); + this.txnIds = __this__txnIds; + } + if (other.isSetReplPolicy()) { + this.replPolicy = other.replPolicy; + } + if (other.isSetSrcTxnToWriteIdList()) { + List __this__srcTxnToWriteIdList = new ArrayList(other.srcTxnToWriteIdList.size()); + for (TxnToWriteId other_element : other.srcTxnToWriteIdList) { + __this__srcTxnToWriteIdList.add(other_element); + } + this.srcTxnToWriteIdList = __this__srcTxnToWriteIdList; + } } public AllocateTableWriteIdsRequest deepCopy() { @@ -167,11 +191,59 @@ public AllocateTableWriteIdsRequest deepCopy() { @Override public void clear() { + this.dbName = null; + this.tableName = null; this.txnIds = null; + this.replPolicy = null; + this.srcTxnToWriteIdList = null; + } + + public String getDbName() { + return this.dbName; + } + + public void setDbName(String dbName) { + this.dbName = dbName; + } + + public void unsetDbName() { this.dbName = null; + } + + /** Returns true if field dbName is set (has been assigned a value) and false otherwise */ + public boolean isSetDbName() { + return this.dbName != null; + } + + public void setDbNameIsSet(boolean value) { + if (!value) { + this.dbName = null; + } + } + + public String getTableName() { + return this.tableName; + } + + public void setTableName(String tableName) { + this.tableName = tableName; + } + + public void unsetTableName() { this.tableName = null; } + /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ + public boolean isSetTableName() { + return this.tableName != null; + } + + public void setTableNameIsSet(boolean value) { + if (!value) { + this.tableName = null; + } + } + public int getTxnIdsSize() { return (this.txnIds == null) ? 0 : this.txnIds.size(); } @@ -210,54 +282,85 @@ public void setTxnIdsIsSet(boolean value) { } } - public String getDbName() { - return this.dbName; + public String getReplPolicy() { + return this.replPolicy; } - public void setDbName(String dbName) { - this.dbName = dbName; + public void setReplPolicy(String replPolicy) { + this.replPolicy = replPolicy; } - public void unsetDbName() { - this.dbName = null; + public void unsetReplPolicy() { + this.replPolicy = null; } - /** Returns true if field dbName is set (has been assigned a value) and false otherwise */ - public boolean isSetDbName() { - return this.dbName != null; + /** Returns true if field replPolicy is set (has been assigned a value) and false otherwise */ + public boolean isSetReplPolicy() { + return this.replPolicy != null; } - public void setDbNameIsSet(boolean value) { + public void setReplPolicyIsSet(boolean value) { if (!value) { - this.dbName = null; + this.replPolicy = null; } } - public String getTableName() { - return this.tableName; + public int getSrcTxnToWriteIdListSize() { + return (this.srcTxnToWriteIdList == null) ? 0 : this.srcTxnToWriteIdList.size(); } - public void setTableName(String tableName) { - this.tableName = tableName; + public java.util.Iterator getSrcTxnToWriteIdListIterator() { + return (this.srcTxnToWriteIdList == null) ? null : this.srcTxnToWriteIdList.iterator(); } - public void unsetTableName() { - this.tableName = null; + public void addToSrcTxnToWriteIdList(TxnToWriteId elem) { + if (this.srcTxnToWriteIdList == null) { + this.srcTxnToWriteIdList = new ArrayList(); + } + this.srcTxnToWriteIdList.add(elem); } - /** Returns true if field tableName is set (has been assigned a value) and false otherwise */ - public boolean isSetTableName() { - return this.tableName != null; + public List getSrcTxnToWriteIdList() { + return this.srcTxnToWriteIdList; } - public void setTableNameIsSet(boolean value) { + public void setSrcTxnToWriteIdList(List srcTxnToWriteIdList) { + this.srcTxnToWriteIdList = srcTxnToWriteIdList; + } + + public void unsetSrcTxnToWriteIdList() { + this.srcTxnToWriteIdList = null; + } + + /** Returns true if field srcTxnToWriteIdList is set (has been assigned a value) and false otherwise */ + public boolean isSetSrcTxnToWriteIdList() { + return this.srcTxnToWriteIdList != null; + } + + public void setSrcTxnToWriteIdListIsSet(boolean value) { if (!value) { - this.tableName = null; + this.srcTxnToWriteIdList = null; } } public void setFieldValue(_Fields field, Object value) { switch (field) { + case DB_NAME: + if (value == null) { + unsetDbName(); + } else { + setDbName((String)value); + } + break; + + case TABLE_NAME: + if (value == null) { + unsetTableName(); + } else { + setTableName((String)value); + } + break; + case TXN_IDS: if (value == null) { unsetTxnIds(); @@ -266,19 +369,19 @@ public void setFieldValue(_Fields field, Object value) { } break; - case DB_NAME: + case REPL_POLICY: if (value == null) { - unsetDbName(); + unsetReplPolicy(); } else { - setDbName((String)value); + setReplPolicy((String)value); } break; - case TABLE_NAME: + case SRC_TXN_TO_WRITE_ID_LIST: if (value == null) { - unsetTableName(); + unsetSrcTxnToWriteIdList(); } else { - setTableName((String)value); + setSrcTxnToWriteIdList((List)value); } break; @@ -287,15 +390,21 @@ public void setFieldValue(_Fields field, Object value) { public Object getFieldValue(_Fields field) { switch (field) { - case TXN_IDS: - return getTxnIds(); - case DB_NAME: return getDbName(); case TABLE_NAME: return getTableName(); + case TXN_IDS: + return getTxnIds(); + + case REPL_POLICY: + return getReplPolicy(); + + case SRC_TXN_TO_WRITE_ID_LIST: + return getSrcTxnToWriteIdList(); + } throw new IllegalStateException(); } @@ -307,12 +416,16 @@ public boolean isSet(_Fields field) { } switch (field) { - case TXN_IDS: - return isSetTxnIds(); case DB_NAME: return isSetDbName(); case TABLE_NAME: return isSetTableName(); + case TXN_IDS: + return isSetTxnIds(); + case REPL_POLICY: + return isSetReplPolicy(); + case SRC_TXN_TO_WRITE_ID_LIST: + return isSetSrcTxnToWriteIdList(); } throw new IllegalStateException(); } @@ -330,15 +443,6 @@ public boolean equals(AllocateTableWriteIdsRequest that) { if (that == null) return false; - boolean this_present_txnIds = true && this.isSetTxnIds(); - boolean that_present_txnIds = true && that.isSetTxnIds(); - if (this_present_txnIds || that_present_txnIds) { - if (!(this_present_txnIds && that_present_txnIds)) - return false; - if (!this.txnIds.equals(that.txnIds)) - return false; - } - boolean this_present_dbName = true && this.isSetDbName(); boolean that_present_dbName = true && that.isSetDbName(); if (this_present_dbName || that_present_dbName) { @@ -357,6 +461,33 @@ public boolean equals(AllocateTableWriteIdsRequest that) { return false; } + boolean this_present_txnIds = true && this.isSetTxnIds(); + boolean that_present_txnIds = true && that.isSetTxnIds(); + if (this_present_txnIds || that_present_txnIds) { + if (!(this_present_txnIds && that_present_txnIds)) + return false; + if (!this.txnIds.equals(that.txnIds)) + return false; + } + + boolean this_present_replPolicy = true && this.isSetReplPolicy(); + boolean that_present_replPolicy = true && that.isSetReplPolicy(); + if (this_present_replPolicy || that_present_replPolicy) { + if (!(this_present_replPolicy && that_present_replPolicy)) + return false; + if (!this.replPolicy.equals(that.replPolicy)) + return false; + } + + boolean this_present_srcTxnToWriteIdList = true && this.isSetSrcTxnToWriteIdList(); + boolean that_present_srcTxnToWriteIdList = true && that.isSetSrcTxnToWriteIdList(); + if (this_present_srcTxnToWriteIdList || that_present_srcTxnToWriteIdList) { + if (!(this_present_srcTxnToWriteIdList && that_present_srcTxnToWriteIdList)) + return false; + if (!this.srcTxnToWriteIdList.equals(that.srcTxnToWriteIdList)) + return false; + } + return true; } @@ -364,11 +495,6 @@ public boolean equals(AllocateTableWriteIdsRequest that) { public int hashCode() { List list = new ArrayList(); - boolean present_txnIds = true && (isSetTxnIds()); - list.add(present_txnIds); - if (present_txnIds) - list.add(txnIds); - boolean present_dbName = true && (isSetDbName()); list.add(present_dbName); if (present_dbName) @@ -379,6 +505,21 @@ public int hashCode() { if (present_tableName) list.add(tableName); + boolean present_txnIds = true && (isSetTxnIds()); + list.add(present_txnIds); + if (present_txnIds) + list.add(txnIds); + + boolean present_replPolicy = true && (isSetReplPolicy()); + list.add(present_replPolicy); + if (present_replPolicy) + list.add(replPolicy); + + boolean present_srcTxnToWriteIdList = true && (isSetSrcTxnToWriteIdList()); + list.add(present_srcTxnToWriteIdList); + if (present_srcTxnToWriteIdList) + list.add(srcTxnToWriteIdList); + return list.hashCode(); } @@ -390,6 +531,26 @@ public int compareTo(AllocateTableWriteIdsRequest other) { int lastComparison = 0; + lastComparison = Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetDbName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.dbName, other.dbName); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetTableName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); + if (lastComparison != 0) { + return lastComparison; + } + } lastComparison = Boolean.valueOf(isSetTxnIds()).compareTo(other.isSetTxnIds()); if (lastComparison != 0) { return lastComparison; @@ -400,22 +561,22 @@ public int compareTo(AllocateTableWriteIdsRequest other) { return lastComparison; } } - lastComparison = Boolean.valueOf(isSetDbName()).compareTo(other.isSetDbName()); + lastComparison = Boolean.valueOf(isSetReplPolicy()).compareTo(other.isSetReplPolicy()); if (lastComparison != 0) { return lastComparison; } - if (isSetDbName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.dbName, other.dbName); + if (isSetReplPolicy()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.replPolicy, other.replPolicy); if (lastComparison != 0) { return lastComparison; } } - lastComparison = Boolean.valueOf(isSetTableName()).compareTo(other.isSetTableName()); + lastComparison = Boolean.valueOf(isSetSrcTxnToWriteIdList()).compareTo(other.isSetSrcTxnToWriteIdList()); if (lastComparison != 0) { return lastComparison; } - if (isSetTableName()) { - lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.tableName, other.tableName); + if (isSetSrcTxnToWriteIdList()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.srcTxnToWriteIdList, other.srcTxnToWriteIdList); if (lastComparison != 0) { return lastComparison; } @@ -440,14 +601,6 @@ public String toString() { StringBuilder sb = new StringBuilder("AllocateTableWriteIdsRequest("); boolean first = true; - sb.append("txnIds:"); - if (this.txnIds == null) { - sb.append("null"); - } else { - sb.append(this.txnIds); - } - first = false; - if (!first) sb.append(", "); sb.append("dbName:"); if (this.dbName == null) { sb.append("null"); @@ -463,16 +616,42 @@ public String toString() { sb.append(this.tableName); } first = false; + if (isSetTxnIds()) { + if (!first) sb.append(", "); + sb.append("txnIds:"); + if (this.txnIds == null) { + sb.append("null"); + } else { + sb.append(this.txnIds); + } + first = false; + } + if (isSetReplPolicy()) { + if (!first) sb.append(", "); + sb.append("replPolicy:"); + if (this.replPolicy == null) { + sb.append("null"); + } else { + sb.append(this.replPolicy); + } + first = false; + } + if (isSetSrcTxnToWriteIdList()) { + if (!first) sb.append(", "); + sb.append("srcTxnToWriteIdList:"); + if (this.srcTxnToWriteIdList == null) { + sb.append("null"); + } else { + sb.append(this.srcTxnToWriteIdList); + } + first = false; + } sb.append(")"); return sb.toString(); } public void validate() throws org.apache.thrift.TException { // check for required fields - if (!isSetTxnIds()) { - throw new org.apache.thrift.protocol.TProtocolException("Required field 'txnIds' is unset! Struct:" + toString()); - } - if (!isSetDbName()) { throw new org.apache.thrift.protocol.TProtocolException("Required field 'dbName' is unset! Struct:" + toString()); } @@ -518,7 +697,23 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, AllocateTableWriteI break; } switch (schemeField.id) { - case 1: // TXN_IDS + case 1: // DB_NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.dbName = iprot.readString(); + struct.setDbNameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // TABLE_NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.tableName = iprot.readString(); + struct.setTableNameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // TXN_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { org.apache.thrift.protocol.TList _list618 = iprot.readListBegin(); @@ -536,18 +731,29 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, AllocateTableWriteI org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 2: // DB_NAME + case 4: // REPL_POLICY if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.dbName = iprot.readString(); - struct.setDbNameIsSet(true); + struct.replPolicy = iprot.readString(); + struct.setReplPolicyIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; - case 3: // TABLE_NAME - if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { - struct.tableName = iprot.readString(); - struct.setTableNameIsSet(true); + case 5: // SRC_TXN_TO_WRITE_ID_LIST + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list621 = iprot.readListBegin(); + struct.srcTxnToWriteIdList = new ArrayList(_list621.size); + TxnToWriteId _elem622; + for (int _i623 = 0; _i623 < _list621.size; ++_i623) + { + _elem622 = new TxnToWriteId(); + _elem622.read(iprot); + struct.srcTxnToWriteIdList.add(_elem622); + } + iprot.readListEnd(); + } + struct.setSrcTxnToWriteIdListIsSet(true); } else { org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -565,18 +771,6 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, AllocateTableWrite struct.validate(); oprot.writeStructBegin(STRUCT_DESC); - if (struct.txnIds != null) { - oprot.writeFieldBegin(TXN_IDS_FIELD_DESC); - { - oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.txnIds.size())); - for (long _iter621 : struct.txnIds) - { - oprot.writeI64(_iter621); - } - oprot.writeListEnd(); - } - oprot.writeFieldEnd(); - } if (struct.dbName != null) { oprot.writeFieldBegin(DB_NAME_FIELD_DESC); oprot.writeString(struct.dbName); @@ -587,6 +781,41 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, AllocateTableWrite oprot.writeString(struct.tableName); oprot.writeFieldEnd(); } + if (struct.txnIds != null) { + if (struct.isSetTxnIds()) { + oprot.writeFieldBegin(TXN_IDS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.txnIds.size())); + for (long _iter624 : struct.txnIds) + { + oprot.writeI64(_iter624); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + } + if (struct.replPolicy != null) { + if (struct.isSetReplPolicy()) { + oprot.writeFieldBegin(REPL_POLICY_FIELD_DESC); + oprot.writeString(struct.replPolicy); + oprot.writeFieldEnd(); + } + } + if (struct.srcTxnToWriteIdList != null) { + if (struct.isSetSrcTxnToWriteIdList()) { + oprot.writeFieldBegin(SRC_TXN_TO_WRITE_ID_LIST_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.srcTxnToWriteIdList.size())); + for (TxnToWriteId _iter625 : struct.srcTxnToWriteIdList) + { + _iter625.write(oprot); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + } oprot.writeFieldStop(); oprot.writeStructEnd(); } @@ -604,35 +833,81 @@ public AllocateTableWriteIdsRequestTupleScheme getScheme() { @Override public void write(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteIdsRequest struct) throws org.apache.thrift.TException { TTupleProtocol oprot = (TTupleProtocol) prot; - { - oprot.writeI32(struct.txnIds.size()); - for (long _iter622 : struct.txnIds) + oprot.writeString(struct.dbName); + oprot.writeString(struct.tableName); + BitSet optionals = new BitSet(); + if (struct.isSetTxnIds()) { + optionals.set(0); + } + if (struct.isSetReplPolicy()) { + optionals.set(1); + } + if (struct.isSetSrcTxnToWriteIdList()) { + optionals.set(2); + } + oprot.writeBitSet(optionals, 3); + if (struct.isSetTxnIds()) { { - oprot.writeI64(_iter622); + oprot.writeI32(struct.txnIds.size()); + for (long _iter626 : struct.txnIds) + { + oprot.writeI64(_iter626); + } + } + } + if (struct.isSetReplPolicy()) { + oprot.writeString(struct.replPolicy); + } + if (struct.isSetSrcTxnToWriteIdList()) { + { + oprot.writeI32(struct.srcTxnToWriteIdList.size()); + for (TxnToWriteId _iter627 : struct.srcTxnToWriteIdList) + { + _iter627.write(oprot); + } } } - oprot.writeString(struct.dbName); - oprot.writeString(struct.tableName); } @Override public void read(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteIdsRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; - { - org.apache.thrift.protocol.TList _list623 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.txnIds = new ArrayList(_list623.size); - long _elem624; - for (int _i625 = 0; _i625 < _list623.size; ++_i625) - { - _elem624 = iprot.readI64(); - struct.txnIds.add(_elem624); - } - } - struct.setTxnIdsIsSet(true); struct.dbName = iprot.readString(); struct.setDbNameIsSet(true); struct.tableName = iprot.readString(); struct.setTableNameIsSet(true); + BitSet incoming = iprot.readBitSet(3); + if (incoming.get(0)) { + { + org.apache.thrift.protocol.TList _list628 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.txnIds = new ArrayList(_list628.size); + long _elem629; + for (int _i630 = 0; _i630 < _list628.size; ++_i630) + { + _elem629 = iprot.readI64(); + struct.txnIds.add(_elem629); + } + } + struct.setTxnIdsIsSet(true); + } + if (incoming.get(1)) { + struct.replPolicy = iprot.readString(); + struct.setReplPolicyIsSet(true); + } + if (incoming.get(2)) { + { + org.apache.thrift.protocol.TList _list631 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.srcTxnToWriteIdList = new ArrayList(_list631.size); + TxnToWriteId _elem632; + for (int _i633 = 0; _i633 < _list631.size; ++_i633) + { + _elem632 = new TxnToWriteId(); + _elem632.read(iprot); + struct.srcTxnToWriteIdList.add(_elem632); + } + } + struct.setSrcTxnToWriteIdListIsSet(true); + } } } diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java index 35cbca3118..7bba38c4b4 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/AllocateTableWriteIdsResponse.java @@ -354,14 +354,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, AllocateTableWriteI case 1: // TXN_TO_WRITE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list626 = iprot.readListBegin(); - struct.txnToWriteIds = new ArrayList(_list626.size); - TxnToWriteId _elem627; - for (int _i628 = 0; _i628 < _list626.size; ++_i628) + org.apache.thrift.protocol.TList _list634 = iprot.readListBegin(); + struct.txnToWriteIds = new ArrayList(_list634.size); + TxnToWriteId _elem635; + for (int _i636 = 0; _i636 < _list634.size; ++_i636) { - _elem627 = new TxnToWriteId(); - _elem627.read(iprot); - struct.txnToWriteIds.add(_elem627); + _elem635 = new TxnToWriteId(); + _elem635.read(iprot); + struct.txnToWriteIds.add(_elem635); } iprot.readListEnd(); } @@ -387,9 +387,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, AllocateTableWrite oprot.writeFieldBegin(TXN_TO_WRITE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.txnToWriteIds.size())); - for (TxnToWriteId _iter629 : struct.txnToWriteIds) + for (TxnToWriteId _iter637 : struct.txnToWriteIds) { - _iter629.write(oprot); + _iter637.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteI TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.txnToWriteIds.size()); - for (TxnToWriteId _iter630 : struct.txnToWriteIds) + for (TxnToWriteId _iter638 : struct.txnToWriteIds) { - _iter630.write(oprot); + _iter638.write(oprot); } } } @@ -425,14 +425,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteI public void read(org.apache.thrift.protocol.TProtocol prot, AllocateTableWriteIdsResponse struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list631 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.txnToWriteIds = new ArrayList(_list631.size); - TxnToWriteId _elem632; - for (int _i633 = 0; _i633 < _list631.size; ++_i633) + org.apache.thrift.protocol.TList _list639 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.txnToWriteIds = new ArrayList(_list639.size); + TxnToWriteId _elem640; + for (int _i641 = 0; _i641 < _list639.size; ++_i641) { - _elem632 = new TxnToWriteId(); - _elem632.read(iprot); - struct.txnToWriteIds.add(_elem632); + _elem640 = new TxnToWriteId(); + _elem640.read(iprot); + struct.txnToWriteIds.add(_elem640); } } struct.setTxnToWriteIdsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java index 2162163249..7db0801e23 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClearFileMetadataRequest.java @@ -351,13 +351,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, ClearFileMetadataRe case 1: // FILE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list784 = iprot.readListBegin(); - struct.fileIds = new ArrayList(_list784.size); - long _elem785; - for (int _i786 = 0; _i786 < _list784.size; ++_i786) + org.apache.thrift.protocol.TList _list792 = iprot.readListBegin(); + struct.fileIds = new ArrayList(_list792.size); + long _elem793; + for (int _i794 = 0; _i794 < _list792.size; ++_i794) { - _elem785 = iprot.readI64(); - struct.fileIds.add(_elem785); + _elem793 = iprot.readI64(); + struct.fileIds.add(_elem793); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, ClearFileMetadataR oprot.writeFieldBegin(FILE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.fileIds.size())); - for (long _iter787 : struct.fileIds) + for (long _iter795 : struct.fileIds) { - oprot.writeI64(_iter787); + oprot.writeI64(_iter795); } oprot.writeListEnd(); } @@ -410,9 +410,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ClearFileMetadataRe TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.fileIds.size()); - for (long _iter788 : struct.fileIds) + for (long _iter796 : struct.fileIds) { - oprot.writeI64(_iter788); + oprot.writeI64(_iter796); } } } @@ -421,13 +421,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ClearFileMetadataRe public void read(org.apache.thrift.protocol.TProtocol prot, ClearFileMetadataRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list789 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.fileIds = new ArrayList(_list789.size); - long _elem790; - for (int _i791 = 0; _i791 < _list789.size; ++_i791) + org.apache.thrift.protocol.TList _list797 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.fileIds = new ArrayList(_list797.size); + long _elem798; + for (int _i799 = 0; _i799 < _list797.size; ++_i799) { - _elem790 = iprot.readI64(); - struct.fileIds.add(_elem790); + _elem798 = iprot.readI64(); + struct.fileIds.add(_elem798); } } struct.setFileIdsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java index 65e9e4c7db..a83c0bbcb8 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ClientCapabilities.java @@ -354,13 +354,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, ClientCapabilities case 1: // VALUES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list800 = iprot.readListBegin(); - struct.values = new ArrayList(_list800.size); - ClientCapability _elem801; - for (int _i802 = 0; _i802 < _list800.size; ++_i802) + org.apache.thrift.protocol.TList _list808 = iprot.readListBegin(); + struct.values = new ArrayList(_list808.size); + ClientCapability _elem809; + for (int _i810 = 0; _i810 < _list808.size; ++_i810) { - _elem801 = org.apache.hadoop.hive.metastore.api.ClientCapability.findByValue(iprot.readI32()); - struct.values.add(_elem801); + _elem809 = org.apache.hadoop.hive.metastore.api.ClientCapability.findByValue(iprot.readI32()); + struct.values.add(_elem809); } iprot.readListEnd(); } @@ -386,9 +386,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, ClientCapabilities oprot.writeFieldBegin(VALUES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, struct.values.size())); - for (ClientCapability _iter803 : struct.values) + for (ClientCapability _iter811 : struct.values) { - oprot.writeI32(_iter803.getValue()); + oprot.writeI32(_iter811.getValue()); } oprot.writeListEnd(); } @@ -413,9 +413,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ClientCapabilities TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.values.size()); - for (ClientCapability _iter804 : struct.values) + for (ClientCapability _iter812 : struct.values) { - oprot.writeI32(_iter804.getValue()); + oprot.writeI32(_iter812.getValue()); } } } @@ -424,13 +424,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ClientCapabilities public void read(org.apache.thrift.protocol.TProtocol prot, ClientCapabilities struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list805 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); - struct.values = new ArrayList(_list805.size); - ClientCapability _elem806; - for (int _i807 = 0; _i807 < _list805.size; ++_i807) + org.apache.thrift.protocol.TList _list813 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I32, iprot.readI32()); + struct.values = new ArrayList(_list813.size); + ClientCapability _elem814; + for (int _i815 = 0; _i815 < _list813.size; ++_i815) { - _elem806 = org.apache.hadoop.hive.metastore.api.ClientCapability.findByValue(iprot.readI32()); - struct.values.add(_elem806); + _elem814 = org.apache.hadoop.hive.metastore.api.ClientCapability.findByValue(iprot.readI32()); + struct.values.add(_elem814); } } struct.setValuesIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java index e499e80e58..524a48ed99 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java @@ -814,15 +814,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, CompactionRequest s case 6: // PROPERTIES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map666 = iprot.readMapBegin(); - struct.properties = new HashMap(2*_map666.size); - String _key667; - String _val668; - for (int _i669 = 0; _i669 < _map666.size; ++_i669) + org.apache.thrift.protocol.TMap _map674 = iprot.readMapBegin(); + struct.properties = new HashMap(2*_map674.size); + String _key675; + String _val676; + for (int _i677 = 0; _i677 < _map674.size; ++_i677) { - _key667 = iprot.readString(); - _val668 = iprot.readString(); - struct.properties.put(_key667, _val668); + _key675 = iprot.readString(); + _val676 = iprot.readString(); + struct.properties.put(_key675, _val676); } iprot.readMapEnd(); } @@ -878,10 +878,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, CompactionRequest oprot.writeFieldBegin(PROPERTIES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.properties.size())); - for (Map.Entry _iter670 : struct.properties.entrySet()) + for (Map.Entry _iter678 : struct.properties.entrySet()) { - oprot.writeString(_iter670.getKey()); - oprot.writeString(_iter670.getValue()); + oprot.writeString(_iter678.getKey()); + oprot.writeString(_iter678.getValue()); } oprot.writeMapEnd(); } @@ -928,10 +928,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, CompactionRequest s if (struct.isSetProperties()) { { oprot.writeI32(struct.properties.size()); - for (Map.Entry _iter671 : struct.properties.entrySet()) + for (Map.Entry _iter679 : struct.properties.entrySet()) { - oprot.writeString(_iter671.getKey()); - oprot.writeString(_iter671.getValue()); + oprot.writeString(_iter679.getKey()); + oprot.writeString(_iter679.getValue()); } } } @@ -957,15 +957,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CompactionRequest st } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map672 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.properties = new HashMap(2*_map672.size); - String _key673; - String _val674; - for (int _i675 = 0; _i675 < _map672.size; ++_i675) + org.apache.thrift.protocol.TMap _map680 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.properties = new HashMap(2*_map680.size); + String _key681; + String _val682; + for (int _i683 = 0; _i683 < _map680.size; ++_i683) { - _key673 = iprot.readString(); - _val674 = iprot.readString(); - struct.properties.put(_key673, _val674); + _key681 = iprot.readString(); + _val682 = iprot.readString(); + struct.properties.put(_key681, _val682); } } struct.setPropertiesIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java index 1a16fac7a2..8e4144e17f 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java @@ -712,13 +712,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, CreationMetadata st case 4: // TABLES_USED if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set692 = iprot.readSetBegin(); - struct.tablesUsed = new HashSet(2*_set692.size); - String _elem693; - for (int _i694 = 0; _i694 < _set692.size; ++_i694) + org.apache.thrift.protocol.TSet _set700 = iprot.readSetBegin(); + struct.tablesUsed = new HashSet(2*_set700.size); + String _elem701; + for (int _i702 = 0; _i702 < _set700.size; ++_i702) { - _elem693 = iprot.readString(); - struct.tablesUsed.add(_elem693); + _elem701 = iprot.readString(); + struct.tablesUsed.add(_elem701); } iprot.readSetEnd(); } @@ -767,9 +767,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, CreationMetadata s oprot.writeFieldBegin(TABLES_USED_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.tablesUsed.size())); - for (String _iter695 : struct.tablesUsed) + for (String _iter703 : struct.tablesUsed) { - oprot.writeString(_iter695); + oprot.writeString(_iter703); } oprot.writeSetEnd(); } @@ -804,9 +804,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, CreationMetadata st oprot.writeString(struct.tblName); { oprot.writeI32(struct.tablesUsed.size()); - for (String _iter696 : struct.tablesUsed) + for (String _iter704 : struct.tablesUsed) { - oprot.writeString(_iter696); + oprot.writeString(_iter704); } } BitSet optionals = new BitSet(); @@ -829,13 +829,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, CreationMetadata str struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TSet _set697 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tablesUsed = new HashSet(2*_set697.size); - String _elem698; - for (int _i699 = 0; _i699 < _set697.size; ++_i699) + org.apache.thrift.protocol.TSet _set705 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tablesUsed = new HashSet(2*_set705.size); + String _elem706; + for (int _i707 = 0; _i707 < _set705.size; ++_i707) { - _elem698 = iprot.readString(); - struct.tablesUsed.add(_elem698); + _elem706 = iprot.readString(); + struct.tablesUsed.add(_elem706); } } struct.setTablesUsedIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java index c06b95c1b8..bb640865b3 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java @@ -350,14 +350,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, FindSchemasByColsRe case 1: // SCHEMA_VERSIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list904 = iprot.readListBegin(); - struct.schemaVersions = new ArrayList(_list904.size); - SchemaVersionDescriptor _elem905; - for (int _i906 = 0; _i906 < _list904.size; ++_i906) + org.apache.thrift.protocol.TList _list912 = iprot.readListBegin(); + struct.schemaVersions = new ArrayList(_list912.size); + SchemaVersionDescriptor _elem913; + for (int _i914 = 0; _i914 < _list912.size; ++_i914) { - _elem905 = new SchemaVersionDescriptor(); - _elem905.read(iprot); - struct.schemaVersions.add(_elem905); + _elem913 = new SchemaVersionDescriptor(); + _elem913.read(iprot); + struct.schemaVersions.add(_elem913); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, FindSchemasByColsR oprot.writeFieldBegin(SCHEMA_VERSIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.schemaVersions.size())); - for (SchemaVersionDescriptor _iter907 : struct.schemaVersions) + for (SchemaVersionDescriptor _iter915 : struct.schemaVersions) { - _iter907.write(oprot); + _iter915.write(oprot); } oprot.writeListEnd(); } @@ -416,9 +416,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, FindSchemasByColsRe if (struct.isSetSchemaVersions()) { { oprot.writeI32(struct.schemaVersions.size()); - for (SchemaVersionDescriptor _iter908 : struct.schemaVersions) + for (SchemaVersionDescriptor _iter916 : struct.schemaVersions) { - _iter908.write(oprot); + _iter916.write(oprot); } } } @@ -430,14 +430,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, FindSchemasByColsRes BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list909 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.schemaVersions = new ArrayList(_list909.size); - SchemaVersionDescriptor _elem910; - for (int _i911 = 0; _i911 < _list909.size; ++_i911) + org.apache.thrift.protocol.TList _list917 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.schemaVersions = new ArrayList(_list917.size); + SchemaVersionDescriptor _elem918; + for (int _i919 = 0; _i919 < _list917.size; ++_i919) { - _elem910 = new SchemaVersionDescriptor(); - _elem910.read(iprot); - struct.schemaVersions.add(_elem910); + _elem918 = new SchemaVersionDescriptor(); + _elem918.read(iprot); + struct.schemaVersions.add(_elem918); } } struct.setSchemaVersionsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java index 14e6abe053..42c9b53d5e 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java @@ -794,13 +794,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, FireEventRequest st case 5: // PARTITION_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list724 = iprot.readListBegin(); - struct.partitionVals = new ArrayList(_list724.size); - String _elem725; - for (int _i726 = 0; _i726 < _list724.size; ++_i726) + org.apache.thrift.protocol.TList _list732 = iprot.readListBegin(); + struct.partitionVals = new ArrayList(_list732.size); + String _elem733; + for (int _i734 = 0; _i734 < _list732.size; ++_i734) { - _elem725 = iprot.readString(); - struct.partitionVals.add(_elem725); + _elem733 = iprot.readString(); + struct.partitionVals.add(_elem733); } iprot.readListEnd(); } @@ -857,9 +857,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, FireEventRequest s oprot.writeFieldBegin(PARTITION_VALS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.partitionVals.size())); - for (String _iter727 : struct.partitionVals) + for (String _iter735 : struct.partitionVals) { - oprot.writeString(_iter727); + oprot.writeString(_iter735); } oprot.writeListEnd(); } @@ -915,9 +915,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, FireEventRequest st if (struct.isSetPartitionVals()) { { oprot.writeI32(struct.partitionVals.size()); - for (String _iter728 : struct.partitionVals) + for (String _iter736 : struct.partitionVals) { - oprot.writeString(_iter728); + oprot.writeString(_iter736); } } } @@ -945,13 +945,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, FireEventRequest str } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list729 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.partitionVals = new ArrayList(_list729.size); - String _elem730; - for (int _i731 = 0; _i731 < _list729.size; ++_i731) + org.apache.thrift.protocol.TList _list737 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.partitionVals = new ArrayList(_list737.size); + String _elem738; + for (int _i739 = 0; _i739 < _list737.size; ++_i739) { - _elem730 = iprot.readString(); - struct.partitionVals.add(_elem730); + _elem738 = iprot.readString(); + struct.partitionVals.add(_elem738); } } struct.setPartitionValsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java index dfdc357016..32e6543d79 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java @@ -346,14 +346,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetAllFunctionsResp case 1: // FUNCTIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list792 = iprot.readListBegin(); - struct.functions = new ArrayList(_list792.size); - Function _elem793; - for (int _i794 = 0; _i794 < _list792.size; ++_i794) + org.apache.thrift.protocol.TList _list800 = iprot.readListBegin(); + struct.functions = new ArrayList(_list800.size); + Function _elem801; + for (int _i802 = 0; _i802 < _list800.size; ++_i802) { - _elem793 = new Function(); - _elem793.read(iprot); - struct.functions.add(_elem793); + _elem801 = new Function(); + _elem801.read(iprot); + struct.functions.add(_elem801); } iprot.readListEnd(); } @@ -380,9 +380,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetAllFunctionsRes oprot.writeFieldBegin(FUNCTIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.functions.size())); - for (Function _iter795 : struct.functions) + for (Function _iter803 : struct.functions) { - _iter795.write(oprot); + _iter803.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetAllFunctionsResp if (struct.isSetFunctions()) { { oprot.writeI32(struct.functions.size()); - for (Function _iter796 : struct.functions) + for (Function _iter804 : struct.functions) { - _iter796.write(oprot); + _iter804.write(oprot); } } } @@ -428,14 +428,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetAllFunctionsRespo BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list797 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.functions = new ArrayList(_list797.size); - Function _elem798; - for (int _i799 = 0; _i799 < _list797.size; ++_i799) + org.apache.thrift.protocol.TList _list805 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.functions = new ArrayList(_list805.size); + Function _elem806; + for (int _i807 = 0; _i807 < _list805.size; ++_i807) { - _elem798 = new Function(); - _elem798.read(iprot); - struct.functions.add(_elem798); + _elem806 = new Function(); + _elem806.read(iprot); + struct.functions.add(_elem806); } } struct.setFunctionsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java index 0adb11d45a..8dab985641 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java @@ -619,13 +619,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetFileMetadataByEx case 1: // FILE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list742 = iprot.readListBegin(); - struct.fileIds = new ArrayList(_list742.size); - long _elem743; - for (int _i744 = 0; _i744 < _list742.size; ++_i744) + org.apache.thrift.protocol.TList _list750 = iprot.readListBegin(); + struct.fileIds = new ArrayList(_list750.size); + long _elem751; + for (int _i752 = 0; _i752 < _list750.size; ++_i752) { - _elem743 = iprot.readI64(); - struct.fileIds.add(_elem743); + _elem751 = iprot.readI64(); + struct.fileIds.add(_elem751); } iprot.readListEnd(); } @@ -675,9 +675,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetFileMetadataByE oprot.writeFieldBegin(FILE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.fileIds.size())); - for (long _iter745 : struct.fileIds) + for (long _iter753 : struct.fileIds) { - oprot.writeI64(_iter745); + oprot.writeI64(_iter753); } oprot.writeListEnd(); } @@ -719,9 +719,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByEx TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.fileIds.size()); - for (long _iter746 : struct.fileIds) + for (long _iter754 : struct.fileIds) { - oprot.writeI64(_iter746); + oprot.writeI64(_iter754); } } oprot.writeBinary(struct.expr); @@ -745,13 +745,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByEx public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByExprRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list747 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.fileIds = new ArrayList(_list747.size); - long _elem748; - for (int _i749 = 0; _i749 < _list747.size; ++_i749) + org.apache.thrift.protocol.TList _list755 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.fileIds = new ArrayList(_list755.size); + long _elem756; + for (int _i757 = 0; _i757 < _list755.size; ++_i757) { - _elem748 = iprot.readI64(); - struct.fileIds.add(_elem748); + _elem756 = iprot.readI64(); + struct.fileIds.add(_elem756); } } struct.setFileIdsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java index f86d9eacda..d94ea73c4b 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java @@ -444,16 +444,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetFileMetadataByEx case 1: // METADATA if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map732 = iprot.readMapBegin(); - struct.metadata = new HashMap(2*_map732.size); - long _key733; - MetadataPpdResult _val734; - for (int _i735 = 0; _i735 < _map732.size; ++_i735) + org.apache.thrift.protocol.TMap _map740 = iprot.readMapBegin(); + struct.metadata = new HashMap(2*_map740.size); + long _key741; + MetadataPpdResult _val742; + for (int _i743 = 0; _i743 < _map740.size; ++_i743) { - _key733 = iprot.readI64(); - _val734 = new MetadataPpdResult(); - _val734.read(iprot); - struct.metadata.put(_key733, _val734); + _key741 = iprot.readI64(); + _val742 = new MetadataPpdResult(); + _val742.read(iprot); + struct.metadata.put(_key741, _val742); } iprot.readMapEnd(); } @@ -487,10 +487,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetFileMetadataByE oprot.writeFieldBegin(METADATA_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.metadata.size())); - for (Map.Entry _iter736 : struct.metadata.entrySet()) + for (Map.Entry _iter744 : struct.metadata.entrySet()) { - oprot.writeI64(_iter736.getKey()); - _iter736.getValue().write(oprot); + oprot.writeI64(_iter744.getKey()); + _iter744.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -518,10 +518,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByEx TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.metadata.size()); - for (Map.Entry _iter737 : struct.metadata.entrySet()) + for (Map.Entry _iter745 : struct.metadata.entrySet()) { - oprot.writeI64(_iter737.getKey()); - _iter737.getValue().write(oprot); + oprot.writeI64(_iter745.getKey()); + _iter745.getValue().write(oprot); } } oprot.writeBool(struct.isSupported); @@ -531,16 +531,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByEx public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByExprResult struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map738 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.metadata = new HashMap(2*_map738.size); - long _key739; - MetadataPpdResult _val740; - for (int _i741 = 0; _i741 < _map738.size; ++_i741) + org.apache.thrift.protocol.TMap _map746 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.metadata = new HashMap(2*_map746.size); + long _key747; + MetadataPpdResult _val748; + for (int _i749 = 0; _i749 < _map746.size; ++_i749) { - _key739 = iprot.readI64(); - _val740 = new MetadataPpdResult(); - _val740.read(iprot); - struct.metadata.put(_key739, _val740); + _key747 = iprot.readI64(); + _val748 = new MetadataPpdResult(); + _val748.read(iprot); + struct.metadata.put(_key747, _val748); } } struct.setMetadataIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java index b98375c333..9dfc484591 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java @@ -351,13 +351,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetFileMetadataRequ case 1: // FILE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list760 = iprot.readListBegin(); - struct.fileIds = new ArrayList(_list760.size); - long _elem761; - for (int _i762 = 0; _i762 < _list760.size; ++_i762) + org.apache.thrift.protocol.TList _list768 = iprot.readListBegin(); + struct.fileIds = new ArrayList(_list768.size); + long _elem769; + for (int _i770 = 0; _i770 < _list768.size; ++_i770) { - _elem761 = iprot.readI64(); - struct.fileIds.add(_elem761); + _elem769 = iprot.readI64(); + struct.fileIds.add(_elem769); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetFileMetadataReq oprot.writeFieldBegin(FILE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.fileIds.size())); - for (long _iter763 : struct.fileIds) + for (long _iter771 : struct.fileIds) { - oprot.writeI64(_iter763); + oprot.writeI64(_iter771); } oprot.writeListEnd(); } @@ -410,9 +410,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataRequ TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.fileIds.size()); - for (long _iter764 : struct.fileIds) + for (long _iter772 : struct.fileIds) { - oprot.writeI64(_iter764); + oprot.writeI64(_iter772); } } } @@ -421,13 +421,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataRequ public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list765 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.fileIds = new ArrayList(_list765.size); - long _elem766; - for (int _i767 = 0; _i767 < _list765.size; ++_i767) + org.apache.thrift.protocol.TList _list773 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.fileIds = new ArrayList(_list773.size); + long _elem774; + for (int _i775 = 0; _i775 < _list773.size; ++_i775) { - _elem766 = iprot.readI64(); - struct.fileIds.add(_elem766); + _elem774 = iprot.readI64(); + struct.fileIds.add(_elem774); } } struct.setFileIdsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java index d8d903ea87..d454340aa4 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java @@ -433,15 +433,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetFileMetadataResu case 1: // METADATA if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map750 = iprot.readMapBegin(); - struct.metadata = new HashMap(2*_map750.size); - long _key751; - ByteBuffer _val752; - for (int _i753 = 0; _i753 < _map750.size; ++_i753) + org.apache.thrift.protocol.TMap _map758 = iprot.readMapBegin(); + struct.metadata = new HashMap(2*_map758.size); + long _key759; + ByteBuffer _val760; + for (int _i761 = 0; _i761 < _map758.size; ++_i761) { - _key751 = iprot.readI64(); - _val752 = iprot.readBinary(); - struct.metadata.put(_key751, _val752); + _key759 = iprot.readI64(); + _val760 = iprot.readBinary(); + struct.metadata.put(_key759, _val760); } iprot.readMapEnd(); } @@ -475,10 +475,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetFileMetadataRes oprot.writeFieldBegin(METADATA_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, struct.metadata.size())); - for (Map.Entry _iter754 : struct.metadata.entrySet()) + for (Map.Entry _iter762 : struct.metadata.entrySet()) { - oprot.writeI64(_iter754.getKey()); - oprot.writeBinary(_iter754.getValue()); + oprot.writeI64(_iter762.getKey()); + oprot.writeBinary(_iter762.getValue()); } oprot.writeMapEnd(); } @@ -506,10 +506,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataResu TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.metadata.size()); - for (Map.Entry _iter755 : struct.metadata.entrySet()) + for (Map.Entry _iter763 : struct.metadata.entrySet()) { - oprot.writeI64(_iter755.getKey()); - oprot.writeBinary(_iter755.getValue()); + oprot.writeI64(_iter763.getKey()); + oprot.writeBinary(_iter763.getValue()); } } oprot.writeBool(struct.isSupported); @@ -519,15 +519,15 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataResu public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataResult struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map756 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.metadata = new HashMap(2*_map756.size); - long _key757; - ByteBuffer _val758; - for (int _i759 = 0; _i759 < _map756.size; ++_i759) + org.apache.thrift.protocol.TMap _map764 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.metadata = new HashMap(2*_map764.size); + long _key765; + ByteBuffer _val766; + for (int _i767 = 0; _i767 < _map764.size; ++_i767) { - _key757 = iprot.readI64(); - _val758 = iprot.readBinary(); - struct.metadata.put(_key757, _val758); + _key765 = iprot.readI64(); + _val766 = iprot.readBinary(); + struct.metadata.put(_key765, _val766); } } struct.setMetadataIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java index a264cdd8eb..f2be7ecc3e 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java @@ -606,13 +606,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetTablesRequest st case 2: // TBL_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list808 = iprot.readListBegin(); - struct.tblNames = new ArrayList(_list808.size); - String _elem809; - for (int _i810 = 0; _i810 < _list808.size; ++_i810) + org.apache.thrift.protocol.TList _list816 = iprot.readListBegin(); + struct.tblNames = new ArrayList(_list816.size); + String _elem817; + for (int _i818 = 0; _i818 < _list816.size; ++_i818) { - _elem809 = iprot.readString(); - struct.tblNames.add(_elem809); + _elem817 = iprot.readString(); + struct.tblNames.add(_elem817); } iprot.readListEnd(); } @@ -661,9 +661,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetTablesRequest s oprot.writeFieldBegin(TBL_NAMES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.tblNames.size())); - for (String _iter811 : struct.tblNames) + for (String _iter819 : struct.tblNames) { - oprot.writeString(_iter811); + oprot.writeString(_iter819); } oprot.writeListEnd(); } @@ -716,9 +716,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetTablesRequest st if (struct.isSetTblNames()) { { oprot.writeI32(struct.tblNames.size()); - for (String _iter812 : struct.tblNames) + for (String _iter820 : struct.tblNames) { - oprot.writeString(_iter812); + oprot.writeString(_iter820); } } } @@ -738,13 +738,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetTablesRequest str BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list813 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tblNames = new ArrayList(_list813.size); - String _elem814; - for (int _i815 = 0; _i815 < _list813.size; ++_i815) + org.apache.thrift.protocol.TList _list821 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tblNames = new ArrayList(_list821.size); + String _elem822; + for (int _i823 = 0; _i823 < _list821.size; ++_i823) { - _elem814 = iprot.readString(); - struct.tblNames.add(_elem814); + _elem822 = iprot.readString(); + struct.tblNames.add(_elem822); } } struct.setTblNamesIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java index f4ccc8b467..371757a3dd 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java @@ -354,14 +354,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetTablesResult str case 1: // TABLES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list816 = iprot.readListBegin(); - struct.tables = new ArrayList
(_list816.size); - Table _elem817; - for (int _i818 = 0; _i818 < _list816.size; ++_i818) + org.apache.thrift.protocol.TList _list824 = iprot.readListBegin(); + struct.tables = new ArrayList
(_list824.size); + Table _elem825; + for (int _i826 = 0; _i826 < _list824.size; ++_i826) { - _elem817 = new Table(); - _elem817.read(iprot); - struct.tables.add(_elem817); + _elem825 = new Table(); + _elem825.read(iprot); + struct.tables.add(_elem825); } iprot.readListEnd(); } @@ -387,9 +387,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetTablesResult st oprot.writeFieldBegin(TABLES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.tables.size())); - for (Table _iter819 : struct.tables) + for (Table _iter827 : struct.tables) { - _iter819.write(oprot); + _iter827.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetTablesResult str TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.tables.size()); - for (Table _iter820 : struct.tables) + for (Table _iter828 : struct.tables) { - _iter820.write(oprot); + _iter828.write(oprot); } } } @@ -425,14 +425,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetTablesResult str public void read(org.apache.thrift.protocol.TProtocol prot, GetTablesResult struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list821 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.tables = new ArrayList
(_list821.size); - Table _elem822; - for (int _i823 = 0; _i823 < _list821.size; ++_i823) + org.apache.thrift.protocol.TList _list829 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.tables = new ArrayList
(_list829.size); + Table _elem830; + for (int _i831 = 0; _i831 < _list829.size; ++_i831) { - _elem822 = new Table(); - _elem822.read(iprot); - struct.tables.add(_elem822); + _elem830 = new Table(); + _elem830.read(iprot); + struct.tables.add(_elem830); } } struct.setTablesIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java index b270439737..75ddaf69ba 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java @@ -453,13 +453,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, HeartbeatTxnRangeRe case 1: // ABORTED if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set650 = iprot.readSetBegin(); - struct.aborted = new HashSet(2*_set650.size); - long _elem651; - for (int _i652 = 0; _i652 < _set650.size; ++_i652) + org.apache.thrift.protocol.TSet _set658 = iprot.readSetBegin(); + struct.aborted = new HashSet(2*_set658.size); + long _elem659; + for (int _i660 = 0; _i660 < _set658.size; ++_i660) { - _elem651 = iprot.readI64(); - struct.aborted.add(_elem651); + _elem659 = iprot.readI64(); + struct.aborted.add(_elem659); } iprot.readSetEnd(); } @@ -471,13 +471,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, HeartbeatTxnRangeRe case 2: // NOSUCH if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set653 = iprot.readSetBegin(); - struct.nosuch = new HashSet(2*_set653.size); - long _elem654; - for (int _i655 = 0; _i655 < _set653.size; ++_i655) + org.apache.thrift.protocol.TSet _set661 = iprot.readSetBegin(); + struct.nosuch = new HashSet(2*_set661.size); + long _elem662; + for (int _i663 = 0; _i663 < _set661.size; ++_i663) { - _elem654 = iprot.readI64(); - struct.nosuch.add(_elem654); + _elem662 = iprot.readI64(); + struct.nosuch.add(_elem662); } iprot.readSetEnd(); } @@ -503,9 +503,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, HeartbeatTxnRangeR oprot.writeFieldBegin(ABORTED_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.aborted.size())); - for (long _iter656 : struct.aborted) + for (long _iter664 : struct.aborted) { - oprot.writeI64(_iter656); + oprot.writeI64(_iter664); } oprot.writeSetEnd(); } @@ -515,9 +515,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, HeartbeatTxnRangeR oprot.writeFieldBegin(NOSUCH_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.nosuch.size())); - for (long _iter657 : struct.nosuch) + for (long _iter665 : struct.nosuch) { - oprot.writeI64(_iter657); + oprot.writeI64(_iter665); } oprot.writeSetEnd(); } @@ -542,16 +542,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, HeartbeatTxnRangeRe TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.aborted.size()); - for (long _iter658 : struct.aborted) + for (long _iter666 : struct.aborted) { - oprot.writeI64(_iter658); + oprot.writeI64(_iter666); } } { oprot.writeI32(struct.nosuch.size()); - for (long _iter659 : struct.nosuch) + for (long _iter667 : struct.nosuch) { - oprot.writeI64(_iter659); + oprot.writeI64(_iter667); } } } @@ -560,24 +560,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, HeartbeatTxnRangeRe public void read(org.apache.thrift.protocol.TProtocol prot, HeartbeatTxnRangeResponse struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TSet _set660 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.aborted = new HashSet(2*_set660.size); - long _elem661; - for (int _i662 = 0; _i662 < _set660.size; ++_i662) + org.apache.thrift.protocol.TSet _set668 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.aborted = new HashSet(2*_set668.size); + long _elem669; + for (int _i670 = 0; _i670 < _set668.size; ++_i670) { - _elem661 = iprot.readI64(); - struct.aborted.add(_elem661); + _elem669 = iprot.readI64(); + struct.aborted.add(_elem669); } } struct.setAbortedIsSet(true); { - org.apache.thrift.protocol.TSet _set663 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.nosuch = new HashSet(2*_set663.size); - long _elem664; - for (int _i665 = 0; _i665 < _set663.size; ++_i665) + org.apache.thrift.protocol.TSet _set671 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.nosuch = new HashSet(2*_set671.size); + long _elem672; + for (int _i673 = 0; _i673 < _set671.size; ++_i673) { - _elem664 = iprot.readI64(); - struct.nosuch.add(_elem664); + _elem672 = iprot.readI64(); + struct.nosuch.add(_elem672); } } struct.setNosuchIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java index 79570a516c..c7100a7ed6 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/InsertEventRequestData.java @@ -538,13 +538,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, InsertEventRequestD case 2: // FILES_ADDED if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list708 = iprot.readListBegin(); - struct.filesAdded = new ArrayList(_list708.size); - String _elem709; - for (int _i710 = 0; _i710 < _list708.size; ++_i710) + org.apache.thrift.protocol.TList _list716 = iprot.readListBegin(); + struct.filesAdded = new ArrayList(_list716.size); + String _elem717; + for (int _i718 = 0; _i718 < _list716.size; ++_i718) { - _elem709 = iprot.readString(); - struct.filesAdded.add(_elem709); + _elem717 = iprot.readString(); + struct.filesAdded.add(_elem717); } iprot.readListEnd(); } @@ -556,13 +556,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, InsertEventRequestD case 3: // FILES_ADDED_CHECKSUM if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list711 = iprot.readListBegin(); - struct.filesAddedChecksum = new ArrayList(_list711.size); - String _elem712; - for (int _i713 = 0; _i713 < _list711.size; ++_i713) + org.apache.thrift.protocol.TList _list719 = iprot.readListBegin(); + struct.filesAddedChecksum = new ArrayList(_list719.size); + String _elem720; + for (int _i721 = 0; _i721 < _list719.size; ++_i721) { - _elem712 = iprot.readString(); - struct.filesAddedChecksum.add(_elem712); + _elem720 = iprot.readString(); + struct.filesAddedChecksum.add(_elem720); } iprot.readListEnd(); } @@ -593,9 +593,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, InsertEventRequest oprot.writeFieldBegin(FILES_ADDED_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.filesAdded.size())); - for (String _iter714 : struct.filesAdded) + for (String _iter722 : struct.filesAdded) { - oprot.writeString(_iter714); + oprot.writeString(_iter722); } oprot.writeListEnd(); } @@ -606,9 +606,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, InsertEventRequest oprot.writeFieldBegin(FILES_ADDED_CHECKSUM_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.filesAddedChecksum.size())); - for (String _iter715 : struct.filesAddedChecksum) + for (String _iter723 : struct.filesAddedChecksum) { - oprot.writeString(_iter715); + oprot.writeString(_iter723); } oprot.writeListEnd(); } @@ -634,9 +634,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestD TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.filesAdded.size()); - for (String _iter716 : struct.filesAdded) + for (String _iter724 : struct.filesAdded) { - oprot.writeString(_iter716); + oprot.writeString(_iter724); } } BitSet optionals = new BitSet(); @@ -653,9 +653,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestD if (struct.isSetFilesAddedChecksum()) { { oprot.writeI32(struct.filesAddedChecksum.size()); - for (String _iter717 : struct.filesAddedChecksum) + for (String _iter725 : struct.filesAddedChecksum) { - oprot.writeString(_iter717); + oprot.writeString(_iter725); } } } @@ -665,13 +665,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestD public void read(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestData struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list718 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.filesAdded = new ArrayList(_list718.size); - String _elem719; - for (int _i720 = 0; _i720 < _list718.size; ++_i720) + org.apache.thrift.protocol.TList _list726 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.filesAdded = new ArrayList(_list726.size); + String _elem727; + for (int _i728 = 0; _i728 < _list726.size; ++_i728) { - _elem719 = iprot.readString(); - struct.filesAdded.add(_elem719); + _elem727 = iprot.readString(); + struct.filesAdded.add(_elem727); } } struct.setFilesAddedIsSet(true); @@ -682,13 +682,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, InsertEventRequestDa } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list721 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.filesAddedChecksum = new ArrayList(_list721.size); - String _elem722; - for (int _i723 = 0; _i723 < _list721.size; ++_i723) + org.apache.thrift.protocol.TList _list729 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.filesAddedChecksum = new ArrayList(_list729.size); + String _elem730; + for (int _i731 = 0; _i731 < _list729.size; ++_i731) { - _elem722 = iprot.readString(); - struct.filesAddedChecksum.add(_elem722); + _elem730 = iprot.readString(); + struct.filesAddedChecksum.add(_elem730); } } struct.setFilesAddedChecksumIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java index 62f0dd67c3..d1134b5ddb 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/LockRequest.java @@ -689,14 +689,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, LockRequest struct) case 1: // COMPONENT if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list634 = iprot.readListBegin(); - struct.component = new ArrayList(_list634.size); - LockComponent _elem635; - for (int _i636 = 0; _i636 < _list634.size; ++_i636) + org.apache.thrift.protocol.TList _list642 = iprot.readListBegin(); + struct.component = new ArrayList(_list642.size); + LockComponent _elem643; + for (int _i644 = 0; _i644 < _list642.size; ++_i644) { - _elem635 = new LockComponent(); - _elem635.read(iprot); - struct.component.add(_elem635); + _elem643 = new LockComponent(); + _elem643.read(iprot); + struct.component.add(_elem643); } iprot.readListEnd(); } @@ -754,9 +754,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, LockRequest struct oprot.writeFieldBegin(COMPONENT_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.component.size())); - for (LockComponent _iter637 : struct.component) + for (LockComponent _iter645 : struct.component) { - _iter637.write(oprot); + _iter645.write(oprot); } oprot.writeListEnd(); } @@ -803,9 +803,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, LockRequest struct) TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.component.size()); - for (LockComponent _iter638 : struct.component) + for (LockComponent _iter646 : struct.component) { - _iter638.write(oprot); + _iter646.write(oprot); } } oprot.writeString(struct.user); @@ -830,14 +830,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, LockRequest struct) public void read(org.apache.thrift.protocol.TProtocol prot, LockRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list639 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.component = new ArrayList(_list639.size); - LockComponent _elem640; - for (int _i641 = 0; _i641 < _list639.size; ++_i641) + org.apache.thrift.protocol.TList _list647 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.component = new ArrayList(_list647.size); + LockComponent _elem648; + for (int _i649 = 0; _i649 < _list647.size; ++_i649) { - _elem640 = new LockComponent(); - _elem640.read(iprot); - struct.component.add(_elem640); + _elem648 = new LockComponent(); + _elem648.read(iprot); + struct.component.add(_elem648); } } struct.setComponentIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java index 556207ee44..403c7aaa93 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/Materialization.java @@ -589,13 +589,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, Materialization str case 1: // TABLES_USED if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set824 = iprot.readSetBegin(); - struct.tablesUsed = new HashSet(2*_set824.size); - String _elem825; - for (int _i826 = 0; _i826 < _set824.size; ++_i826) + org.apache.thrift.protocol.TSet _set832 = iprot.readSetBegin(); + struct.tablesUsed = new HashSet(2*_set832.size); + String _elem833; + for (int _i834 = 0; _i834 < _set832.size; ++_i834) { - _elem825 = iprot.readString(); - struct.tablesUsed.add(_elem825); + _elem833 = iprot.readString(); + struct.tablesUsed.add(_elem833); } iprot.readSetEnd(); } @@ -645,9 +645,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, Materialization st oprot.writeFieldBegin(TABLES_USED_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.tablesUsed.size())); - for (String _iter827 : struct.tablesUsed) + for (String _iter835 : struct.tablesUsed) { - oprot.writeString(_iter827); + oprot.writeString(_iter835); } oprot.writeSetEnd(); } @@ -689,9 +689,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, Materialization str TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.tablesUsed.size()); - for (String _iter828 : struct.tablesUsed) + for (String _iter836 : struct.tablesUsed) { - oprot.writeString(_iter828); + oprot.writeString(_iter836); } } BitSet optionals = new BitSet(); @@ -720,13 +720,13 @@ public void write(org.apache.thrift.protocol.TProtocol prot, Materialization str public void read(org.apache.thrift.protocol.TProtocol prot, Materialization struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TSet _set829 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tablesUsed = new HashSet(2*_set829.size); - String _elem830; - for (int _i831 = 0; _i831 < _set829.size; ++_i831) + org.apache.thrift.protocol.TSet _set837 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tablesUsed = new HashSet(2*_set837.size); + String _elem838; + for (int _i839 = 0; _i839 < _set837.size; ++_i839) { - _elem830 = iprot.readString(); - struct.tablesUsed.add(_elem830); + _elem838 = iprot.readString(); + struct.tablesUsed.add(_elem838); } } struct.setTablesUsedIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java index 3c35a0eb0a..baa4224eea 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/NotificationEventResponse.java @@ -354,14 +354,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, NotificationEventRe case 1: // EVENTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list700 = iprot.readListBegin(); - struct.events = new ArrayList(_list700.size); - NotificationEvent _elem701; - for (int _i702 = 0; _i702 < _list700.size; ++_i702) + org.apache.thrift.protocol.TList _list708 = iprot.readListBegin(); + struct.events = new ArrayList(_list708.size); + NotificationEvent _elem709; + for (int _i710 = 0; _i710 < _list708.size; ++_i710) { - _elem701 = new NotificationEvent(); - _elem701.read(iprot); - struct.events.add(_elem701); + _elem709 = new NotificationEvent(); + _elem709.read(iprot); + struct.events.add(_elem709); } iprot.readListEnd(); } @@ -387,9 +387,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, NotificationEventR oprot.writeFieldBegin(EVENTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.events.size())); - for (NotificationEvent _iter703 : struct.events) + for (NotificationEvent _iter711 : struct.events) { - _iter703.write(oprot); + _iter711.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, NotificationEventRe TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.events.size()); - for (NotificationEvent _iter704 : struct.events) + for (NotificationEvent _iter712 : struct.events) { - _iter704.write(oprot); + _iter712.write(oprot); } } } @@ -425,14 +425,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, NotificationEventRe public void read(org.apache.thrift.protocol.TProtocol prot, NotificationEventResponse struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list705 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.events = new ArrayList(_list705.size); - NotificationEvent _elem706; - for (int _i707 = 0; _i707 < _list705.size; ++_i707) + org.apache.thrift.protocol.TList _list713 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.events = new ArrayList(_list713.size); + NotificationEvent _elem714; + for (int _i715 = 0; _i715 < _list713.size; ++_i715) { - _elem706 = new NotificationEvent(); - _elem706.read(iprot); - struct.events.add(_elem706); + _elem714 = new NotificationEvent(); + _elem714.read(iprot); + struct.events.add(_elem714); } } struct.setEventsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java index 474555fb8a..ad42dbe3a2 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/PutFileMetadataRequest.java @@ -547,13 +547,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, PutFileMetadataRequ case 1: // FILE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list768 = iprot.readListBegin(); - struct.fileIds = new ArrayList(_list768.size); - long _elem769; - for (int _i770 = 0; _i770 < _list768.size; ++_i770) + org.apache.thrift.protocol.TList _list776 = iprot.readListBegin(); + struct.fileIds = new ArrayList(_list776.size); + long _elem777; + for (int _i778 = 0; _i778 < _list776.size; ++_i778) { - _elem769 = iprot.readI64(); - struct.fileIds.add(_elem769); + _elem777 = iprot.readI64(); + struct.fileIds.add(_elem777); } iprot.readListEnd(); } @@ -565,13 +565,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, PutFileMetadataRequ case 2: // METADATA if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list771 = iprot.readListBegin(); - struct.metadata = new ArrayList(_list771.size); - ByteBuffer _elem772; - for (int _i773 = 0; _i773 < _list771.size; ++_i773) + org.apache.thrift.protocol.TList _list779 = iprot.readListBegin(); + struct.metadata = new ArrayList(_list779.size); + ByteBuffer _elem780; + for (int _i781 = 0; _i781 < _list779.size; ++_i781) { - _elem772 = iprot.readBinary(); - struct.metadata.add(_elem772); + _elem780 = iprot.readBinary(); + struct.metadata.add(_elem780); } iprot.readListEnd(); } @@ -605,9 +605,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, PutFileMetadataReq oprot.writeFieldBegin(FILE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.fileIds.size())); - for (long _iter774 : struct.fileIds) + for (long _iter782 : struct.fileIds) { - oprot.writeI64(_iter774); + oprot.writeI64(_iter782); } oprot.writeListEnd(); } @@ -617,9 +617,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, PutFileMetadataReq oprot.writeFieldBegin(METADATA_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.metadata.size())); - for (ByteBuffer _iter775 : struct.metadata) + for (ByteBuffer _iter783 : struct.metadata) { - oprot.writeBinary(_iter775); + oprot.writeBinary(_iter783); } oprot.writeListEnd(); } @@ -651,16 +651,16 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PutFileMetadataRequ TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.fileIds.size()); - for (long _iter776 : struct.fileIds) + for (long _iter784 : struct.fileIds) { - oprot.writeI64(_iter776); + oprot.writeI64(_iter784); } } { oprot.writeI32(struct.metadata.size()); - for (ByteBuffer _iter777 : struct.metadata) + for (ByteBuffer _iter785 : struct.metadata) { - oprot.writeBinary(_iter777); + oprot.writeBinary(_iter785); } } BitSet optionals = new BitSet(); @@ -677,24 +677,24 @@ public void write(org.apache.thrift.protocol.TProtocol prot, PutFileMetadataRequ public void read(org.apache.thrift.protocol.TProtocol prot, PutFileMetadataRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list778 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.fileIds = new ArrayList(_list778.size); - long _elem779; - for (int _i780 = 0; _i780 < _list778.size; ++_i780) + org.apache.thrift.protocol.TList _list786 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.fileIds = new ArrayList(_list786.size); + long _elem787; + for (int _i788 = 0; _i788 < _list786.size; ++_i788) { - _elem779 = iprot.readI64(); - struct.fileIds.add(_elem779); + _elem787 = iprot.readI64(); + struct.fileIds.add(_elem787); } } struct.setFileIdsIsSet(true); { - org.apache.thrift.protocol.TList _list781 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.metadata = new ArrayList(_list781.size); - ByteBuffer _elem782; - for (int _i783 = 0; _i783 < _list781.size; ++_i783) + org.apache.thrift.protocol.TList _list789 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.metadata = new ArrayList(_list789.size); + ByteBuffer _elem790; + for (int _i791 = 0; _i791 < _list789.size; ++_i791) { - _elem782 = iprot.readBinary(); - struct.metadata.add(_elem782); + _elem790 = iprot.readBinary(); + struct.metadata.add(_elem790); } } struct.setMetadataIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java index 12a8d1be65..62bc3b4bb4 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java @@ -1119,14 +1119,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, SchemaVersion struc case 4: // COLS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list896 = iprot.readListBegin(); - struct.cols = new ArrayList(_list896.size); - FieldSchema _elem897; - for (int _i898 = 0; _i898 < _list896.size; ++_i898) + org.apache.thrift.protocol.TList _list904 = iprot.readListBegin(); + struct.cols = new ArrayList(_list904.size); + FieldSchema _elem905; + for (int _i906 = 0; _i906 < _list904.size; ++_i906) { - _elem897 = new FieldSchema(); - _elem897.read(iprot); - struct.cols.add(_elem897); + _elem905 = new FieldSchema(); + _elem905.read(iprot); + struct.cols.add(_elem905); } iprot.readListEnd(); } @@ -1212,9 +1212,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, SchemaVersion stru oprot.writeFieldBegin(COLS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.cols.size())); - for (FieldSchema _iter899 : struct.cols) + for (FieldSchema _iter907 : struct.cols) { - _iter899.write(oprot); + _iter907.write(oprot); } oprot.writeListEnd(); } @@ -1323,9 +1323,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, SchemaVersion struc if (struct.isSetCols()) { { oprot.writeI32(struct.cols.size()); - for (FieldSchema _iter900 : struct.cols) + for (FieldSchema _iter908 : struct.cols) { - _iter900.write(oprot); + _iter908.write(oprot); } } } @@ -1368,14 +1368,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, SchemaVersion struct } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list901 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.cols = new ArrayList(_list901.size); - FieldSchema _elem902; - for (int _i903 = 0; _i903 < _list901.size; ++_i903) + org.apache.thrift.protocol.TList _list909 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.cols = new ArrayList(_list909.size); + FieldSchema _elem910; + for (int _i911 = 0; _i911 < _list909.size; ++_i911) { - _elem902 = new FieldSchema(); - _elem902.read(iprot); - struct.cols.add(_elem902); + _elem910 = new FieldSchema(); + _elem910.read(iprot); + struct.cols.add(_elem910); } } struct.setColsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java index 6c418f5b43..4e465ac57d 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowCompactResponse.java @@ -354,14 +354,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, ShowCompactResponse case 1: // COMPACTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list676 = iprot.readListBegin(); - struct.compacts = new ArrayList(_list676.size); - ShowCompactResponseElement _elem677; - for (int _i678 = 0; _i678 < _list676.size; ++_i678) + org.apache.thrift.protocol.TList _list684 = iprot.readListBegin(); + struct.compacts = new ArrayList(_list684.size); + ShowCompactResponseElement _elem685; + for (int _i686 = 0; _i686 < _list684.size; ++_i686) { - _elem677 = new ShowCompactResponseElement(); - _elem677.read(iprot); - struct.compacts.add(_elem677); + _elem685 = new ShowCompactResponseElement(); + _elem685.read(iprot); + struct.compacts.add(_elem685); } iprot.readListEnd(); } @@ -387,9 +387,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, ShowCompactRespons oprot.writeFieldBegin(COMPACTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.compacts.size())); - for (ShowCompactResponseElement _iter679 : struct.compacts) + for (ShowCompactResponseElement _iter687 : struct.compacts) { - _iter679.write(oprot); + _iter687.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ShowCompactResponse TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.compacts.size()); - for (ShowCompactResponseElement _iter680 : struct.compacts) + for (ShowCompactResponseElement _iter688 : struct.compacts) { - _iter680.write(oprot); + _iter688.write(oprot); } } } @@ -425,14 +425,14 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ShowCompactResponse public void read(org.apache.thrift.protocol.TProtocol prot, ShowCompactResponse struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list681 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.compacts = new ArrayList(_list681.size); - ShowCompactResponseElement _elem682; - for (int _i683 = 0; _i683 < _list681.size; ++_i683) + org.apache.thrift.protocol.TList _list689 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.compacts = new ArrayList(_list689.size); + ShowCompactResponseElement _elem690; + for (int _i691 = 0; _i691 < _list689.size; ++_i691) { - _elem682 = new ShowCompactResponseElement(); - _elem682.read(iprot); - struct.compacts.add(_elem682); + _elem690 = new ShowCompactResponseElement(); + _elem690.read(iprot); + struct.compacts.add(_elem690); } } struct.setCompactsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java index 857dc7a680..cfc7f9cf38 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ShowLocksResponse.java @@ -350,14 +350,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, ShowLocksResponse s case 1: // LOCKS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list642 = iprot.readListBegin(); - struct.locks = new ArrayList(_list642.size); - ShowLocksResponseElement _elem643; - for (int _i644 = 0; _i644 < _list642.size; ++_i644) + org.apache.thrift.protocol.TList _list650 = iprot.readListBegin(); + struct.locks = new ArrayList(_list650.size); + ShowLocksResponseElement _elem651; + for (int _i652 = 0; _i652 < _list650.size; ++_i652) { - _elem643 = new ShowLocksResponseElement(); - _elem643.read(iprot); - struct.locks.add(_elem643); + _elem651 = new ShowLocksResponseElement(); + _elem651.read(iprot); + struct.locks.add(_elem651); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, ShowLocksResponse oprot.writeFieldBegin(LOCKS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.locks.size())); - for (ShowLocksResponseElement _iter645 : struct.locks) + for (ShowLocksResponseElement _iter653 : struct.locks) { - _iter645.write(oprot); + _iter653.write(oprot); } oprot.writeListEnd(); } @@ -416,9 +416,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, ShowLocksResponse s if (struct.isSetLocks()) { { oprot.writeI32(struct.locks.size()); - for (ShowLocksResponseElement _iter646 : struct.locks) + for (ShowLocksResponseElement _iter654 : struct.locks) { - _iter646.write(oprot); + _iter654.write(oprot); } } } @@ -430,14 +430,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, ShowLocksResponse st BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list647 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.locks = new ArrayList(_list647.size); - ShowLocksResponseElement _elem648; - for (int _i649 = 0; _i649 < _list647.size; ++_i649) + org.apache.thrift.protocol.TList _list655 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.locks = new ArrayList(_list655.size); + ShowLocksResponseElement _elem656; + for (int _i657 = 0; _i657 < _list655.size; ++_i657) { - _elem648 = new ShowLocksResponseElement(); - _elem648.read(iprot); - struct.locks.add(_elem648); + _elem656 = new ShowLocksResponseElement(); + _elem656.read(iprot); + struct.locks.add(_elem656); } } struct.setLocksIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java index afe82e3a00..a354f27cad 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java @@ -40589,13 +40589,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_databases_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list912 = iprot.readListBegin(); - struct.success = new ArrayList(_list912.size); - String _elem913; - for (int _i914 = 0; _i914 < _list912.size; ++_i914) + org.apache.thrift.protocol.TList _list920 = iprot.readListBegin(); + struct.success = new ArrayList(_list920.size); + String _elem921; + for (int _i922 = 0; _i922 < _list920.size; ++_i922) { - _elem913 = iprot.readString(); - struct.success.add(_elem913); + _elem921 = iprot.readString(); + struct.success.add(_elem921); } iprot.readListEnd(); } @@ -40630,9 +40630,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_databases_resu oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter915 : struct.success) + for (String _iter923 : struct.success) { - oprot.writeString(_iter915); + oprot.writeString(_iter923); } oprot.writeListEnd(); } @@ -40671,9 +40671,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_databases_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter916 : struct.success) + for (String _iter924 : struct.success) { - oprot.writeString(_iter916); + oprot.writeString(_iter924); } } } @@ -40688,13 +40688,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_databases_result BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list917 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list917.size); - String _elem918; - for (int _i919 = 0; _i919 < _list917.size; ++_i919) + org.apache.thrift.protocol.TList _list925 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list925.size); + String _elem926; + for (int _i927 = 0; _i927 < _list925.size; ++_i927) { - _elem918 = iprot.readString(); - struct.success.add(_elem918); + _elem926 = iprot.readString(); + struct.success.add(_elem926); } } struct.setSuccessIsSet(true); @@ -41348,13 +41348,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_all_databases_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list920 = iprot.readListBegin(); - struct.success = new ArrayList(_list920.size); - String _elem921; - for (int _i922 = 0; _i922 < _list920.size; ++_i922) + org.apache.thrift.protocol.TList _list928 = iprot.readListBegin(); + struct.success = new ArrayList(_list928.size); + String _elem929; + for (int _i930 = 0; _i930 < _list928.size; ++_i930) { - _elem921 = iprot.readString(); - struct.success.add(_elem921); + _elem929 = iprot.readString(); + struct.success.add(_elem929); } iprot.readListEnd(); } @@ -41389,9 +41389,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_all_databases_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter923 : struct.success) + for (String _iter931 : struct.success) { - oprot.writeString(_iter923); + oprot.writeString(_iter931); } oprot.writeListEnd(); } @@ -41430,9 +41430,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_all_databases_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter924 : struct.success) + for (String _iter932 : struct.success) { - oprot.writeString(_iter924); + oprot.writeString(_iter932); } } } @@ -41447,13 +41447,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_databases_re BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list925 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list925.size); - String _elem926; - for (int _i927 = 0; _i927 < _list925.size; ++_i927) + org.apache.thrift.protocol.TList _list933 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list933.size); + String _elem934; + for (int _i935 = 0; _i935 < _list933.size; ++_i935) { - _elem926 = iprot.readString(); - struct.success.add(_elem926); + _elem934 = iprot.readString(); + struct.success.add(_elem934); } } struct.setSuccessIsSet(true); @@ -46060,16 +46060,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_type_all_result case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map928 = iprot.readMapBegin(); - struct.success = new HashMap(2*_map928.size); - String _key929; - Type _val930; - for (int _i931 = 0; _i931 < _map928.size; ++_i931) + org.apache.thrift.protocol.TMap _map936 = iprot.readMapBegin(); + struct.success = new HashMap(2*_map936.size); + String _key937; + Type _val938; + for (int _i939 = 0; _i939 < _map936.size; ++_i939) { - _key929 = iprot.readString(); - _val930 = new Type(); - _val930.read(iprot); - struct.success.put(_key929, _val930); + _key937 = iprot.readString(); + _val938 = new Type(); + _val938.read(iprot); + struct.success.put(_key937, _val938); } iprot.readMapEnd(); } @@ -46104,10 +46104,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_type_all_resul 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 _iter932 : struct.success.entrySet()) + for (Map.Entry _iter940 : struct.success.entrySet()) { - oprot.writeString(_iter932.getKey()); - _iter932.getValue().write(oprot); + oprot.writeString(_iter940.getKey()); + _iter940.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -46146,10 +46146,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_type_all_result if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Map.Entry _iter933 : struct.success.entrySet()) + for (Map.Entry _iter941 : struct.success.entrySet()) { - oprot.writeString(_iter933.getKey()); - _iter933.getValue().write(oprot); + oprot.writeString(_iter941.getKey()); + _iter941.getValue().write(oprot); } } } @@ -46164,16 +46164,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_type_all_result BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map934 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new HashMap(2*_map934.size); - String _key935; - Type _val936; - for (int _i937 = 0; _i937 < _map934.size; ++_i937) + org.apache.thrift.protocol.TMap _map942 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new HashMap(2*_map942.size); + String _key943; + Type _val944; + for (int _i945 = 0; _i945 < _map942.size; ++_i945) { - _key935 = iprot.readString(); - _val936 = new Type(); - _val936.read(iprot); - struct.success.put(_key935, _val936); + _key943 = iprot.readString(); + _val944 = new Type(); + _val944.read(iprot); + struct.success.put(_key943, _val944); } } struct.setSuccessIsSet(true); @@ -47208,14 +47208,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_fields_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list938 = iprot.readListBegin(); - struct.success = new ArrayList(_list938.size); - FieldSchema _elem939; - for (int _i940 = 0; _i940 < _list938.size; ++_i940) + org.apache.thrift.protocol.TList _list946 = iprot.readListBegin(); + struct.success = new ArrayList(_list946.size); + FieldSchema _elem947; + for (int _i948 = 0; _i948 < _list946.size; ++_i948) { - _elem939 = new FieldSchema(); - _elem939.read(iprot); - struct.success.add(_elem939); + _elem947 = new FieldSchema(); + _elem947.read(iprot); + struct.success.add(_elem947); } iprot.readListEnd(); } @@ -47268,9 +47268,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_fields_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (FieldSchema _iter941 : struct.success) + for (FieldSchema _iter949 : struct.success) { - _iter941.write(oprot); + _iter949.write(oprot); } oprot.writeListEnd(); } @@ -47325,9 +47325,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_fields_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter942 : struct.success) + for (FieldSchema _iter950 : struct.success) { - _iter942.write(oprot); + _iter950.write(oprot); } } } @@ -47348,14 +47348,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_fields_result st BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list943 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list943.size); - FieldSchema _elem944; - for (int _i945 = 0; _i945 < _list943.size; ++_i945) + org.apache.thrift.protocol.TList _list951 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list951.size); + FieldSchema _elem952; + for (int _i953 = 0; _i953 < _list951.size; ++_i953) { - _elem944 = new FieldSchema(); - _elem944.read(iprot); - struct.success.add(_elem944); + _elem952 = new FieldSchema(); + _elem952.read(iprot); + struct.success.add(_elem952); } } struct.setSuccessIsSet(true); @@ -48509,14 +48509,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_fields_with_env case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list946 = iprot.readListBegin(); - struct.success = new ArrayList(_list946.size); - FieldSchema _elem947; - for (int _i948 = 0; _i948 < _list946.size; ++_i948) + org.apache.thrift.protocol.TList _list954 = iprot.readListBegin(); + struct.success = new ArrayList(_list954.size); + FieldSchema _elem955; + for (int _i956 = 0; _i956 < _list954.size; ++_i956) { - _elem947 = new FieldSchema(); - _elem947.read(iprot); - struct.success.add(_elem947); + _elem955 = new FieldSchema(); + _elem955.read(iprot); + struct.success.add(_elem955); } iprot.readListEnd(); } @@ -48569,9 +48569,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_fields_with_en oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (FieldSchema _iter949 : struct.success) + for (FieldSchema _iter957 : struct.success) { - _iter949.write(oprot); + _iter957.write(oprot); } oprot.writeListEnd(); } @@ -48626,9 +48626,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_fields_with_env if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter950 : struct.success) + for (FieldSchema _iter958 : struct.success) { - _iter950.write(oprot); + _iter958.write(oprot); } } } @@ -48649,14 +48649,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_fields_with_envi BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list951 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list951.size); - FieldSchema _elem952; - for (int _i953 = 0; _i953 < _list951.size; ++_i953) + org.apache.thrift.protocol.TList _list959 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list959.size); + FieldSchema _elem960; + for (int _i961 = 0; _i961 < _list959.size; ++_i961) { - _elem952 = new FieldSchema(); - _elem952.read(iprot); - struct.success.add(_elem952); + _elem960 = new FieldSchema(); + _elem960.read(iprot); + struct.success.add(_elem960); } } struct.setSuccessIsSet(true); @@ -49701,14 +49701,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_schema_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list954 = iprot.readListBegin(); - struct.success = new ArrayList(_list954.size); - FieldSchema _elem955; - for (int _i956 = 0; _i956 < _list954.size; ++_i956) + org.apache.thrift.protocol.TList _list962 = iprot.readListBegin(); + struct.success = new ArrayList(_list962.size); + FieldSchema _elem963; + for (int _i964 = 0; _i964 < _list962.size; ++_i964) { - _elem955 = new FieldSchema(); - _elem955.read(iprot); - struct.success.add(_elem955); + _elem963 = new FieldSchema(); + _elem963.read(iprot); + struct.success.add(_elem963); } iprot.readListEnd(); } @@ -49761,9 +49761,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_schema_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (FieldSchema _iter957 : struct.success) + for (FieldSchema _iter965 : struct.success) { - _iter957.write(oprot); + _iter965.write(oprot); } oprot.writeListEnd(); } @@ -49818,9 +49818,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_schema_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter958 : struct.success) + for (FieldSchema _iter966 : struct.success) { - _iter958.write(oprot); + _iter966.write(oprot); } } } @@ -49841,14 +49841,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_schema_result st BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list959 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list959.size); - FieldSchema _elem960; - for (int _i961 = 0; _i961 < _list959.size; ++_i961) + org.apache.thrift.protocol.TList _list967 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list967.size); + FieldSchema _elem968; + for (int _i969 = 0; _i969 < _list967.size; ++_i969) { - _elem960 = new FieldSchema(); - _elem960.read(iprot); - struct.success.add(_elem960); + _elem968 = new FieldSchema(); + _elem968.read(iprot); + struct.success.add(_elem968); } } struct.setSuccessIsSet(true); @@ -51002,14 +51002,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_schema_with_env case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list962 = iprot.readListBegin(); - struct.success = new ArrayList(_list962.size); - FieldSchema _elem963; - for (int _i964 = 0; _i964 < _list962.size; ++_i964) + org.apache.thrift.protocol.TList _list970 = iprot.readListBegin(); + struct.success = new ArrayList(_list970.size); + FieldSchema _elem971; + for (int _i972 = 0; _i972 < _list970.size; ++_i972) { - _elem963 = new FieldSchema(); - _elem963.read(iprot); - struct.success.add(_elem963); + _elem971 = new FieldSchema(); + _elem971.read(iprot); + struct.success.add(_elem971); } iprot.readListEnd(); } @@ -51062,9 +51062,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_schema_with_en oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (FieldSchema _iter965 : struct.success) + for (FieldSchema _iter973 : struct.success) { - _iter965.write(oprot); + _iter973.write(oprot); } oprot.writeListEnd(); } @@ -51119,9 +51119,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_schema_with_env if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter966 : struct.success) + for (FieldSchema _iter974 : struct.success) { - _iter966.write(oprot); + _iter974.write(oprot); } } } @@ -51142,14 +51142,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_schema_with_envi BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list967 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list967.size); - FieldSchema _elem968; - for (int _i969 = 0; _i969 < _list967.size; ++_i969) + org.apache.thrift.protocol.TList _list975 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list975.size); + FieldSchema _elem976; + for (int _i977 = 0; _i977 < _list975.size; ++_i977) { - _elem968 = new FieldSchema(); - _elem968.read(iprot); - struct.success.add(_elem968); + _elem976 = new FieldSchema(); + _elem976.read(iprot); + struct.success.add(_elem976); } } struct.setSuccessIsSet(true); @@ -54278,14 +54278,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, create_table_with_c case 2: // PRIMARY_KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list970 = iprot.readListBegin(); - struct.primaryKeys = new ArrayList(_list970.size); - SQLPrimaryKey _elem971; - for (int _i972 = 0; _i972 < _list970.size; ++_i972) + org.apache.thrift.protocol.TList _list978 = iprot.readListBegin(); + struct.primaryKeys = new ArrayList(_list978.size); + SQLPrimaryKey _elem979; + for (int _i980 = 0; _i980 < _list978.size; ++_i980) { - _elem971 = new SQLPrimaryKey(); - _elem971.read(iprot); - struct.primaryKeys.add(_elem971); + _elem979 = new SQLPrimaryKey(); + _elem979.read(iprot); + struct.primaryKeys.add(_elem979); } iprot.readListEnd(); } @@ -54297,14 +54297,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, create_table_with_c case 3: // FOREIGN_KEYS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list973 = iprot.readListBegin(); - struct.foreignKeys = new ArrayList(_list973.size); - SQLForeignKey _elem974; - for (int _i975 = 0; _i975 < _list973.size; ++_i975) + org.apache.thrift.protocol.TList _list981 = iprot.readListBegin(); + struct.foreignKeys = new ArrayList(_list981.size); + SQLForeignKey _elem982; + for (int _i983 = 0; _i983 < _list981.size; ++_i983) { - _elem974 = new SQLForeignKey(); - _elem974.read(iprot); - struct.foreignKeys.add(_elem974); + _elem982 = new SQLForeignKey(); + _elem982.read(iprot); + struct.foreignKeys.add(_elem982); } iprot.readListEnd(); } @@ -54316,14 +54316,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, create_table_with_c case 4: // UNIQUE_CONSTRAINTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list976 = iprot.readListBegin(); - struct.uniqueConstraints = new ArrayList(_list976.size); - SQLUniqueConstraint _elem977; - for (int _i978 = 0; _i978 < _list976.size; ++_i978) + org.apache.thrift.protocol.TList _list984 = iprot.readListBegin(); + struct.uniqueConstraints = new ArrayList(_list984.size); + SQLUniqueConstraint _elem985; + for (int _i986 = 0; _i986 < _list984.size; ++_i986) { - _elem977 = new SQLUniqueConstraint(); - _elem977.read(iprot); - struct.uniqueConstraints.add(_elem977); + _elem985 = new SQLUniqueConstraint(); + _elem985.read(iprot); + struct.uniqueConstraints.add(_elem985); } iprot.readListEnd(); } @@ -54335,14 +54335,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, create_table_with_c case 5: // NOT_NULL_CONSTRAINTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list979 = iprot.readListBegin(); - struct.notNullConstraints = new ArrayList(_list979.size); - SQLNotNullConstraint _elem980; - for (int _i981 = 0; _i981 < _list979.size; ++_i981) + org.apache.thrift.protocol.TList _list987 = iprot.readListBegin(); + struct.notNullConstraints = new ArrayList(_list987.size); + SQLNotNullConstraint _elem988; + for (int _i989 = 0; _i989 < _list987.size; ++_i989) { - _elem980 = new SQLNotNullConstraint(); - _elem980.read(iprot); - struct.notNullConstraints.add(_elem980); + _elem988 = new SQLNotNullConstraint(); + _elem988.read(iprot); + struct.notNullConstraints.add(_elem988); } iprot.readListEnd(); } @@ -54354,14 +54354,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, create_table_with_c case 6: // DEFAULT_CONSTRAINTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list982 = iprot.readListBegin(); - struct.defaultConstraints = new ArrayList(_list982.size); - SQLDefaultConstraint _elem983; - for (int _i984 = 0; _i984 < _list982.size; ++_i984) + org.apache.thrift.protocol.TList _list990 = iprot.readListBegin(); + struct.defaultConstraints = new ArrayList(_list990.size); + SQLDefaultConstraint _elem991; + for (int _i992 = 0; _i992 < _list990.size; ++_i992) { - _elem983 = new SQLDefaultConstraint(); - _elem983.read(iprot); - struct.defaultConstraints.add(_elem983); + _elem991 = new SQLDefaultConstraint(); + _elem991.read(iprot); + struct.defaultConstraints.add(_elem991); } iprot.readListEnd(); } @@ -54373,14 +54373,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, create_table_with_c case 7: // CHECK_CONSTRAINTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list985 = iprot.readListBegin(); - struct.checkConstraints = new ArrayList(_list985.size); - SQLCheckConstraint _elem986; - for (int _i987 = 0; _i987 < _list985.size; ++_i987) + org.apache.thrift.protocol.TList _list993 = iprot.readListBegin(); + struct.checkConstraints = new ArrayList(_list993.size); + SQLCheckConstraint _elem994; + for (int _i995 = 0; _i995 < _list993.size; ++_i995) { - _elem986 = new SQLCheckConstraint(); - _elem986.read(iprot); - struct.checkConstraints.add(_elem986); + _elem994 = new SQLCheckConstraint(); + _elem994.read(iprot); + struct.checkConstraints.add(_elem994); } iprot.readListEnd(); } @@ -54411,9 +54411,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, create_table_with_ oprot.writeFieldBegin(PRIMARY_KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.primaryKeys.size())); - for (SQLPrimaryKey _iter988 : struct.primaryKeys) + for (SQLPrimaryKey _iter996 : struct.primaryKeys) { - _iter988.write(oprot); + _iter996.write(oprot); } oprot.writeListEnd(); } @@ -54423,9 +54423,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, create_table_with_ oprot.writeFieldBegin(FOREIGN_KEYS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.foreignKeys.size())); - for (SQLForeignKey _iter989 : struct.foreignKeys) + for (SQLForeignKey _iter997 : struct.foreignKeys) { - _iter989.write(oprot); + _iter997.write(oprot); } oprot.writeListEnd(); } @@ -54435,9 +54435,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, create_table_with_ oprot.writeFieldBegin(UNIQUE_CONSTRAINTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.uniqueConstraints.size())); - for (SQLUniqueConstraint _iter990 : struct.uniqueConstraints) + for (SQLUniqueConstraint _iter998 : struct.uniqueConstraints) { - _iter990.write(oprot); + _iter998.write(oprot); } oprot.writeListEnd(); } @@ -54447,9 +54447,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, create_table_with_ oprot.writeFieldBegin(NOT_NULL_CONSTRAINTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.notNullConstraints.size())); - for (SQLNotNullConstraint _iter991 : struct.notNullConstraints) + for (SQLNotNullConstraint _iter999 : struct.notNullConstraints) { - _iter991.write(oprot); + _iter999.write(oprot); } oprot.writeListEnd(); } @@ -54459,9 +54459,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, create_table_with_ oprot.writeFieldBegin(DEFAULT_CONSTRAINTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.defaultConstraints.size())); - for (SQLDefaultConstraint _iter992 : struct.defaultConstraints) + for (SQLDefaultConstraint _iter1000 : struct.defaultConstraints) { - _iter992.write(oprot); + _iter1000.write(oprot); } oprot.writeListEnd(); } @@ -54471,9 +54471,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, create_table_with_ oprot.writeFieldBegin(CHECK_CONSTRAINTS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.checkConstraints.size())); - for (SQLCheckConstraint _iter993 : struct.checkConstraints) + for (SQLCheckConstraint _iter1001 : struct.checkConstraints) { - _iter993.write(oprot); + _iter1001.write(oprot); } oprot.writeListEnd(); } @@ -54525,54 +54525,54 @@ public void write(org.apache.thrift.protocol.TProtocol prot, create_table_with_c if (struct.isSetPrimaryKeys()) { { oprot.writeI32(struct.primaryKeys.size()); - for (SQLPrimaryKey _iter994 : struct.primaryKeys) + for (SQLPrimaryKey _iter1002 : struct.primaryKeys) { - _iter994.write(oprot); + _iter1002.write(oprot); } } } if (struct.isSetForeignKeys()) { { oprot.writeI32(struct.foreignKeys.size()); - for (SQLForeignKey _iter995 : struct.foreignKeys) + for (SQLForeignKey _iter1003 : struct.foreignKeys) { - _iter995.write(oprot); + _iter1003.write(oprot); } } } if (struct.isSetUniqueConstraints()) { { oprot.writeI32(struct.uniqueConstraints.size()); - for (SQLUniqueConstraint _iter996 : struct.uniqueConstraints) + for (SQLUniqueConstraint _iter1004 : struct.uniqueConstraints) { - _iter996.write(oprot); + _iter1004.write(oprot); } } } if (struct.isSetNotNullConstraints()) { { oprot.writeI32(struct.notNullConstraints.size()); - for (SQLNotNullConstraint _iter997 : struct.notNullConstraints) + for (SQLNotNullConstraint _iter1005 : struct.notNullConstraints) { - _iter997.write(oprot); + _iter1005.write(oprot); } } } if (struct.isSetDefaultConstraints()) { { oprot.writeI32(struct.defaultConstraints.size()); - for (SQLDefaultConstraint _iter998 : struct.defaultConstraints) + for (SQLDefaultConstraint _iter1006 : struct.defaultConstraints) { - _iter998.write(oprot); + _iter1006.write(oprot); } } } if (struct.isSetCheckConstraints()) { { oprot.writeI32(struct.checkConstraints.size()); - for (SQLCheckConstraint _iter999 : struct.checkConstraints) + for (SQLCheckConstraint _iter1007 : struct.checkConstraints) { - _iter999.write(oprot); + _iter1007.write(oprot); } } } @@ -54589,84 +54589,84 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1000 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.primaryKeys = new ArrayList(_list1000.size); - SQLPrimaryKey _elem1001; - for (int _i1002 = 0; _i1002 < _list1000.size; ++_i1002) + org.apache.thrift.protocol.TList _list1008 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.primaryKeys = new ArrayList(_list1008.size); + SQLPrimaryKey _elem1009; + for (int _i1010 = 0; _i1010 < _list1008.size; ++_i1010) { - _elem1001 = new SQLPrimaryKey(); - _elem1001.read(iprot); - struct.primaryKeys.add(_elem1001); + _elem1009 = new SQLPrimaryKey(); + _elem1009.read(iprot); + struct.primaryKeys.add(_elem1009); } } struct.setPrimaryKeysIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1003 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.foreignKeys = new ArrayList(_list1003.size); - SQLForeignKey _elem1004; - for (int _i1005 = 0; _i1005 < _list1003.size; ++_i1005) + org.apache.thrift.protocol.TList _list1011 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.foreignKeys = new ArrayList(_list1011.size); + SQLForeignKey _elem1012; + for (int _i1013 = 0; _i1013 < _list1011.size; ++_i1013) { - _elem1004 = new SQLForeignKey(); - _elem1004.read(iprot); - struct.foreignKeys.add(_elem1004); + _elem1012 = new SQLForeignKey(); + _elem1012.read(iprot); + struct.foreignKeys.add(_elem1012); } } struct.setForeignKeysIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list1006 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.uniqueConstraints = new ArrayList(_list1006.size); - SQLUniqueConstraint _elem1007; - for (int _i1008 = 0; _i1008 < _list1006.size; ++_i1008) + org.apache.thrift.protocol.TList _list1014 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.uniqueConstraints = new ArrayList(_list1014.size); + SQLUniqueConstraint _elem1015; + for (int _i1016 = 0; _i1016 < _list1014.size; ++_i1016) { - _elem1007 = new SQLUniqueConstraint(); - _elem1007.read(iprot); - struct.uniqueConstraints.add(_elem1007); + _elem1015 = new SQLUniqueConstraint(); + _elem1015.read(iprot); + struct.uniqueConstraints.add(_elem1015); } } struct.setUniqueConstraintsIsSet(true); } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1009 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.notNullConstraints = new ArrayList(_list1009.size); - SQLNotNullConstraint _elem1010; - for (int _i1011 = 0; _i1011 < _list1009.size; ++_i1011) + org.apache.thrift.protocol.TList _list1017 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.notNullConstraints = new ArrayList(_list1017.size); + SQLNotNullConstraint _elem1018; + for (int _i1019 = 0; _i1019 < _list1017.size; ++_i1019) { - _elem1010 = new SQLNotNullConstraint(); - _elem1010.read(iprot); - struct.notNullConstraints.add(_elem1010); + _elem1018 = new SQLNotNullConstraint(); + _elem1018.read(iprot); + struct.notNullConstraints.add(_elem1018); } } struct.setNotNullConstraintsIsSet(true); } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1012 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.defaultConstraints = new ArrayList(_list1012.size); - SQLDefaultConstraint _elem1013; - for (int _i1014 = 0; _i1014 < _list1012.size; ++_i1014) + org.apache.thrift.protocol.TList _list1020 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.defaultConstraints = new ArrayList(_list1020.size); + SQLDefaultConstraint _elem1021; + for (int _i1022 = 0; _i1022 < _list1020.size; ++_i1022) { - _elem1013 = new SQLDefaultConstraint(); - _elem1013.read(iprot); - struct.defaultConstraints.add(_elem1013); + _elem1021 = new SQLDefaultConstraint(); + _elem1021.read(iprot); + struct.defaultConstraints.add(_elem1021); } } struct.setDefaultConstraintsIsSet(true); } if (incoming.get(6)) { { - org.apache.thrift.protocol.TList _list1015 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.checkConstraints = new ArrayList(_list1015.size); - SQLCheckConstraint _elem1016; - for (int _i1017 = 0; _i1017 < _list1015.size; ++_i1017) + org.apache.thrift.protocol.TList _list1023 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.checkConstraints = new ArrayList(_list1023.size); + SQLCheckConstraint _elem1024; + for (int _i1025 = 0; _i1025 < _list1023.size; ++_i1025) { - _elem1016 = new SQLCheckConstraint(); - _elem1016.read(iprot); - struct.checkConstraints.add(_elem1016); + _elem1024 = new SQLCheckConstraint(); + _elem1024.read(iprot); + struct.checkConstraints.add(_elem1024); } } struct.setCheckConstraintsIsSet(true); @@ -63816,13 +63816,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, truncate_table_args case 3: // PART_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1018 = iprot.readListBegin(); - struct.partNames = new ArrayList(_list1018.size); - String _elem1019; - for (int _i1020 = 0; _i1020 < _list1018.size; ++_i1020) + org.apache.thrift.protocol.TList _list1026 = iprot.readListBegin(); + struct.partNames = new ArrayList(_list1026.size); + String _elem1027; + for (int _i1028 = 0; _i1028 < _list1026.size; ++_i1028) { - _elem1019 = iprot.readString(); - struct.partNames.add(_elem1019); + _elem1027 = iprot.readString(); + struct.partNames.add(_elem1027); } iprot.readListEnd(); } @@ -63858,9 +63858,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, truncate_table_arg oprot.writeFieldBegin(PART_NAMES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.partNames.size())); - for (String _iter1021 : struct.partNames) + for (String _iter1029 : struct.partNames) { - oprot.writeString(_iter1021); + oprot.writeString(_iter1029); } oprot.writeListEnd(); } @@ -63903,9 +63903,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, truncate_table_args if (struct.isSetPartNames()) { { oprot.writeI32(struct.partNames.size()); - for (String _iter1022 : struct.partNames) + for (String _iter1030 : struct.partNames) { - oprot.writeString(_iter1022); + oprot.writeString(_iter1030); } } } @@ -63925,13 +63925,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, truncate_table_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1023 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.partNames = new ArrayList(_list1023.size); - String _elem1024; - for (int _i1025 = 0; _i1025 < _list1023.size; ++_i1025) + org.apache.thrift.protocol.TList _list1031 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.partNames = new ArrayList(_list1031.size); + String _elem1032; + for (int _i1033 = 0; _i1033 < _list1031.size; ++_i1033) { - _elem1024 = iprot.readString(); - struct.partNames.add(_elem1024); + _elem1032 = iprot.readString(); + struct.partNames.add(_elem1032); } } struct.setPartNamesIsSet(true); @@ -65156,13 +65156,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_tables_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1026 = iprot.readListBegin(); - struct.success = new ArrayList(_list1026.size); - String _elem1027; - for (int _i1028 = 0; _i1028 < _list1026.size; ++_i1028) + org.apache.thrift.protocol.TList _list1034 = iprot.readListBegin(); + struct.success = new ArrayList(_list1034.size); + String _elem1035; + for (int _i1036 = 0; _i1036 < _list1034.size; ++_i1036) { - _elem1027 = iprot.readString(); - struct.success.add(_elem1027); + _elem1035 = iprot.readString(); + struct.success.add(_elem1035); } iprot.readListEnd(); } @@ -65197,9 +65197,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_tables_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1029 : struct.success) + for (String _iter1037 : struct.success) { - oprot.writeString(_iter1029); + oprot.writeString(_iter1037); } oprot.writeListEnd(); } @@ -65238,9 +65238,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_tables_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1030 : struct.success) + for (String _iter1038 : struct.success) { - oprot.writeString(_iter1030); + oprot.writeString(_iter1038); } } } @@ -65255,13 +65255,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_result st BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1031 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1031.size); - String _elem1032; - for (int _i1033 = 0; _i1033 < _list1031.size; ++_i1033) + org.apache.thrift.protocol.TList _list1039 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1039.size); + String _elem1040; + for (int _i1041 = 0; _i1041 < _list1039.size; ++_i1041) { - _elem1032 = iprot.readString(); - struct.success.add(_elem1032); + _elem1040 = iprot.readString(); + struct.success.add(_elem1040); } } struct.setSuccessIsSet(true); @@ -66235,13 +66235,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_tables_by_type_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1034 = iprot.readListBegin(); - struct.success = new ArrayList(_list1034.size); - String _elem1035; - for (int _i1036 = 0; _i1036 < _list1034.size; ++_i1036) + org.apache.thrift.protocol.TList _list1042 = iprot.readListBegin(); + struct.success = new ArrayList(_list1042.size); + String _elem1043; + for (int _i1044 = 0; _i1044 < _list1042.size; ++_i1044) { - _elem1035 = iprot.readString(); - struct.success.add(_elem1035); + _elem1043 = iprot.readString(); + struct.success.add(_elem1043); } iprot.readListEnd(); } @@ -66276,9 +66276,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_tables_by_type oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1037 : struct.success) + for (String _iter1045 : struct.success) { - oprot.writeString(_iter1037); + oprot.writeString(_iter1045); } oprot.writeListEnd(); } @@ -66317,9 +66317,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_tables_by_type_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1038 : struct.success) + for (String _iter1046 : struct.success) { - oprot.writeString(_iter1038); + oprot.writeString(_iter1046); } } } @@ -66334,13 +66334,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_by_type_r BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1039 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1039.size); - String _elem1040; - for (int _i1041 = 0; _i1041 < _list1039.size; ++_i1041) + org.apache.thrift.protocol.TList _list1047 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1047.size); + String _elem1048; + for (int _i1049 = 0; _i1049 < _list1047.size; ++_i1049) { - _elem1040 = iprot.readString(); - struct.success.add(_elem1040); + _elem1048 = iprot.readString(); + struct.success.add(_elem1048); } } struct.setSuccessIsSet(true); @@ -67106,13 +67106,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_materialized_vi case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1042 = iprot.readListBegin(); - struct.success = new ArrayList(_list1042.size); - String _elem1043; - for (int _i1044 = 0; _i1044 < _list1042.size; ++_i1044) + org.apache.thrift.protocol.TList _list1050 = iprot.readListBegin(); + struct.success = new ArrayList(_list1050.size); + String _elem1051; + for (int _i1052 = 0; _i1052 < _list1050.size; ++_i1052) { - _elem1043 = iprot.readString(); - struct.success.add(_elem1043); + _elem1051 = iprot.readString(); + struct.success.add(_elem1051); } iprot.readListEnd(); } @@ -67147,9 +67147,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_materialized_v oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1045 : struct.success) + for (String _iter1053 : struct.success) { - oprot.writeString(_iter1045); + oprot.writeString(_iter1053); } oprot.writeListEnd(); } @@ -67188,9 +67188,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_materialized_vi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1046 : struct.success) + for (String _iter1054 : struct.success) { - oprot.writeString(_iter1046); + oprot.writeString(_iter1054); } } } @@ -67205,13 +67205,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_materialized_vie BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1047 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1047.size); - String _elem1048; - for (int _i1049 = 0; _i1049 < _list1047.size; ++_i1049) + org.apache.thrift.protocol.TList _list1055 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1055.size); + String _elem1056; + for (int _i1057 = 0; _i1057 < _list1055.size; ++_i1057) { - _elem1048 = iprot.readString(); - struct.success.add(_elem1048); + _elem1056 = iprot.readString(); + struct.success.add(_elem1056); } } struct.setSuccessIsSet(true); @@ -67716,13 +67716,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_table_meta_args case 3: // TBL_TYPES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1050 = iprot.readListBegin(); - struct.tbl_types = new ArrayList(_list1050.size); - String _elem1051; - for (int _i1052 = 0; _i1052 < _list1050.size; ++_i1052) + org.apache.thrift.protocol.TList _list1058 = iprot.readListBegin(); + struct.tbl_types = new ArrayList(_list1058.size); + String _elem1059; + for (int _i1060 = 0; _i1060 < _list1058.size; ++_i1060) { - _elem1051 = iprot.readString(); - struct.tbl_types.add(_elem1051); + _elem1059 = iprot.readString(); + struct.tbl_types.add(_elem1059); } iprot.readListEnd(); } @@ -67758,9 +67758,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_table_meta_arg oprot.writeFieldBegin(TBL_TYPES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.tbl_types.size())); - for (String _iter1053 : struct.tbl_types) + for (String _iter1061 : struct.tbl_types) { - oprot.writeString(_iter1053); + oprot.writeString(_iter1061); } oprot.writeListEnd(); } @@ -67803,9 +67803,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_meta_args if (struct.isSetTbl_types()) { { oprot.writeI32(struct.tbl_types.size()); - for (String _iter1054 : struct.tbl_types) + for (String _iter1062 : struct.tbl_types) { - oprot.writeString(_iter1054); + oprot.writeString(_iter1062); } } } @@ -67825,13 +67825,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_meta_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1055 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tbl_types = new ArrayList(_list1055.size); - String _elem1056; - for (int _i1057 = 0; _i1057 < _list1055.size; ++_i1057) + org.apache.thrift.protocol.TList _list1063 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tbl_types = new ArrayList(_list1063.size); + String _elem1064; + for (int _i1065 = 0; _i1065 < _list1063.size; ++_i1065) { - _elem1056 = iprot.readString(); - struct.tbl_types.add(_elem1056); + _elem1064 = iprot.readString(); + struct.tbl_types.add(_elem1064); } } struct.setTbl_typesIsSet(true); @@ -68237,14 +68237,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_table_meta_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1058 = iprot.readListBegin(); - struct.success = new ArrayList(_list1058.size); - TableMeta _elem1059; - for (int _i1060 = 0; _i1060 < _list1058.size; ++_i1060) + org.apache.thrift.protocol.TList _list1066 = iprot.readListBegin(); + struct.success = new ArrayList(_list1066.size); + TableMeta _elem1067; + for (int _i1068 = 0; _i1068 < _list1066.size; ++_i1068) { - _elem1059 = new TableMeta(); - _elem1059.read(iprot); - struct.success.add(_elem1059); + _elem1067 = new TableMeta(); + _elem1067.read(iprot); + struct.success.add(_elem1067); } iprot.readListEnd(); } @@ -68279,9 +68279,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_table_meta_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (TableMeta _iter1061 : struct.success) + for (TableMeta _iter1069 : struct.success) { - _iter1061.write(oprot); + _iter1069.write(oprot); } oprot.writeListEnd(); } @@ -68320,9 +68320,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_meta_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TableMeta _iter1062 : struct.success) + for (TableMeta _iter1070 : struct.success) { - _iter1062.write(oprot); + _iter1070.write(oprot); } } } @@ -68337,14 +68337,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_meta_resul BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1063 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1063.size); - TableMeta _elem1064; - for (int _i1065 = 0; _i1065 < _list1063.size; ++_i1065) + org.apache.thrift.protocol.TList _list1071 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1071.size); + TableMeta _elem1072; + for (int _i1073 = 0; _i1073 < _list1071.size; ++_i1073) { - _elem1064 = new TableMeta(); - _elem1064.read(iprot); - struct.success.add(_elem1064); + _elem1072 = new TableMeta(); + _elem1072.read(iprot); + struct.success.add(_elem1072); } } struct.setSuccessIsSet(true); @@ -69110,13 +69110,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_all_tables_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1066 = iprot.readListBegin(); - struct.success = new ArrayList(_list1066.size); - String _elem1067; - for (int _i1068 = 0; _i1068 < _list1066.size; ++_i1068) + org.apache.thrift.protocol.TList _list1074 = iprot.readListBegin(); + struct.success = new ArrayList(_list1074.size); + String _elem1075; + for (int _i1076 = 0; _i1076 < _list1074.size; ++_i1076) { - _elem1067 = iprot.readString(); - struct.success.add(_elem1067); + _elem1075 = iprot.readString(); + struct.success.add(_elem1075); } iprot.readListEnd(); } @@ -69151,9 +69151,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_all_tables_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1069 : struct.success) + for (String _iter1077 : struct.success) { - oprot.writeString(_iter1069); + oprot.writeString(_iter1077); } oprot.writeListEnd(); } @@ -69192,9 +69192,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_all_tables_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1070 : struct.success) + for (String _iter1078 : struct.success) { - oprot.writeString(_iter1070); + oprot.writeString(_iter1078); } } } @@ -69209,13 +69209,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_tables_resul BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1071 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1071.size); - String _elem1072; - for (int _i1073 = 0; _i1073 < _list1071.size; ++_i1073) + org.apache.thrift.protocol.TList _list1079 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1079.size); + String _elem1080; + for (int _i1081 = 0; _i1081 < _list1079.size; ++_i1081) { - _elem1072 = iprot.readString(); - struct.success.add(_elem1072); + _elem1080 = iprot.readString(); + struct.success.add(_elem1080); } } struct.setSuccessIsSet(true); @@ -70668,13 +70668,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_table_objects_b case 2: // TBL_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1074 = iprot.readListBegin(); - struct.tbl_names = new ArrayList(_list1074.size); - String _elem1075; - for (int _i1076 = 0; _i1076 < _list1074.size; ++_i1076) + org.apache.thrift.protocol.TList _list1082 = iprot.readListBegin(); + struct.tbl_names = new ArrayList(_list1082.size); + String _elem1083; + for (int _i1084 = 0; _i1084 < _list1082.size; ++_i1084) { - _elem1075 = iprot.readString(); - struct.tbl_names.add(_elem1075); + _elem1083 = iprot.readString(); + struct.tbl_names.add(_elem1083); } iprot.readListEnd(); } @@ -70705,9 +70705,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_table_objects_ 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 _iter1077 : struct.tbl_names) + for (String _iter1085 : struct.tbl_names) { - oprot.writeString(_iter1077); + oprot.writeString(_iter1085); } oprot.writeListEnd(); } @@ -70744,9 +70744,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_objects_b if (struct.isSetTbl_names()) { { oprot.writeI32(struct.tbl_names.size()); - for (String _iter1078 : struct.tbl_names) + for (String _iter1086 : struct.tbl_names) { - oprot.writeString(_iter1078); + oprot.writeString(_iter1086); } } } @@ -70762,13 +70762,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_objects_by } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1079 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tbl_names = new ArrayList(_list1079.size); - String _elem1080; - for (int _i1081 = 0; _i1081 < _list1079.size; ++_i1081) + org.apache.thrift.protocol.TList _list1087 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tbl_names = new ArrayList(_list1087.size); + String _elem1088; + for (int _i1089 = 0; _i1089 < _list1087.size; ++_i1089) { - _elem1080 = iprot.readString(); - struct.tbl_names.add(_elem1080); + _elem1088 = iprot.readString(); + struct.tbl_names.add(_elem1088); } } struct.setTbl_namesIsSet(true); @@ -71093,14 +71093,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_table_objects_b case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1082 = iprot.readListBegin(); - struct.success = new ArrayList
(_list1082.size); - Table _elem1083; - for (int _i1084 = 0; _i1084 < _list1082.size; ++_i1084) + org.apache.thrift.protocol.TList _list1090 = iprot.readListBegin(); + struct.success = new ArrayList
(_list1090.size); + Table _elem1091; + for (int _i1092 = 0; _i1092 < _list1090.size; ++_i1092) { - _elem1083 = new Table(); - _elem1083.read(iprot); - struct.success.add(_elem1083); + _elem1091 = new Table(); + _elem1091.read(iprot); + struct.success.add(_elem1091); } iprot.readListEnd(); } @@ -71126,9 +71126,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_table_objects_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Table _iter1085 : struct.success) + for (Table _iter1093 : struct.success) { - _iter1085.write(oprot); + _iter1093.write(oprot); } oprot.writeListEnd(); } @@ -71159,9 +71159,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_objects_b if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Table _iter1086 : struct.success) + for (Table _iter1094 : struct.success) { - _iter1086.write(oprot); + _iter1094.write(oprot); } } } @@ -71173,14 +71173,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_objects_by BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1087 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList
(_list1087.size); - Table _elem1088; - for (int _i1089 = 0; _i1089 < _list1087.size; ++_i1089) + org.apache.thrift.protocol.TList _list1095 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList
(_list1095.size); + Table _elem1096; + for (int _i1097 = 0; _i1097 < _list1095.size; ++_i1097) { - _elem1088 = new Table(); - _elem1088.read(iprot); - struct.success.add(_elem1088); + _elem1096 = new Table(); + _elem1096.read(iprot); + struct.success.add(_elem1096); } } struct.setSuccessIsSet(true); @@ -73573,13 +73573,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_materialization case 2: // TBL_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1090 = iprot.readListBegin(); - struct.tbl_names = new ArrayList(_list1090.size); - String _elem1091; - for (int _i1092 = 0; _i1092 < _list1090.size; ++_i1092) + org.apache.thrift.protocol.TList _list1098 = iprot.readListBegin(); + struct.tbl_names = new ArrayList(_list1098.size); + String _elem1099; + for (int _i1100 = 0; _i1100 < _list1098.size; ++_i1100) { - _elem1091 = iprot.readString(); - struct.tbl_names.add(_elem1091); + _elem1099 = iprot.readString(); + struct.tbl_names.add(_elem1099); } iprot.readListEnd(); } @@ -73610,9 +73610,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_materializatio 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 _iter1093 : struct.tbl_names) + for (String _iter1101 : struct.tbl_names) { - oprot.writeString(_iter1093); + oprot.writeString(_iter1101); } oprot.writeListEnd(); } @@ -73649,9 +73649,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_materialization if (struct.isSetTbl_names()) { { oprot.writeI32(struct.tbl_names.size()); - for (String _iter1094 : struct.tbl_names) + for (String _iter1102 : struct.tbl_names) { - oprot.writeString(_iter1094); + oprot.writeString(_iter1102); } } } @@ -73667,13 +73667,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_materialization_ } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1095 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tbl_names = new ArrayList(_list1095.size); - String _elem1096; - for (int _i1097 = 0; _i1097 < _list1095.size; ++_i1097) + org.apache.thrift.protocol.TList _list1103 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tbl_names = new ArrayList(_list1103.size); + String _elem1104; + for (int _i1105 = 0; _i1105 < _list1103.size; ++_i1105) { - _elem1096 = iprot.readString(); - struct.tbl_names.add(_elem1096); + _elem1104 = iprot.readString(); + struct.tbl_names.add(_elem1104); } } struct.setTbl_namesIsSet(true); @@ -74246,16 +74246,16 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_materialization case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1098 = iprot.readMapBegin(); - struct.success = new HashMap(2*_map1098.size); - String _key1099; - Materialization _val1100; - for (int _i1101 = 0; _i1101 < _map1098.size; ++_i1101) + org.apache.thrift.protocol.TMap _map1106 = iprot.readMapBegin(); + struct.success = new HashMap(2*_map1106.size); + String _key1107; + Materialization _val1108; + for (int _i1109 = 0; _i1109 < _map1106.size; ++_i1109) { - _key1099 = iprot.readString(); - _val1100 = new Materialization(); - _val1100.read(iprot); - struct.success.put(_key1099, _val1100); + _key1107 = iprot.readString(); + _val1108 = new Materialization(); + _val1108.read(iprot); + struct.success.put(_key1107, _val1108); } iprot.readMapEnd(); } @@ -74308,10 +74308,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_materializatio 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 _iter1102 : struct.success.entrySet()) + for (Map.Entry _iter1110 : struct.success.entrySet()) { - oprot.writeString(_iter1102.getKey()); - _iter1102.getValue().write(oprot); + oprot.writeString(_iter1110.getKey()); + _iter1110.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -74366,10 +74366,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_materialization if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Map.Entry _iter1103 : struct.success.entrySet()) + for (Map.Entry _iter1111 : struct.success.entrySet()) { - oprot.writeString(_iter1103.getKey()); - _iter1103.getValue().write(oprot); + oprot.writeString(_iter1111.getKey()); + _iter1111.getValue().write(oprot); } } } @@ -74390,16 +74390,16 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_materialization_ BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1104 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new HashMap(2*_map1104.size); - String _key1105; - Materialization _val1106; - for (int _i1107 = 0; _i1107 < _map1104.size; ++_i1107) + org.apache.thrift.protocol.TMap _map1112 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new HashMap(2*_map1112.size); + String _key1113; + Materialization _val1114; + for (int _i1115 = 0; _i1115 < _map1112.size; ++_i1115) { - _key1105 = iprot.readString(); - _val1106 = new Materialization(); - _val1106.read(iprot); - struct.success.put(_key1105, _val1106); + _key1113 = iprot.readString(); + _val1114 = new Materialization(); + _val1114.read(iprot); + struct.success.put(_key1113, _val1114); } } struct.setSuccessIsSet(true); @@ -76792,13 +76792,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_table_names_by_ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1108 = iprot.readListBegin(); - struct.success = new ArrayList(_list1108.size); - String _elem1109; - for (int _i1110 = 0; _i1110 < _list1108.size; ++_i1110) + org.apache.thrift.protocol.TList _list1116 = iprot.readListBegin(); + struct.success = new ArrayList(_list1116.size); + String _elem1117; + for (int _i1118 = 0; _i1118 < _list1116.size; ++_i1118) { - _elem1109 = iprot.readString(); - struct.success.add(_elem1109); + _elem1117 = iprot.readString(); + struct.success.add(_elem1117); } iprot.readListEnd(); } @@ -76851,9 +76851,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_table_names_by oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1111 : struct.success) + for (String _iter1119 : struct.success) { - oprot.writeString(_iter1111); + oprot.writeString(_iter1119); } oprot.writeListEnd(); } @@ -76908,9 +76908,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_names_by_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1112 : struct.success) + for (String _iter1120 : struct.success) { - oprot.writeString(_iter1112); + oprot.writeString(_iter1120); } } } @@ -76931,13 +76931,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_names_by_f BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1113 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1113.size); - String _elem1114; - for (int _i1115 = 0; _i1115 < _list1113.size; ++_i1115) + org.apache.thrift.protocol.TList _list1121 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1121.size); + String _elem1122; + for (int _i1123 = 0; _i1123 < _list1121.size; ++_i1123) { - _elem1114 = iprot.readString(); - struct.success.add(_elem1114); + _elem1122 = iprot.readString(); + struct.success.add(_elem1122); } } struct.setSuccessIsSet(true); @@ -82796,14 +82796,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, add_partitions_args case 1: // NEW_PARTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1116 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1116.size); - Partition _elem1117; - for (int _i1118 = 0; _i1118 < _list1116.size; ++_i1118) + org.apache.thrift.protocol.TList _list1124 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1124.size); + Partition _elem1125; + for (int _i1126 = 0; _i1126 < _list1124.size; ++_i1126) { - _elem1117 = new Partition(); - _elem1117.read(iprot); - struct.new_parts.add(_elem1117); + _elem1125 = new Partition(); + _elem1125.read(iprot); + struct.new_parts.add(_elem1125); } iprot.readListEnd(); } @@ -82829,9 +82829,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, add_partitions_arg 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 _iter1119 : struct.new_parts) + for (Partition _iter1127 : struct.new_parts) { - _iter1119.write(oprot); + _iter1127.write(oprot); } oprot.writeListEnd(); } @@ -82862,9 +82862,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, add_partitions_args if (struct.isSetNew_parts()) { { oprot.writeI32(struct.new_parts.size()); - for (Partition _iter1120 : struct.new_parts) + for (Partition _iter1128 : struct.new_parts) { - _iter1120.write(oprot); + _iter1128.write(oprot); } } } @@ -82876,14 +82876,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, add_partitions_args BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1121 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1121.size); - Partition _elem1122; - for (int _i1123 = 0; _i1123 < _list1121.size; ++_i1123) + org.apache.thrift.protocol.TList _list1129 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1129.size); + Partition _elem1130; + for (int _i1131 = 0; _i1131 < _list1129.size; ++_i1131) { - _elem1122 = new Partition(); - _elem1122.read(iprot); - struct.new_parts.add(_elem1122); + _elem1130 = new Partition(); + _elem1130.read(iprot); + struct.new_parts.add(_elem1130); } } struct.setNew_partsIsSet(true); @@ -83884,14 +83884,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, add_partitions_pspe case 1: // NEW_PARTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1124 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1124.size); - PartitionSpec _elem1125; - for (int _i1126 = 0; _i1126 < _list1124.size; ++_i1126) + org.apache.thrift.protocol.TList _list1132 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1132.size); + PartitionSpec _elem1133; + for (int _i1134 = 0; _i1134 < _list1132.size; ++_i1134) { - _elem1125 = new PartitionSpec(); - _elem1125.read(iprot); - struct.new_parts.add(_elem1125); + _elem1133 = new PartitionSpec(); + _elem1133.read(iprot); + struct.new_parts.add(_elem1133); } iprot.readListEnd(); } @@ -83917,9 +83917,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, add_partitions_psp 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 _iter1127 : struct.new_parts) + for (PartitionSpec _iter1135 : struct.new_parts) { - _iter1127.write(oprot); + _iter1135.write(oprot); } oprot.writeListEnd(); } @@ -83950,9 +83950,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, add_partitions_pspe if (struct.isSetNew_parts()) { { oprot.writeI32(struct.new_parts.size()); - for (PartitionSpec _iter1128 : struct.new_parts) + for (PartitionSpec _iter1136 : struct.new_parts) { - _iter1128.write(oprot); + _iter1136.write(oprot); } } } @@ -83964,14 +83964,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, add_partitions_pspec BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1129 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1129.size); - PartitionSpec _elem1130; - for (int _i1131 = 0; _i1131 < _list1129.size; ++_i1131) + org.apache.thrift.protocol.TList _list1137 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1137.size); + PartitionSpec _elem1138; + for (int _i1139 = 0; _i1139 < _list1137.size; ++_i1139) { - _elem1130 = new PartitionSpec(); - _elem1130.read(iprot); - struct.new_parts.add(_elem1130); + _elem1138 = new PartitionSpec(); + _elem1138.read(iprot); + struct.new_parts.add(_elem1138); } } struct.setNew_partsIsSet(true); @@ -85147,13 +85147,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, append_partition_ar case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1132 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1132.size); - String _elem1133; - for (int _i1134 = 0; _i1134 < _list1132.size; ++_i1134) + org.apache.thrift.protocol.TList _list1140 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1140.size); + String _elem1141; + for (int _i1142 = 0; _i1142 < _list1140.size; ++_i1142) { - _elem1133 = iprot.readString(); - struct.part_vals.add(_elem1133); + _elem1141 = iprot.readString(); + struct.part_vals.add(_elem1141); } iprot.readListEnd(); } @@ -85189,9 +85189,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, append_partition_a 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 _iter1135 : struct.part_vals) + for (String _iter1143 : struct.part_vals) { - oprot.writeString(_iter1135); + oprot.writeString(_iter1143); } oprot.writeListEnd(); } @@ -85234,9 +85234,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, append_partition_ar if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1136 : struct.part_vals) + for (String _iter1144 : struct.part_vals) { - oprot.writeString(_iter1136); + oprot.writeString(_iter1144); } } } @@ -85256,13 +85256,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_partition_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1137 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1137.size); - String _elem1138; - for (int _i1139 = 0; _i1139 < _list1137.size; ++_i1139) + org.apache.thrift.protocol.TList _list1145 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1145.size); + String _elem1146; + for (int _i1147 = 0; _i1147 < _list1145.size; ++_i1147) { - _elem1138 = iprot.readString(); - struct.part_vals.add(_elem1138); + _elem1146 = iprot.readString(); + struct.part_vals.add(_elem1146); } } struct.setPart_valsIsSet(true); @@ -87571,13 +87571,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, append_partition_wi case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1140 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1140.size); - String _elem1141; - for (int _i1142 = 0; _i1142 < _list1140.size; ++_i1142) + org.apache.thrift.protocol.TList _list1148 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1148.size); + String _elem1149; + for (int _i1150 = 0; _i1150 < _list1148.size; ++_i1150) { - _elem1141 = iprot.readString(); - struct.part_vals.add(_elem1141); + _elem1149 = iprot.readString(); + struct.part_vals.add(_elem1149); } iprot.readListEnd(); } @@ -87622,9 +87622,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, append_partition_w 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 _iter1143 : struct.part_vals) + for (String _iter1151 : struct.part_vals) { - oprot.writeString(_iter1143); + oprot.writeString(_iter1151); } oprot.writeListEnd(); } @@ -87675,9 +87675,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, append_partition_wi if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1144 : struct.part_vals) + for (String _iter1152 : struct.part_vals) { - oprot.writeString(_iter1144); + oprot.writeString(_iter1152); } } } @@ -87700,13 +87700,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_partition_wit } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1145 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1145.size); - String _elem1146; - for (int _i1147 = 0; _i1147 < _list1145.size; ++_i1147) + org.apache.thrift.protocol.TList _list1153 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1153.size); + String _elem1154; + for (int _i1155 = 0; _i1155 < _list1153.size; ++_i1155) { - _elem1146 = iprot.readString(); - struct.part_vals.add(_elem1146); + _elem1154 = iprot.readString(); + struct.part_vals.add(_elem1154); } } struct.setPart_valsIsSet(true); @@ -91576,13 +91576,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, drop_partition_args case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1148 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1148.size); - String _elem1149; - for (int _i1150 = 0; _i1150 < _list1148.size; ++_i1150) + org.apache.thrift.protocol.TList _list1156 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1156.size); + String _elem1157; + for (int _i1158 = 0; _i1158 < _list1156.size; ++_i1158) { - _elem1149 = iprot.readString(); - struct.part_vals.add(_elem1149); + _elem1157 = iprot.readString(); + struct.part_vals.add(_elem1157); } iprot.readListEnd(); } @@ -91626,9 +91626,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, drop_partition_arg 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 _iter1151 : struct.part_vals) + for (String _iter1159 : struct.part_vals) { - oprot.writeString(_iter1151); + oprot.writeString(_iter1159); } oprot.writeListEnd(); } @@ -91677,9 +91677,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, drop_partition_args if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1152 : struct.part_vals) + for (String _iter1160 : struct.part_vals) { - oprot.writeString(_iter1152); + oprot.writeString(_iter1160); } } } @@ -91702,13 +91702,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, drop_partition_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1153 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1153.size); - String _elem1154; - for (int _i1155 = 0; _i1155 < _list1153.size; ++_i1155) + org.apache.thrift.protocol.TList _list1161 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1161.size); + String _elem1162; + for (int _i1163 = 0; _i1163 < _list1161.size; ++_i1163) { - _elem1154 = iprot.readString(); - struct.part_vals.add(_elem1154); + _elem1162 = iprot.readString(); + struct.part_vals.add(_elem1162); } } struct.setPart_valsIsSet(true); @@ -92947,13 +92947,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, drop_partition_with case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1156 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1156.size); - String _elem1157; - for (int _i1158 = 0; _i1158 < _list1156.size; ++_i1158) + org.apache.thrift.protocol.TList _list1164 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1164.size); + String _elem1165; + for (int _i1166 = 0; _i1166 < _list1164.size; ++_i1166) { - _elem1157 = iprot.readString(); - struct.part_vals.add(_elem1157); + _elem1165 = iprot.readString(); + struct.part_vals.add(_elem1165); } iprot.readListEnd(); } @@ -93006,9 +93006,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, drop_partition_wit 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 _iter1159 : struct.part_vals) + for (String _iter1167 : struct.part_vals) { - oprot.writeString(_iter1159); + oprot.writeString(_iter1167); } oprot.writeListEnd(); } @@ -93065,9 +93065,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, drop_partition_with if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1160 : struct.part_vals) + for (String _iter1168 : struct.part_vals) { - oprot.writeString(_iter1160); + oprot.writeString(_iter1168); } } } @@ -93093,13 +93093,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, drop_partition_with_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1161 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1161.size); - String _elem1162; - for (int _i1163 = 0; _i1163 < _list1161.size; ++_i1163) + org.apache.thrift.protocol.TList _list1169 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1169.size); + String _elem1170; + for (int _i1171 = 0; _i1171 < _list1169.size; ++_i1171) { - _elem1162 = iprot.readString(); - struct.part_vals.add(_elem1162); + _elem1170 = iprot.readString(); + struct.part_vals.add(_elem1170); } } struct.setPart_valsIsSet(true); @@ -97701,13 +97701,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partition_args case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1164 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1164.size); - String _elem1165; - for (int _i1166 = 0; _i1166 < _list1164.size; ++_i1166) + org.apache.thrift.protocol.TList _list1172 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1172.size); + String _elem1173; + for (int _i1174 = 0; _i1174 < _list1172.size; ++_i1174) { - _elem1165 = iprot.readString(); - struct.part_vals.add(_elem1165); + _elem1173 = iprot.readString(); + struct.part_vals.add(_elem1173); } iprot.readListEnd(); } @@ -97743,9 +97743,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partition_args 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 _iter1167 : struct.part_vals) + for (String _iter1175 : struct.part_vals) { - oprot.writeString(_iter1167); + oprot.writeString(_iter1175); } oprot.writeListEnd(); } @@ -97788,9 +97788,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_args if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1168 : struct.part_vals) + for (String _iter1176 : struct.part_vals) { - oprot.writeString(_iter1168); + oprot.writeString(_iter1176); } } } @@ -97810,13 +97810,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_args s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1169 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1169.size); - String _elem1170; - for (int _i1171 = 0; _i1171 < _list1169.size; ++_i1171) + org.apache.thrift.protocol.TList _list1177 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1177.size); + String _elem1178; + for (int _i1179 = 0; _i1179 < _list1177.size; ++_i1179) { - _elem1170 = iprot.readString(); - struct.part_vals.add(_elem1170); + _elem1178 = iprot.readString(); + struct.part_vals.add(_elem1178); } } struct.setPart_valsIsSet(true); @@ -99034,15 +99034,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, exchange_partition_ case 1: // PARTITION_SPECS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1172 = iprot.readMapBegin(); - struct.partitionSpecs = new HashMap(2*_map1172.size); - String _key1173; - String _val1174; - for (int _i1175 = 0; _i1175 < _map1172.size; ++_i1175) + org.apache.thrift.protocol.TMap _map1180 = iprot.readMapBegin(); + struct.partitionSpecs = new HashMap(2*_map1180.size); + String _key1181; + String _val1182; + for (int _i1183 = 0; _i1183 < _map1180.size; ++_i1183) { - _key1173 = iprot.readString(); - _val1174 = iprot.readString(); - struct.partitionSpecs.put(_key1173, _val1174); + _key1181 = iprot.readString(); + _val1182 = iprot.readString(); + struct.partitionSpecs.put(_key1181, _val1182); } iprot.readMapEnd(); } @@ -99100,10 +99100,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, exchange_partition 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 _iter1176 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1184 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1176.getKey()); - oprot.writeString(_iter1176.getValue()); + oprot.writeString(_iter1184.getKey()); + oprot.writeString(_iter1184.getValue()); } oprot.writeMapEnd(); } @@ -99166,10 +99166,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, exchange_partition_ if (struct.isSetPartitionSpecs()) { { oprot.writeI32(struct.partitionSpecs.size()); - for (Map.Entry _iter1177 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1185 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1177.getKey()); - oprot.writeString(_iter1177.getValue()); + oprot.writeString(_iter1185.getKey()); + oprot.writeString(_iter1185.getValue()); } } } @@ -99193,15 +99193,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, exchange_partition_a BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1178 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.partitionSpecs = new HashMap(2*_map1178.size); - String _key1179; - String _val1180; - for (int _i1181 = 0; _i1181 < _map1178.size; ++_i1181) + org.apache.thrift.protocol.TMap _map1186 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.partitionSpecs = new HashMap(2*_map1186.size); + String _key1187; + String _val1188; + for (int _i1189 = 0; _i1189 < _map1186.size; ++_i1189) { - _key1179 = iprot.readString(); - _val1180 = iprot.readString(); - struct.partitionSpecs.put(_key1179, _val1180); + _key1187 = iprot.readString(); + _val1188 = iprot.readString(); + struct.partitionSpecs.put(_key1187, _val1188); } } struct.setPartitionSpecsIsSet(true); @@ -100647,15 +100647,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, exchange_partitions case 1: // PARTITION_SPECS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1182 = iprot.readMapBegin(); - struct.partitionSpecs = new HashMap(2*_map1182.size); - String _key1183; - String _val1184; - for (int _i1185 = 0; _i1185 < _map1182.size; ++_i1185) + org.apache.thrift.protocol.TMap _map1190 = iprot.readMapBegin(); + struct.partitionSpecs = new HashMap(2*_map1190.size); + String _key1191; + String _val1192; + for (int _i1193 = 0; _i1193 < _map1190.size; ++_i1193) { - _key1183 = iprot.readString(); - _val1184 = iprot.readString(); - struct.partitionSpecs.put(_key1183, _val1184); + _key1191 = iprot.readString(); + _val1192 = iprot.readString(); + struct.partitionSpecs.put(_key1191, _val1192); } iprot.readMapEnd(); } @@ -100713,10 +100713,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, exchange_partition 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 _iter1186 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1194 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1186.getKey()); - oprot.writeString(_iter1186.getValue()); + oprot.writeString(_iter1194.getKey()); + oprot.writeString(_iter1194.getValue()); } oprot.writeMapEnd(); } @@ -100779,10 +100779,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, exchange_partitions if (struct.isSetPartitionSpecs()) { { oprot.writeI32(struct.partitionSpecs.size()); - for (Map.Entry _iter1187 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1195 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1187.getKey()); - oprot.writeString(_iter1187.getValue()); + oprot.writeString(_iter1195.getKey()); + oprot.writeString(_iter1195.getValue()); } } } @@ -100806,15 +100806,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, exchange_partitions_ BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1188 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.partitionSpecs = new HashMap(2*_map1188.size); - String _key1189; - String _val1190; - for (int _i1191 = 0; _i1191 < _map1188.size; ++_i1191) + org.apache.thrift.protocol.TMap _map1196 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.partitionSpecs = new HashMap(2*_map1196.size); + String _key1197; + String _val1198; + for (int _i1199 = 0; _i1199 < _map1196.size; ++_i1199) { - _key1189 = iprot.readString(); - _val1190 = iprot.readString(); - struct.partitionSpecs.put(_key1189, _val1190); + _key1197 = iprot.readString(); + _val1198 = iprot.readString(); + struct.partitionSpecs.put(_key1197, _val1198); } } struct.setPartitionSpecsIsSet(true); @@ -101479,14 +101479,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, exchange_partitions case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1192 = iprot.readListBegin(); - struct.success = new ArrayList(_list1192.size); - Partition _elem1193; - for (int _i1194 = 0; _i1194 < _list1192.size; ++_i1194) + org.apache.thrift.protocol.TList _list1200 = iprot.readListBegin(); + struct.success = new ArrayList(_list1200.size); + Partition _elem1201; + for (int _i1202 = 0; _i1202 < _list1200.size; ++_i1202) { - _elem1193 = new Partition(); - _elem1193.read(iprot); - struct.success.add(_elem1193); + _elem1201 = new Partition(); + _elem1201.read(iprot); + struct.success.add(_elem1201); } iprot.readListEnd(); } @@ -101548,9 +101548,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, exchange_partition oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Partition _iter1195 : struct.success) + for (Partition _iter1203 : struct.success) { - _iter1195.write(oprot); + _iter1203.write(oprot); } oprot.writeListEnd(); } @@ -101613,9 +101613,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, exchange_partitions if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1196 : struct.success) + for (Partition _iter1204 : struct.success) { - _iter1196.write(oprot); + _iter1204.write(oprot); } } } @@ -101639,14 +101639,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, exchange_partitions_ BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1197 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1197.size); - Partition _elem1198; - for (int _i1199 = 0; _i1199 < _list1197.size; ++_i1199) + org.apache.thrift.protocol.TList _list1205 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1205.size); + Partition _elem1206; + for (int _i1207 = 0; _i1207 < _list1205.size; ++_i1207) { - _elem1198 = new Partition(); - _elem1198.read(iprot); - struct.success.add(_elem1198); + _elem1206 = new Partition(); + _elem1206.read(iprot); + struct.success.add(_elem1206); } } struct.setSuccessIsSet(true); @@ -102345,13 +102345,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partition_with_ case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1200 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1200.size); - String _elem1201; - for (int _i1202 = 0; _i1202 < _list1200.size; ++_i1202) + org.apache.thrift.protocol.TList _list1208 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1208.size); + String _elem1209; + for (int _i1210 = 0; _i1210 < _list1208.size; ++_i1210) { - _elem1201 = iprot.readString(); - struct.part_vals.add(_elem1201); + _elem1209 = iprot.readString(); + struct.part_vals.add(_elem1209); } iprot.readListEnd(); } @@ -102371,13 +102371,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partition_with_ case 5: // GROUP_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1203 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1203.size); - String _elem1204; - for (int _i1205 = 0; _i1205 < _list1203.size; ++_i1205) + org.apache.thrift.protocol.TList _list1211 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1211.size); + String _elem1212; + for (int _i1213 = 0; _i1213 < _list1211.size; ++_i1213) { - _elem1204 = iprot.readString(); - struct.group_names.add(_elem1204); + _elem1212 = iprot.readString(); + struct.group_names.add(_elem1212); } iprot.readListEnd(); } @@ -102413,9 +102413,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partition_with 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 _iter1206 : struct.part_vals) + for (String _iter1214 : struct.part_vals) { - oprot.writeString(_iter1206); + oprot.writeString(_iter1214); } oprot.writeListEnd(); } @@ -102430,9 +102430,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partition_with 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 _iter1207 : struct.group_names) + for (String _iter1215 : struct.group_names) { - oprot.writeString(_iter1207); + oprot.writeString(_iter1215); } oprot.writeListEnd(); } @@ -102481,9 +102481,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_with_ if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1208 : struct.part_vals) + for (String _iter1216 : struct.part_vals) { - oprot.writeString(_iter1208); + oprot.writeString(_iter1216); } } } @@ -102493,9 +102493,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_with_ if (struct.isSetGroup_names()) { { oprot.writeI32(struct.group_names.size()); - for (String _iter1209 : struct.group_names) + for (String _iter1217 : struct.group_names) { - oprot.writeString(_iter1209); + oprot.writeString(_iter1217); } } } @@ -102515,13 +102515,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_with_a } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1210 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1210.size); - String _elem1211; - for (int _i1212 = 0; _i1212 < _list1210.size; ++_i1212) + org.apache.thrift.protocol.TList _list1218 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1218.size); + String _elem1219; + for (int _i1220 = 0; _i1220 < _list1218.size; ++_i1220) { - _elem1211 = iprot.readString(); - struct.part_vals.add(_elem1211); + _elem1219 = iprot.readString(); + struct.part_vals.add(_elem1219); } } struct.setPart_valsIsSet(true); @@ -102532,13 +102532,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_with_a } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1213 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1213.size); - String _elem1214; - for (int _i1215 = 0; _i1215 < _list1213.size; ++_i1215) + org.apache.thrift.protocol.TList _list1221 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1221.size); + String _elem1222; + for (int _i1223 = 0; _i1223 < _list1221.size; ++_i1223) { - _elem1214 = iprot.readString(); - struct.group_names.add(_elem1214); + _elem1222 = iprot.readString(); + struct.group_names.add(_elem1222); } } struct.setGroup_namesIsSet(true); @@ -105307,14 +105307,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1216 = iprot.readListBegin(); - struct.success = new ArrayList(_list1216.size); - Partition _elem1217; - for (int _i1218 = 0; _i1218 < _list1216.size; ++_i1218) + org.apache.thrift.protocol.TList _list1224 = iprot.readListBegin(); + struct.success = new ArrayList(_list1224.size); + Partition _elem1225; + for (int _i1226 = 0; _i1226 < _list1224.size; ++_i1226) { - _elem1217 = new Partition(); - _elem1217.read(iprot); - struct.success.add(_elem1217); + _elem1225 = new Partition(); + _elem1225.read(iprot); + struct.success.add(_elem1225); } iprot.readListEnd(); } @@ -105358,9 +105358,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Partition _iter1219 : struct.success) + for (Partition _iter1227 : struct.success) { - _iter1219.write(oprot); + _iter1227.write(oprot); } oprot.writeListEnd(); } @@ -105407,9 +105407,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1220 : struct.success) + for (Partition _iter1228 : struct.success) { - _iter1220.write(oprot); + _iter1228.write(oprot); } } } @@ -105427,14 +105427,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_resul BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1221 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1221.size); - Partition _elem1222; - for (int _i1223 = 0; _i1223 < _list1221.size; ++_i1223) + org.apache.thrift.protocol.TList _list1229 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1229.size); + Partition _elem1230; + for (int _i1231 = 0; _i1231 < _list1229.size; ++_i1231) { - _elem1222 = new Partition(); - _elem1222.read(iprot); - struct.success.add(_elem1222); + _elem1230 = new Partition(); + _elem1230.read(iprot); + struct.success.add(_elem1230); } } struct.setSuccessIsSet(true); @@ -106124,13 +106124,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_with case 5: // GROUP_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1224 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1224.size); - String _elem1225; - for (int _i1226 = 0; _i1226 < _list1224.size; ++_i1226) + org.apache.thrift.protocol.TList _list1232 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1232.size); + String _elem1233; + for (int _i1234 = 0; _i1234 < _list1232.size; ++_i1234) { - _elem1225 = iprot.readString(); - struct.group_names.add(_elem1225); + _elem1233 = iprot.readString(); + struct.group_names.add(_elem1233); } iprot.readListEnd(); } @@ -106174,9 +106174,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_wit 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 _iter1227 : struct.group_names) + for (String _iter1235 : struct.group_names) { - oprot.writeString(_iter1227); + oprot.writeString(_iter1235); } oprot.writeListEnd(); } @@ -106231,9 +106231,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_with if (struct.isSetGroup_names()) { { oprot.writeI32(struct.group_names.size()); - for (String _iter1228 : struct.group_names) + for (String _iter1236 : struct.group_names) { - oprot.writeString(_iter1228); + oprot.writeString(_iter1236); } } } @@ -106261,13 +106261,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_with_ } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1229 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1229.size); - String _elem1230; - for (int _i1231 = 0; _i1231 < _list1229.size; ++_i1231) + org.apache.thrift.protocol.TList _list1237 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1237.size); + String _elem1238; + for (int _i1239 = 0; _i1239 < _list1237.size; ++_i1239) { - _elem1230 = iprot.readString(); - struct.group_names.add(_elem1230); + _elem1238 = iprot.readString(); + struct.group_names.add(_elem1238); } } struct.setGroup_namesIsSet(true); @@ -106754,14 +106754,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_with case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1232 = iprot.readListBegin(); - struct.success = new ArrayList(_list1232.size); - Partition _elem1233; - for (int _i1234 = 0; _i1234 < _list1232.size; ++_i1234) + org.apache.thrift.protocol.TList _list1240 = iprot.readListBegin(); + struct.success = new ArrayList(_list1240.size); + Partition _elem1241; + for (int _i1242 = 0; _i1242 < _list1240.size; ++_i1242) { - _elem1233 = new Partition(); - _elem1233.read(iprot); - struct.success.add(_elem1233); + _elem1241 = new Partition(); + _elem1241.read(iprot); + struct.success.add(_elem1241); } iprot.readListEnd(); } @@ -106805,9 +106805,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_wit oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Partition _iter1235 : struct.success) + for (Partition _iter1243 : struct.success) { - _iter1235.write(oprot); + _iter1243.write(oprot); } oprot.writeListEnd(); } @@ -106854,9 +106854,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_with if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1236 : struct.success) + for (Partition _iter1244 : struct.success) { - _iter1236.write(oprot); + _iter1244.write(oprot); } } } @@ -106874,14 +106874,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_with_ BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1237 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1237.size); - Partition _elem1238; - for (int _i1239 = 0; _i1239 < _list1237.size; ++_i1239) + org.apache.thrift.protocol.TList _list1245 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1245.size); + Partition _elem1246; + for (int _i1247 = 0; _i1247 < _list1245.size; ++_i1247) { - _elem1238 = new Partition(); - _elem1238.read(iprot); - struct.success.add(_elem1238); + _elem1246 = new Partition(); + _elem1246.read(iprot); + struct.success.add(_elem1246); } } struct.setSuccessIsSet(true); @@ -107944,14 +107944,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_pspe case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1240 = iprot.readListBegin(); - struct.success = new ArrayList(_list1240.size); - PartitionSpec _elem1241; - for (int _i1242 = 0; _i1242 < _list1240.size; ++_i1242) + org.apache.thrift.protocol.TList _list1248 = iprot.readListBegin(); + struct.success = new ArrayList(_list1248.size); + PartitionSpec _elem1249; + for (int _i1250 = 0; _i1250 < _list1248.size; ++_i1250) { - _elem1241 = new PartitionSpec(); - _elem1241.read(iprot); - struct.success.add(_elem1241); + _elem1249 = new PartitionSpec(); + _elem1249.read(iprot); + struct.success.add(_elem1249); } iprot.readListEnd(); } @@ -107995,9 +107995,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_psp oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (PartitionSpec _iter1243 : struct.success) + for (PartitionSpec _iter1251 : struct.success) { - _iter1243.write(oprot); + _iter1251.write(oprot); } oprot.writeListEnd(); } @@ -108044,9 +108044,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_pspe if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (PartitionSpec _iter1244 : struct.success) + for (PartitionSpec _iter1252 : struct.success) { - _iter1244.write(oprot); + _iter1252.write(oprot); } } } @@ -108064,14 +108064,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_pspec BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1245 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1245.size); - PartitionSpec _elem1246; - for (int _i1247 = 0; _i1247 < _list1245.size; ++_i1247) + org.apache.thrift.protocol.TList _list1253 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1253.size); + PartitionSpec _elem1254; + for (int _i1255 = 0; _i1255 < _list1253.size; ++_i1255) { - _elem1246 = new PartitionSpec(); - _elem1246.read(iprot); - struct.success.add(_elem1246); + _elem1254 = new PartitionSpec(); + _elem1254.read(iprot); + struct.success.add(_elem1254); } } struct.setSuccessIsSet(true); @@ -109131,13 +109131,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partition_names case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1248 = iprot.readListBegin(); - struct.success = new ArrayList(_list1248.size); - String _elem1249; - for (int _i1250 = 0; _i1250 < _list1248.size; ++_i1250) + org.apache.thrift.protocol.TList _list1256 = iprot.readListBegin(); + struct.success = new ArrayList(_list1256.size); + String _elem1257; + for (int _i1258 = 0; _i1258 < _list1256.size; ++_i1258) { - _elem1249 = iprot.readString(); - struct.success.add(_elem1249); + _elem1257 = iprot.readString(); + struct.success.add(_elem1257); } iprot.readListEnd(); } @@ -109181,9 +109181,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partition_name oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1251 : struct.success) + for (String _iter1259 : struct.success) { - oprot.writeString(_iter1251); + oprot.writeString(_iter1259); } oprot.writeListEnd(); } @@ -109230,9 +109230,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_names if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1252 : struct.success) + for (String _iter1260 : struct.success) { - oprot.writeString(_iter1252); + oprot.writeString(_iter1260); } } } @@ -109250,13 +109250,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1253 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1253.size); - String _elem1254; - for (int _i1255 = 0; _i1255 < _list1253.size; ++_i1255) + org.apache.thrift.protocol.TList _list1261 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1261.size); + String _elem1262; + for (int _i1263 = 0; _i1263 < _list1261.size; ++_i1263) { - _elem1254 = iprot.readString(); - struct.success.add(_elem1254); + _elem1262 = iprot.readString(); + struct.success.add(_elem1262); } } struct.setSuccessIsSet(true); @@ -110787,13 +110787,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_ps_a case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1256 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1256.size); - String _elem1257; - for (int _i1258 = 0; _i1258 < _list1256.size; ++_i1258) + org.apache.thrift.protocol.TList _list1264 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1264.size); + String _elem1265; + for (int _i1266 = 0; _i1266 < _list1264.size; ++_i1266) { - _elem1257 = iprot.readString(); - struct.part_vals.add(_elem1257); + _elem1265 = iprot.readString(); + struct.part_vals.add(_elem1265); } iprot.readListEnd(); } @@ -110837,9 +110837,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_ps_ 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 _iter1259 : struct.part_vals) + for (String _iter1267 : struct.part_vals) { - oprot.writeString(_iter1259); + oprot.writeString(_iter1267); } oprot.writeListEnd(); } @@ -110888,9 +110888,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_a if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1260 : struct.part_vals) + for (String _iter1268 : struct.part_vals) { - oprot.writeString(_iter1260); + oprot.writeString(_iter1268); } } } @@ -110913,13 +110913,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1261 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1261.size); - String _elem1262; - for (int _i1263 = 0; _i1263 < _list1261.size; ++_i1263) + org.apache.thrift.protocol.TList _list1269 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1269.size); + String _elem1270; + for (int _i1271 = 0; _i1271 < _list1269.size; ++_i1271) { - _elem1262 = iprot.readString(); - struct.part_vals.add(_elem1262); + _elem1270 = iprot.readString(); + struct.part_vals.add(_elem1270); } } struct.setPart_valsIsSet(true); @@ -111410,14 +111410,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_ps_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1264 = iprot.readListBegin(); - struct.success = new ArrayList(_list1264.size); - Partition _elem1265; - for (int _i1266 = 0; _i1266 < _list1264.size; ++_i1266) + org.apache.thrift.protocol.TList _list1272 = iprot.readListBegin(); + struct.success = new ArrayList(_list1272.size); + Partition _elem1273; + for (int _i1274 = 0; _i1274 < _list1272.size; ++_i1274) { - _elem1265 = new Partition(); - _elem1265.read(iprot); - struct.success.add(_elem1265); + _elem1273 = new Partition(); + _elem1273.read(iprot); + struct.success.add(_elem1273); } iprot.readListEnd(); } @@ -111461,9 +111461,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_ps_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Partition _iter1267 : struct.success) + for (Partition _iter1275 : struct.success) { - _iter1267.write(oprot); + _iter1275.write(oprot); } oprot.writeListEnd(); } @@ -111510,9 +111510,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1268 : struct.success) + for (Partition _iter1276 : struct.success) { - _iter1268.write(oprot); + _iter1276.write(oprot); } } } @@ -111530,14 +111530,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_re BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1269 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1269.size); - Partition _elem1270; - for (int _i1271 = 0; _i1271 < _list1269.size; ++_i1271) + org.apache.thrift.protocol.TList _list1277 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1277.size); + Partition _elem1278; + for (int _i1279 = 0; _i1279 < _list1277.size; ++_i1279) { - _elem1270 = new Partition(); - _elem1270.read(iprot); - struct.success.add(_elem1270); + _elem1278 = new Partition(); + _elem1278.read(iprot); + struct.success.add(_elem1278); } } struct.setSuccessIsSet(true); @@ -112309,13 +112309,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_ps_w case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1272 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1272.size); - String _elem1273; - for (int _i1274 = 0; _i1274 < _list1272.size; ++_i1274) + org.apache.thrift.protocol.TList _list1280 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1280.size); + String _elem1281; + for (int _i1282 = 0; _i1282 < _list1280.size; ++_i1282) { - _elem1273 = iprot.readString(); - struct.part_vals.add(_elem1273); + _elem1281 = iprot.readString(); + struct.part_vals.add(_elem1281); } iprot.readListEnd(); } @@ -112343,13 +112343,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_ps_w case 6: // GROUP_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1275 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1275.size); - String _elem1276; - for (int _i1277 = 0; _i1277 < _list1275.size; ++_i1277) + org.apache.thrift.protocol.TList _list1283 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1283.size); + String _elem1284; + for (int _i1285 = 0; _i1285 < _list1283.size; ++_i1285) { - _elem1276 = iprot.readString(); - struct.group_names.add(_elem1276); + _elem1284 = iprot.readString(); + struct.group_names.add(_elem1284); } iprot.readListEnd(); } @@ -112385,9 +112385,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_ps_ 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 _iter1278 : struct.part_vals) + for (String _iter1286 : struct.part_vals) { - oprot.writeString(_iter1278); + oprot.writeString(_iter1286); } oprot.writeListEnd(); } @@ -112405,9 +112405,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_ps_ 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 _iter1279 : struct.group_names) + for (String _iter1287 : struct.group_names) { - oprot.writeString(_iter1279); + oprot.writeString(_iter1287); } oprot.writeListEnd(); } @@ -112459,9 +112459,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_w if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1280 : struct.part_vals) + for (String _iter1288 : struct.part_vals) { - oprot.writeString(_iter1280); + oprot.writeString(_iter1288); } } } @@ -112474,9 +112474,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_w if (struct.isSetGroup_names()) { { oprot.writeI32(struct.group_names.size()); - for (String _iter1281 : struct.group_names) + for (String _iter1289 : struct.group_names) { - oprot.writeString(_iter1281); + oprot.writeString(_iter1289); } } } @@ -112496,13 +112496,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1282 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1282.size); - String _elem1283; - for (int _i1284 = 0; _i1284 < _list1282.size; ++_i1284) + org.apache.thrift.protocol.TList _list1290 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1290.size); + String _elem1291; + for (int _i1292 = 0; _i1292 < _list1290.size; ++_i1292) { - _elem1283 = iprot.readString(); - struct.part_vals.add(_elem1283); + _elem1291 = iprot.readString(); + struct.part_vals.add(_elem1291); } } struct.setPart_valsIsSet(true); @@ -112517,13 +112517,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1285 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1285.size); - String _elem1286; - for (int _i1287 = 0; _i1287 < _list1285.size; ++_i1287) + org.apache.thrift.protocol.TList _list1293 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1293.size); + String _elem1294; + for (int _i1295 = 0; _i1295 < _list1293.size; ++_i1295) { - _elem1286 = iprot.readString(); - struct.group_names.add(_elem1286); + _elem1294 = iprot.readString(); + struct.group_names.add(_elem1294); } } struct.setGroup_namesIsSet(true); @@ -113010,14 +113010,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_ps_w case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1288 = iprot.readListBegin(); - struct.success = new ArrayList(_list1288.size); - Partition _elem1289; - for (int _i1290 = 0; _i1290 < _list1288.size; ++_i1290) + org.apache.thrift.protocol.TList _list1296 = iprot.readListBegin(); + struct.success = new ArrayList(_list1296.size); + Partition _elem1297; + for (int _i1298 = 0; _i1298 < _list1296.size; ++_i1298) { - _elem1289 = new Partition(); - _elem1289.read(iprot); - struct.success.add(_elem1289); + _elem1297 = new Partition(); + _elem1297.read(iprot); + struct.success.add(_elem1297); } iprot.readListEnd(); } @@ -113061,9 +113061,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_ps_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Partition _iter1291 : struct.success) + for (Partition _iter1299 : struct.success) { - _iter1291.write(oprot); + _iter1299.write(oprot); } oprot.writeListEnd(); } @@ -113110,9 +113110,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_w if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1292 : struct.success) + for (Partition _iter1300 : struct.success) { - _iter1292.write(oprot); + _iter1300.write(oprot); } } } @@ -113130,14 +113130,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1293 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1293.size); - Partition _elem1294; - for (int _i1295 = 0; _i1295 < _list1293.size; ++_i1295) + org.apache.thrift.protocol.TList _list1301 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1301.size); + Partition _elem1302; + for (int _i1303 = 0; _i1303 < _list1301.size; ++_i1303) { - _elem1294 = new Partition(); - _elem1294.read(iprot); - struct.success.add(_elem1294); + _elem1302 = new Partition(); + _elem1302.read(iprot); + struct.success.add(_elem1302); } } struct.setSuccessIsSet(true); @@ -113730,13 +113730,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partition_names case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1296 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1296.size); - String _elem1297; - for (int _i1298 = 0; _i1298 < _list1296.size; ++_i1298) + org.apache.thrift.protocol.TList _list1304 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1304.size); + String _elem1305; + for (int _i1306 = 0; _i1306 < _list1304.size; ++_i1306) { - _elem1297 = iprot.readString(); - struct.part_vals.add(_elem1297); + _elem1305 = iprot.readString(); + struct.part_vals.add(_elem1305); } iprot.readListEnd(); } @@ -113780,9 +113780,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partition_name 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 _iter1299 : struct.part_vals) + for (String _iter1307 : struct.part_vals) { - oprot.writeString(_iter1299); + oprot.writeString(_iter1307); } oprot.writeListEnd(); } @@ -113831,9 +113831,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_names if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1300 : struct.part_vals) + for (String _iter1308 : struct.part_vals) { - oprot.writeString(_iter1300); + oprot.writeString(_iter1308); } } } @@ -113856,13 +113856,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1301 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1301.size); - String _elem1302; - for (int _i1303 = 0; _i1303 < _list1301.size; ++_i1303) + org.apache.thrift.protocol.TList _list1309 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1309.size); + String _elem1310; + for (int _i1311 = 0; _i1311 < _list1309.size; ++_i1311) { - _elem1302 = iprot.readString(); - struct.part_vals.add(_elem1302); + _elem1310 = iprot.readString(); + struct.part_vals.add(_elem1310); } } struct.setPart_valsIsSet(true); @@ -114350,13 +114350,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partition_names case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1304 = iprot.readListBegin(); - struct.success = new ArrayList(_list1304.size); - String _elem1305; - for (int _i1306 = 0; _i1306 < _list1304.size; ++_i1306) + org.apache.thrift.protocol.TList _list1312 = iprot.readListBegin(); + struct.success = new ArrayList(_list1312.size); + String _elem1313; + for (int _i1314 = 0; _i1314 < _list1312.size; ++_i1314) { - _elem1305 = iprot.readString(); - struct.success.add(_elem1305); + _elem1313 = iprot.readString(); + struct.success.add(_elem1313); } iprot.readListEnd(); } @@ -114400,9 +114400,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partition_name oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1307 : struct.success) + for (String _iter1315 : struct.success) { - oprot.writeString(_iter1307); + oprot.writeString(_iter1315); } oprot.writeListEnd(); } @@ -114449,9 +114449,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_names if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1308 : struct.success) + for (String _iter1316 : struct.success) { - oprot.writeString(_iter1308); + oprot.writeString(_iter1316); } } } @@ -114469,13 +114469,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1309 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1309.size); - String _elem1310; - for (int _i1311 = 0; _i1311 < _list1309.size; ++_i1311) + org.apache.thrift.protocol.TList _list1317 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1317.size); + String _elem1318; + for (int _i1319 = 0; _i1319 < _list1317.size; ++_i1319) { - _elem1310 = iprot.readString(); - struct.success.add(_elem1310); + _elem1318 = iprot.readString(); + struct.success.add(_elem1318); } } struct.setSuccessIsSet(true); @@ -115642,14 +115642,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_by_f case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1312 = iprot.readListBegin(); - struct.success = new ArrayList(_list1312.size); - Partition _elem1313; - for (int _i1314 = 0; _i1314 < _list1312.size; ++_i1314) + org.apache.thrift.protocol.TList _list1320 = iprot.readListBegin(); + struct.success = new ArrayList(_list1320.size); + Partition _elem1321; + for (int _i1322 = 0; _i1322 < _list1320.size; ++_i1322) { - _elem1313 = new Partition(); - _elem1313.read(iprot); - struct.success.add(_elem1313); + _elem1321 = new Partition(); + _elem1321.read(iprot); + struct.success.add(_elem1321); } iprot.readListEnd(); } @@ -115693,9 +115693,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_by_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Partition _iter1315 : struct.success) + for (Partition _iter1323 : struct.success) { - _iter1315.write(oprot); + _iter1323.write(oprot); } oprot.writeListEnd(); } @@ -115742,9 +115742,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_f if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1316 : struct.success) + for (Partition _iter1324 : struct.success) { - _iter1316.write(oprot); + _iter1324.write(oprot); } } } @@ -115762,14 +115762,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_fi BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1317 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1317.size); - Partition _elem1318; - for (int _i1319 = 0; _i1319 < _list1317.size; ++_i1319) + org.apache.thrift.protocol.TList _list1325 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1325.size); + Partition _elem1326; + for (int _i1327 = 0; _i1327 < _list1325.size; ++_i1327) { - _elem1318 = new Partition(); - _elem1318.read(iprot); - struct.success.add(_elem1318); + _elem1326 = new Partition(); + _elem1326.read(iprot); + struct.success.add(_elem1326); } } struct.setSuccessIsSet(true); @@ -116936,14 +116936,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_part_specs_by_f case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1320 = iprot.readListBegin(); - struct.success = new ArrayList(_list1320.size); - PartitionSpec _elem1321; - for (int _i1322 = 0; _i1322 < _list1320.size; ++_i1322) + org.apache.thrift.protocol.TList _list1328 = iprot.readListBegin(); + struct.success = new ArrayList(_list1328.size); + PartitionSpec _elem1329; + for (int _i1330 = 0; _i1330 < _list1328.size; ++_i1330) { - _elem1321 = new PartitionSpec(); - _elem1321.read(iprot); - struct.success.add(_elem1321); + _elem1329 = new PartitionSpec(); + _elem1329.read(iprot); + struct.success.add(_elem1329); } iprot.readListEnd(); } @@ -116987,9 +116987,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_part_specs_by_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (PartitionSpec _iter1323 : struct.success) + for (PartitionSpec _iter1331 : struct.success) { - _iter1323.write(oprot); + _iter1331.write(oprot); } oprot.writeListEnd(); } @@ -117036,9 +117036,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_part_specs_by_f if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (PartitionSpec _iter1324 : struct.success) + for (PartitionSpec _iter1332 : struct.success) { - _iter1324.write(oprot); + _iter1332.write(oprot); } } } @@ -117056,14 +117056,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_part_specs_by_fi BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1325 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1325.size); - PartitionSpec _elem1326; - for (int _i1327 = 0; _i1327 < _list1325.size; ++_i1327) + org.apache.thrift.protocol.TList _list1333 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1333.size); + PartitionSpec _elem1334; + for (int _i1335 = 0; _i1335 < _list1333.size; ++_i1335) { - _elem1326 = new PartitionSpec(); - _elem1326.read(iprot); - struct.success.add(_elem1326); + _elem1334 = new PartitionSpec(); + _elem1334.read(iprot); + struct.success.add(_elem1334); } } struct.setSuccessIsSet(true); @@ -119647,13 +119647,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_by_n case 3: // NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1328 = iprot.readListBegin(); - struct.names = new ArrayList(_list1328.size); - String _elem1329; - for (int _i1330 = 0; _i1330 < _list1328.size; ++_i1330) + org.apache.thrift.protocol.TList _list1336 = iprot.readListBegin(); + struct.names = new ArrayList(_list1336.size); + String _elem1337; + for (int _i1338 = 0; _i1338 < _list1336.size; ++_i1338) { - _elem1329 = iprot.readString(); - struct.names.add(_elem1329); + _elem1337 = iprot.readString(); + struct.names.add(_elem1337); } iprot.readListEnd(); } @@ -119689,9 +119689,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_by_ oprot.writeFieldBegin(NAMES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.names.size())); - for (String _iter1331 : struct.names) + for (String _iter1339 : struct.names) { - oprot.writeString(_iter1331); + oprot.writeString(_iter1339); } oprot.writeListEnd(); } @@ -119734,9 +119734,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_n if (struct.isSetNames()) { { oprot.writeI32(struct.names.size()); - for (String _iter1332 : struct.names) + for (String _iter1340 : struct.names) { - oprot.writeString(_iter1332); + oprot.writeString(_iter1340); } } } @@ -119756,13 +119756,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_na } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1333 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.names = new ArrayList(_list1333.size); - String _elem1334; - for (int _i1335 = 0; _i1335 < _list1333.size; ++_i1335) + org.apache.thrift.protocol.TList _list1341 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.names = new ArrayList(_list1341.size); + String _elem1342; + for (int _i1343 = 0; _i1343 < _list1341.size; ++_i1343) { - _elem1334 = iprot.readString(); - struct.names.add(_elem1334); + _elem1342 = iprot.readString(); + struct.names.add(_elem1342); } } struct.setNamesIsSet(true); @@ -120249,14 +120249,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_partitions_by_n case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1336 = iprot.readListBegin(); - struct.success = new ArrayList(_list1336.size); - Partition _elem1337; - for (int _i1338 = 0; _i1338 < _list1336.size; ++_i1338) + org.apache.thrift.protocol.TList _list1344 = iprot.readListBegin(); + struct.success = new ArrayList(_list1344.size); + Partition _elem1345; + for (int _i1346 = 0; _i1346 < _list1344.size; ++_i1346) { - _elem1337 = new Partition(); - _elem1337.read(iprot); - struct.success.add(_elem1337); + _elem1345 = new Partition(); + _elem1345.read(iprot); + struct.success.add(_elem1345); } iprot.readListEnd(); } @@ -120300,9 +120300,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_partitions_by_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Partition _iter1339 : struct.success) + for (Partition _iter1347 : struct.success) { - _iter1339.write(oprot); + _iter1347.write(oprot); } oprot.writeListEnd(); } @@ -120349,9 +120349,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_n if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1340 : struct.success) + for (Partition _iter1348 : struct.success) { - _iter1340.write(oprot); + _iter1348.write(oprot); } } } @@ -120369,14 +120369,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_na BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1341 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1341.size); - Partition _elem1342; - for (int _i1343 = 0; _i1343 < _list1341.size; ++_i1343) + org.apache.thrift.protocol.TList _list1349 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1349.size); + Partition _elem1350; + for (int _i1351 = 0; _i1351 < _list1349.size; ++_i1351) { - _elem1342 = new Partition(); - _elem1342.read(iprot); - struct.success.add(_elem1342); + _elem1350 = new Partition(); + _elem1350.read(iprot); + struct.success.add(_elem1350); } } struct.setSuccessIsSet(true); @@ -121926,14 +121926,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, alter_partitions_ar case 3: // NEW_PARTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1344 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1344.size); - Partition _elem1345; - for (int _i1346 = 0; _i1346 < _list1344.size; ++_i1346) + org.apache.thrift.protocol.TList _list1352 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1352.size); + Partition _elem1353; + for (int _i1354 = 0; _i1354 < _list1352.size; ++_i1354) { - _elem1345 = new Partition(); - _elem1345.read(iprot); - struct.new_parts.add(_elem1345); + _elem1353 = new Partition(); + _elem1353.read(iprot); + struct.new_parts.add(_elem1353); } iprot.readListEnd(); } @@ -121969,9 +121969,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, alter_partitions_a 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 _iter1347 : struct.new_parts) + for (Partition _iter1355 : struct.new_parts) { - _iter1347.write(oprot); + _iter1355.write(oprot); } oprot.writeListEnd(); } @@ -122014,9 +122014,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, alter_partitions_ar if (struct.isSetNew_parts()) { { oprot.writeI32(struct.new_parts.size()); - for (Partition _iter1348 : struct.new_parts) + for (Partition _iter1356 : struct.new_parts) { - _iter1348.write(oprot); + _iter1356.write(oprot); } } } @@ -122036,14 +122036,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, alter_partitions_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1349 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1349.size); - Partition _elem1350; - for (int _i1351 = 0; _i1351 < _list1349.size; ++_i1351) + org.apache.thrift.protocol.TList _list1357 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1357.size); + Partition _elem1358; + for (int _i1359 = 0; _i1359 < _list1357.size; ++_i1359) { - _elem1350 = new Partition(); - _elem1350.read(iprot); - struct.new_parts.add(_elem1350); + _elem1358 = new Partition(); + _elem1358.read(iprot); + struct.new_parts.add(_elem1358); } } struct.setNew_partsIsSet(true); @@ -123096,14 +123096,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, alter_partitions_wi case 3: // NEW_PARTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1352 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1352.size); - Partition _elem1353; - for (int _i1354 = 0; _i1354 < _list1352.size; ++_i1354) + org.apache.thrift.protocol.TList _list1360 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1360.size); + Partition _elem1361; + for (int _i1362 = 0; _i1362 < _list1360.size; ++_i1362) { - _elem1353 = new Partition(); - _elem1353.read(iprot); - struct.new_parts.add(_elem1353); + _elem1361 = new Partition(); + _elem1361.read(iprot); + struct.new_parts.add(_elem1361); } iprot.readListEnd(); } @@ -123148,9 +123148,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, alter_partitions_w 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 _iter1355 : struct.new_parts) + for (Partition _iter1363 : struct.new_parts) { - _iter1355.write(oprot); + _iter1363.write(oprot); } oprot.writeListEnd(); } @@ -123201,9 +123201,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, alter_partitions_wi if (struct.isSetNew_parts()) { { oprot.writeI32(struct.new_parts.size()); - for (Partition _iter1356 : struct.new_parts) + for (Partition _iter1364 : struct.new_parts) { - _iter1356.write(oprot); + _iter1364.write(oprot); } } } @@ -123226,14 +123226,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, alter_partitions_wit } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1357 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1357.size); - Partition _elem1358; - for (int _i1359 = 0; _i1359 < _list1357.size; ++_i1359) + org.apache.thrift.protocol.TList _list1365 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1365.size); + Partition _elem1366; + for (int _i1367 = 0; _i1367 < _list1365.size; ++_i1367) { - _elem1358 = new Partition(); - _elem1358.read(iprot); - struct.new_parts.add(_elem1358); + _elem1366 = new Partition(); + _elem1366.read(iprot); + struct.new_parts.add(_elem1366); } } struct.setNew_partsIsSet(true); @@ -125434,13 +125434,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, rename_partition_ar case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1360 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1360.size); - String _elem1361; - for (int _i1362 = 0; _i1362 < _list1360.size; ++_i1362) + org.apache.thrift.protocol.TList _list1368 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1368.size); + String _elem1369; + for (int _i1370 = 0; _i1370 < _list1368.size; ++_i1370) { - _elem1361 = iprot.readString(); - struct.part_vals.add(_elem1361); + _elem1369 = iprot.readString(); + struct.part_vals.add(_elem1369); } iprot.readListEnd(); } @@ -125485,9 +125485,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, rename_partition_a 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 _iter1363 : struct.part_vals) + for (String _iter1371 : struct.part_vals) { - oprot.writeString(_iter1363); + oprot.writeString(_iter1371); } oprot.writeListEnd(); } @@ -125538,9 +125538,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, rename_partition_ar if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1364 : struct.part_vals) + for (String _iter1372 : struct.part_vals) { - oprot.writeString(_iter1364); + oprot.writeString(_iter1372); } } } @@ -125563,13 +125563,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, rename_partition_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1365 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1365.size); - String _elem1366; - for (int _i1367 = 0; _i1367 < _list1365.size; ++_i1367) + org.apache.thrift.protocol.TList _list1373 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1373.size); + String _elem1374; + for (int _i1375 = 0; _i1375 < _list1373.size; ++_i1375) { - _elem1366 = iprot.readString(); - struct.part_vals.add(_elem1366); + _elem1374 = iprot.readString(); + struct.part_vals.add(_elem1374); } } struct.setPart_valsIsSet(true); @@ -126443,13 +126443,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, partition_name_has_ case 1: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1368 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1368.size); - String _elem1369; - for (int _i1370 = 0; _i1370 < _list1368.size; ++_i1370) + org.apache.thrift.protocol.TList _list1376 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1376.size); + String _elem1377; + for (int _i1378 = 0; _i1378 < _list1376.size; ++_i1378) { - _elem1369 = iprot.readString(); - struct.part_vals.add(_elem1369); + _elem1377 = iprot.readString(); + struct.part_vals.add(_elem1377); } iprot.readListEnd(); } @@ -126483,9 +126483,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, partition_name_has 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 _iter1371 : struct.part_vals) + for (String _iter1379 : struct.part_vals) { - oprot.writeString(_iter1371); + oprot.writeString(_iter1379); } oprot.writeListEnd(); } @@ -126522,9 +126522,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, partition_name_has_ if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (String _iter1372 : struct.part_vals) + for (String _iter1380 : struct.part_vals) { - oprot.writeString(_iter1372); + oprot.writeString(_iter1380); } } } @@ -126539,13 +126539,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, partition_name_has_v BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1373 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1373.size); - String _elem1374; - for (int _i1375 = 0; _i1375 < _list1373.size; ++_i1375) + org.apache.thrift.protocol.TList _list1381 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1381.size); + String _elem1382; + for (int _i1383 = 0; _i1383 < _list1381.size; ++_i1383) { - _elem1374 = iprot.readString(); - struct.part_vals.add(_elem1374); + _elem1382 = iprot.readString(); + struct.part_vals.add(_elem1382); } } struct.setPart_valsIsSet(true); @@ -128700,13 +128700,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, partition_name_to_v case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1376 = iprot.readListBegin(); - struct.success = new ArrayList(_list1376.size); - String _elem1377; - for (int _i1378 = 0; _i1378 < _list1376.size; ++_i1378) + org.apache.thrift.protocol.TList _list1384 = iprot.readListBegin(); + struct.success = new ArrayList(_list1384.size); + String _elem1385; + for (int _i1386 = 0; _i1386 < _list1384.size; ++_i1386) { - _elem1377 = iprot.readString(); - struct.success.add(_elem1377); + _elem1385 = iprot.readString(); + struct.success.add(_elem1385); } iprot.readListEnd(); } @@ -128741,9 +128741,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, partition_name_to_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1379 : struct.success) + for (String _iter1387 : struct.success) { - oprot.writeString(_iter1379); + oprot.writeString(_iter1387); } oprot.writeListEnd(); } @@ -128782,9 +128782,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, partition_name_to_v if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1380 : struct.success) + for (String _iter1388 : struct.success) { - oprot.writeString(_iter1380); + oprot.writeString(_iter1388); } } } @@ -128799,13 +128799,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, partition_name_to_va BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1381 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1381.size); - String _elem1382; - for (int _i1383 = 0; _i1383 < _list1381.size; ++_i1383) + org.apache.thrift.protocol.TList _list1389 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1389.size); + String _elem1390; + for (int _i1391 = 0; _i1391 < _list1389.size; ++_i1391) { - _elem1382 = iprot.readString(); - struct.success.add(_elem1382); + _elem1390 = iprot.readString(); + struct.success.add(_elem1390); } } struct.setSuccessIsSet(true); @@ -129568,15 +129568,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, partition_name_to_s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1384 = iprot.readMapBegin(); - struct.success = new HashMap(2*_map1384.size); - String _key1385; - String _val1386; - for (int _i1387 = 0; _i1387 < _map1384.size; ++_i1387) + org.apache.thrift.protocol.TMap _map1392 = iprot.readMapBegin(); + struct.success = new HashMap(2*_map1392.size); + String _key1393; + String _val1394; + for (int _i1395 = 0; _i1395 < _map1392.size; ++_i1395) { - _key1385 = iprot.readString(); - _val1386 = iprot.readString(); - struct.success.put(_key1385, _val1386); + _key1393 = iprot.readString(); + _val1394 = iprot.readString(); + struct.success.put(_key1393, _val1394); } iprot.readMapEnd(); } @@ -129611,10 +129611,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, partition_name_to_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (Map.Entry _iter1388 : struct.success.entrySet()) + for (Map.Entry _iter1396 : struct.success.entrySet()) { - oprot.writeString(_iter1388.getKey()); - oprot.writeString(_iter1388.getValue()); + oprot.writeString(_iter1396.getKey()); + oprot.writeString(_iter1396.getValue()); } oprot.writeMapEnd(); } @@ -129653,10 +129653,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, partition_name_to_s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Map.Entry _iter1389 : struct.success.entrySet()) + for (Map.Entry _iter1397 : struct.success.entrySet()) { - oprot.writeString(_iter1389.getKey()); - oprot.writeString(_iter1389.getValue()); + oprot.writeString(_iter1397.getKey()); + oprot.writeString(_iter1397.getValue()); } } } @@ -129671,15 +129671,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, partition_name_to_sp BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TMap _map1390 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new HashMap(2*_map1390.size); - String _key1391; - String _val1392; - for (int _i1393 = 0; _i1393 < _map1390.size; ++_i1393) + org.apache.thrift.protocol.TMap _map1398 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new HashMap(2*_map1398.size); + String _key1399; + String _val1400; + for (int _i1401 = 0; _i1401 < _map1398.size; ++_i1401) { - _key1391 = iprot.readString(); - _val1392 = iprot.readString(); - struct.success.put(_key1391, _val1392); + _key1399 = iprot.readString(); + _val1400 = iprot.readString(); + struct.success.put(_key1399, _val1400); } } struct.setSuccessIsSet(true); @@ -130274,15 +130274,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, markPartitionForEve case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1394 = iprot.readMapBegin(); - struct.part_vals = new HashMap(2*_map1394.size); - String _key1395; - String _val1396; - for (int _i1397 = 0; _i1397 < _map1394.size; ++_i1397) + org.apache.thrift.protocol.TMap _map1402 = iprot.readMapBegin(); + struct.part_vals = new HashMap(2*_map1402.size); + String _key1403; + String _val1404; + for (int _i1405 = 0; _i1405 < _map1402.size; ++_i1405) { - _key1395 = iprot.readString(); - _val1396 = iprot.readString(); - struct.part_vals.put(_key1395, _val1396); + _key1403 = iprot.readString(); + _val1404 = iprot.readString(); + struct.part_vals.put(_key1403, _val1404); } iprot.readMapEnd(); } @@ -130326,10 +130326,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, markPartitionForEv oprot.writeFieldBegin(PART_VALS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.part_vals.size())); - for (Map.Entry _iter1398 : struct.part_vals.entrySet()) + for (Map.Entry _iter1406 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1398.getKey()); - oprot.writeString(_iter1398.getValue()); + oprot.writeString(_iter1406.getKey()); + oprot.writeString(_iter1406.getValue()); } oprot.writeMapEnd(); } @@ -130380,10 +130380,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, markPartitionForEve if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (Map.Entry _iter1399 : struct.part_vals.entrySet()) + for (Map.Entry _iter1407 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1399.getKey()); - oprot.writeString(_iter1399.getValue()); + oprot.writeString(_iter1407.getKey()); + oprot.writeString(_iter1407.getValue()); } } } @@ -130406,15 +130406,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, markPartitionForEven } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map1400 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new HashMap(2*_map1400.size); - String _key1401; - String _val1402; - for (int _i1403 = 0; _i1403 < _map1400.size; ++_i1403) + org.apache.thrift.protocol.TMap _map1408 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new HashMap(2*_map1408.size); + String _key1409; + String _val1410; + for (int _i1411 = 0; _i1411 < _map1408.size; ++_i1411) { - _key1401 = iprot.readString(); - _val1402 = iprot.readString(); - struct.part_vals.put(_key1401, _val1402); + _key1409 = iprot.readString(); + _val1410 = iprot.readString(); + struct.part_vals.put(_key1409, _val1410); } } struct.setPart_valsIsSet(true); @@ -131898,15 +131898,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, isPartitionMarkedFo case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map1404 = iprot.readMapBegin(); - struct.part_vals = new HashMap(2*_map1404.size); - String _key1405; - String _val1406; - for (int _i1407 = 0; _i1407 < _map1404.size; ++_i1407) + org.apache.thrift.protocol.TMap _map1412 = iprot.readMapBegin(); + struct.part_vals = new HashMap(2*_map1412.size); + String _key1413; + String _val1414; + for (int _i1415 = 0; _i1415 < _map1412.size; ++_i1415) { - _key1405 = iprot.readString(); - _val1406 = iprot.readString(); - struct.part_vals.put(_key1405, _val1406); + _key1413 = iprot.readString(); + _val1414 = iprot.readString(); + struct.part_vals.put(_key1413, _val1414); } iprot.readMapEnd(); } @@ -131950,10 +131950,10 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, isPartitionMarkedF oprot.writeFieldBegin(PART_VALS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.part_vals.size())); - for (Map.Entry _iter1408 : struct.part_vals.entrySet()) + for (Map.Entry _iter1416 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1408.getKey()); - oprot.writeString(_iter1408.getValue()); + oprot.writeString(_iter1416.getKey()); + oprot.writeString(_iter1416.getValue()); } oprot.writeMapEnd(); } @@ -132004,10 +132004,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, isPartitionMarkedFo if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (Map.Entry _iter1409 : struct.part_vals.entrySet()) + for (Map.Entry _iter1417 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1409.getKey()); - oprot.writeString(_iter1409.getValue()); + oprot.writeString(_iter1417.getKey()); + oprot.writeString(_iter1417.getValue()); } } } @@ -132030,15 +132030,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, isPartitionMarkedFor } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map1410 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new HashMap(2*_map1410.size); - String _key1411; - String _val1412; - for (int _i1413 = 0; _i1413 < _map1410.size; ++_i1413) + org.apache.thrift.protocol.TMap _map1418 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new HashMap(2*_map1418.size); + String _key1419; + String _val1420; + for (int _i1421 = 0; _i1421 < _map1418.size; ++_i1421) { - _key1411 = iprot.readString(); - _val1412 = iprot.readString(); - struct.part_vals.put(_key1411, _val1412); + _key1419 = iprot.readString(); + _val1420 = iprot.readString(); + struct.part_vals.put(_key1419, _val1420); } } struct.setPart_valsIsSet(true); @@ -154394,13 +154394,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_functions_resul case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1414 = iprot.readListBegin(); - struct.success = new ArrayList(_list1414.size); - String _elem1415; - for (int _i1416 = 0; _i1416 < _list1414.size; ++_i1416) + org.apache.thrift.protocol.TList _list1422 = iprot.readListBegin(); + struct.success = new ArrayList(_list1422.size); + String _elem1423; + for (int _i1424 = 0; _i1424 < _list1422.size; ++_i1424) { - _elem1415 = iprot.readString(); - struct.success.add(_elem1415); + _elem1423 = iprot.readString(); + struct.success.add(_elem1423); } iprot.readListEnd(); } @@ -154435,9 +154435,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_functions_resu oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1417 : struct.success) + for (String _iter1425 : struct.success) { - oprot.writeString(_iter1417); + oprot.writeString(_iter1425); } oprot.writeListEnd(); } @@ -154476,9 +154476,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_functions_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1418 : struct.success) + for (String _iter1426 : struct.success) { - oprot.writeString(_iter1418); + oprot.writeString(_iter1426); } } } @@ -154493,13 +154493,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_functions_result BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1419 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1419.size); - String _elem1420; - for (int _i1421 = 0; _i1421 < _list1419.size; ++_i1421) + org.apache.thrift.protocol.TList _list1427 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1427.size); + String _elem1428; + for (int _i1429 = 0; _i1429 < _list1427.size; ++_i1429) { - _elem1420 = iprot.readString(); - struct.success.add(_elem1420); + _elem1428 = iprot.readString(); + struct.success.add(_elem1428); } } struct.setSuccessIsSet(true); @@ -158554,13 +158554,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_role_names_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1422 = iprot.readListBegin(); - struct.success = new ArrayList(_list1422.size); - String _elem1423; - for (int _i1424 = 0; _i1424 < _list1422.size; ++_i1424) + org.apache.thrift.protocol.TList _list1430 = iprot.readListBegin(); + struct.success = new ArrayList(_list1430.size); + String _elem1431; + for (int _i1432 = 0; _i1432 < _list1430.size; ++_i1432) { - _elem1423 = iprot.readString(); - struct.success.add(_elem1423); + _elem1431 = iprot.readString(); + struct.success.add(_elem1431); } iprot.readListEnd(); } @@ -158595,9 +158595,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_role_names_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1425 : struct.success) + for (String _iter1433 : struct.success) { - oprot.writeString(_iter1425); + oprot.writeString(_iter1433); } oprot.writeListEnd(); } @@ -158636,9 +158636,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_role_names_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1426 : struct.success) + for (String _iter1434 : struct.success) { - oprot.writeString(_iter1426); + oprot.writeString(_iter1434); } } } @@ -158653,13 +158653,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_role_names_resul BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1427 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1427.size); - String _elem1428; - for (int _i1429 = 0; _i1429 < _list1427.size; ++_i1429) + org.apache.thrift.protocol.TList _list1435 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1435.size); + String _elem1436; + for (int _i1437 = 0; _i1437 < _list1435.size; ++_i1437) { - _elem1428 = iprot.readString(); - struct.success.add(_elem1428); + _elem1436 = iprot.readString(); + struct.success.add(_elem1436); } } struct.setSuccessIsSet(true); @@ -161950,14 +161950,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, list_roles_result s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1430 = iprot.readListBegin(); - struct.success = new ArrayList(_list1430.size); - Role _elem1431; - for (int _i1432 = 0; _i1432 < _list1430.size; ++_i1432) + org.apache.thrift.protocol.TList _list1438 = iprot.readListBegin(); + struct.success = new ArrayList(_list1438.size); + Role _elem1439; + for (int _i1440 = 0; _i1440 < _list1438.size; ++_i1440) { - _elem1431 = new Role(); - _elem1431.read(iprot); - struct.success.add(_elem1431); + _elem1439 = new Role(); + _elem1439.read(iprot); + struct.success.add(_elem1439); } iprot.readListEnd(); } @@ -161992,9 +161992,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, list_roles_result oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Role _iter1433 : struct.success) + for (Role _iter1441 : struct.success) { - _iter1433.write(oprot); + _iter1441.write(oprot); } oprot.writeListEnd(); } @@ -162033,9 +162033,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, list_roles_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Role _iter1434 : struct.success) + for (Role _iter1442 : struct.success) { - _iter1434.write(oprot); + _iter1442.write(oprot); } } } @@ -162050,14 +162050,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, list_roles_result st BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1435 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1435.size); - Role _elem1436; - for (int _i1437 = 0; _i1437 < _list1435.size; ++_i1437) + org.apache.thrift.protocol.TList _list1443 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1443.size); + Role _elem1444; + for (int _i1445 = 0; _i1445 < _list1443.size; ++_i1445) { - _elem1436 = new Role(); - _elem1436.read(iprot); - struct.success.add(_elem1436); + _elem1444 = new Role(); + _elem1444.read(iprot); + struct.success.add(_elem1444); } } struct.setSuccessIsSet(true); @@ -165062,13 +165062,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_privilege_set_a case 3: // GROUP_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1438 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1438.size); - String _elem1439; - for (int _i1440 = 0; _i1440 < _list1438.size; ++_i1440) + org.apache.thrift.protocol.TList _list1446 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1446.size); + String _elem1447; + for (int _i1448 = 0; _i1448 < _list1446.size; ++_i1448) { - _elem1439 = iprot.readString(); - struct.group_names.add(_elem1439); + _elem1447 = iprot.readString(); + struct.group_names.add(_elem1447); } iprot.readListEnd(); } @@ -165104,9 +165104,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_privilege_set_ 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 _iter1441 : struct.group_names) + for (String _iter1449 : struct.group_names) { - oprot.writeString(_iter1441); + oprot.writeString(_iter1449); } oprot.writeListEnd(); } @@ -165149,9 +165149,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_privilege_set_a if (struct.isSetGroup_names()) { { oprot.writeI32(struct.group_names.size()); - for (String _iter1442 : struct.group_names) + for (String _iter1450 : struct.group_names) { - oprot.writeString(_iter1442); + oprot.writeString(_iter1450); } } } @@ -165172,13 +165172,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_privilege_set_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1443 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1443.size); - String _elem1444; - for (int _i1445 = 0; _i1445 < _list1443.size; ++_i1445) + org.apache.thrift.protocol.TList _list1451 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1451.size); + String _elem1452; + for (int _i1453 = 0; _i1453 < _list1451.size; ++_i1453) { - _elem1444 = iprot.readString(); - struct.group_names.add(_elem1444); + _elem1452 = iprot.readString(); + struct.group_names.add(_elem1452); } } struct.setGroup_namesIsSet(true); @@ -166636,14 +166636,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, list_privileges_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1446 = iprot.readListBegin(); - struct.success = new ArrayList(_list1446.size); - HiveObjectPrivilege _elem1447; - for (int _i1448 = 0; _i1448 < _list1446.size; ++_i1448) + org.apache.thrift.protocol.TList _list1454 = iprot.readListBegin(); + struct.success = new ArrayList(_list1454.size); + HiveObjectPrivilege _elem1455; + for (int _i1456 = 0; _i1456 < _list1454.size; ++_i1456) { - _elem1447 = new HiveObjectPrivilege(); - _elem1447.read(iprot); - struct.success.add(_elem1447); + _elem1455 = new HiveObjectPrivilege(); + _elem1455.read(iprot); + struct.success.add(_elem1455); } iprot.readListEnd(); } @@ -166678,9 +166678,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, list_privileges_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (HiveObjectPrivilege _iter1449 : struct.success) + for (HiveObjectPrivilege _iter1457 : struct.success) { - _iter1449.write(oprot); + _iter1457.write(oprot); } oprot.writeListEnd(); } @@ -166719,9 +166719,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, list_privileges_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (HiveObjectPrivilege _iter1450 : struct.success) + for (HiveObjectPrivilege _iter1458 : struct.success) { - _iter1450.write(oprot); + _iter1458.write(oprot); } } } @@ -166736,14 +166736,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, list_privileges_resu BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1451 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1451.size); - HiveObjectPrivilege _elem1452; - for (int _i1453 = 0; _i1453 < _list1451.size; ++_i1453) + org.apache.thrift.protocol.TList _list1459 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1459.size); + HiveObjectPrivilege _elem1460; + for (int _i1461 = 0; _i1461 < _list1459.size; ++_i1461) { - _elem1452 = new HiveObjectPrivilege(); - _elem1452.read(iprot); - struct.success.add(_elem1452); + _elem1460 = new HiveObjectPrivilege(); + _elem1460.read(iprot); + struct.success.add(_elem1460); } } struct.setSuccessIsSet(true); @@ -169645,13 +169645,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, set_ugi_args struct case 2: // GROUP_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1454 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1454.size); - String _elem1455; - for (int _i1456 = 0; _i1456 < _list1454.size; ++_i1456) + org.apache.thrift.protocol.TList _list1462 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1462.size); + String _elem1463; + for (int _i1464 = 0; _i1464 < _list1462.size; ++_i1464) { - _elem1455 = iprot.readString(); - struct.group_names.add(_elem1455); + _elem1463 = iprot.readString(); + struct.group_names.add(_elem1463); } iprot.readListEnd(); } @@ -169682,9 +169682,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, set_ugi_args struc 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 _iter1457 : struct.group_names) + for (String _iter1465 : struct.group_names) { - oprot.writeString(_iter1457); + oprot.writeString(_iter1465); } oprot.writeListEnd(); } @@ -169721,9 +169721,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, set_ugi_args struct if (struct.isSetGroup_names()) { { oprot.writeI32(struct.group_names.size()); - for (String _iter1458 : struct.group_names) + for (String _iter1466 : struct.group_names) { - oprot.writeString(_iter1458); + oprot.writeString(_iter1466); } } } @@ -169739,13 +169739,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, set_ugi_args struct) } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1459 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1459.size); - String _elem1460; - for (int _i1461 = 0; _i1461 < _list1459.size; ++_i1461) + org.apache.thrift.protocol.TList _list1467 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1467.size); + String _elem1468; + for (int _i1469 = 0; _i1469 < _list1467.size; ++_i1469) { - _elem1460 = iprot.readString(); - struct.group_names.add(_elem1460); + _elem1468 = iprot.readString(); + struct.group_names.add(_elem1468); } } struct.setGroup_namesIsSet(true); @@ -170148,13 +170148,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, set_ugi_result stru case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1462 = iprot.readListBegin(); - struct.success = new ArrayList(_list1462.size); - String _elem1463; - for (int _i1464 = 0; _i1464 < _list1462.size; ++_i1464) + org.apache.thrift.protocol.TList _list1470 = iprot.readListBegin(); + struct.success = new ArrayList(_list1470.size); + String _elem1471; + for (int _i1472 = 0; _i1472 < _list1470.size; ++_i1472) { - _elem1463 = iprot.readString(); - struct.success.add(_elem1463); + _elem1471 = iprot.readString(); + struct.success.add(_elem1471); } iprot.readListEnd(); } @@ -170189,9 +170189,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, set_ugi_result str oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1465 : struct.success) + for (String _iter1473 : struct.success) { - oprot.writeString(_iter1465); + oprot.writeString(_iter1473); } oprot.writeListEnd(); } @@ -170230,9 +170230,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, set_ugi_result stru if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1466 : struct.success) + for (String _iter1474 : struct.success) { - oprot.writeString(_iter1466); + oprot.writeString(_iter1474); } } } @@ -170247,13 +170247,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, set_ugi_result struc BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1467 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1467.size); - String _elem1468; - for (int _i1469 = 0; _i1469 < _list1467.size; ++_i1469) + org.apache.thrift.protocol.TList _list1475 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1475.size); + String _elem1476; + for (int _i1477 = 0; _i1477 < _list1475.size; ++_i1477) { - _elem1468 = iprot.readString(); - struct.success.add(_elem1468); + _elem1476 = iprot.readString(); + struct.success.add(_elem1476); } } struct.setSuccessIsSet(true); @@ -175544,13 +175544,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_all_token_ident case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1470 = iprot.readListBegin(); - struct.success = new ArrayList(_list1470.size); - String _elem1471; - for (int _i1472 = 0; _i1472 < _list1470.size; ++_i1472) + org.apache.thrift.protocol.TList _list1478 = iprot.readListBegin(); + struct.success = new ArrayList(_list1478.size); + String _elem1479; + for (int _i1480 = 0; _i1480 < _list1478.size; ++_i1480) { - _elem1471 = iprot.readString(); - struct.success.add(_elem1471); + _elem1479 = iprot.readString(); + struct.success.add(_elem1479); } iprot.readListEnd(); } @@ -175576,9 +175576,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_all_token_iden oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1473 : struct.success) + for (String _iter1481 : struct.success) { - oprot.writeString(_iter1473); + oprot.writeString(_iter1481); } oprot.writeListEnd(); } @@ -175609,9 +175609,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_all_token_ident if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1474 : struct.success) + for (String _iter1482 : struct.success) { - oprot.writeString(_iter1474); + oprot.writeString(_iter1482); } } } @@ -175623,13 +175623,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_token_identi BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1475 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1475.size); - String _elem1476; - for (int _i1477 = 0; _i1477 < _list1475.size; ++_i1477) + org.apache.thrift.protocol.TList _list1483 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1483.size); + String _elem1484; + for (int _i1485 = 0; _i1485 < _list1483.size; ++_i1485) { - _elem1476 = iprot.readString(); - struct.success.add(_elem1476); + _elem1484 = iprot.readString(); + struct.success.add(_elem1484); } } struct.setSuccessIsSet(true); @@ -178659,13 +178659,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_master_keys_res case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1478 = iprot.readListBegin(); - struct.success = new ArrayList(_list1478.size); - String _elem1479; - for (int _i1480 = 0; _i1480 < _list1478.size; ++_i1480) + org.apache.thrift.protocol.TList _list1486 = iprot.readListBegin(); + struct.success = new ArrayList(_list1486.size); + String _elem1487; + for (int _i1488 = 0; _i1488 < _list1486.size; ++_i1488) { - _elem1479 = iprot.readString(); - struct.success.add(_elem1479); + _elem1487 = iprot.readString(); + struct.success.add(_elem1487); } iprot.readListEnd(); } @@ -178691,9 +178691,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_master_keys_re oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1481 : struct.success) + for (String _iter1489 : struct.success) { - oprot.writeString(_iter1481); + oprot.writeString(_iter1489); } oprot.writeListEnd(); } @@ -178724,9 +178724,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_master_keys_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1482 : struct.success) + for (String _iter1490 : struct.success) { - oprot.writeString(_iter1482); + oprot.writeString(_iter1490); } } } @@ -178738,13 +178738,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_master_keys_resu BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1483 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1483.size); - String _elem1484; - for (int _i1485 = 0; _i1485 < _list1483.size; ++_i1485) + org.apache.thrift.protocol.TList _list1491 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1491.size); + String _elem1492; + for (int _i1493 = 0; _i1493 < _list1491.size; ++_i1493) { - _elem1484 = iprot.readString(); - struct.success.add(_elem1484); + _elem1492 = iprot.readString(); + struct.success.add(_elem1492); } } struct.setSuccessIsSet(true); @@ -226318,14 +226318,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_schema_all_vers case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1486 = iprot.readListBegin(); - struct.success = new ArrayList(_list1486.size); - SchemaVersion _elem1487; - for (int _i1488 = 0; _i1488 < _list1486.size; ++_i1488) + org.apache.thrift.protocol.TList _list1494 = iprot.readListBegin(); + struct.success = new ArrayList(_list1494.size); + SchemaVersion _elem1495; + for (int _i1496 = 0; _i1496 < _list1494.size; ++_i1496) { - _elem1487 = new SchemaVersion(); - _elem1487.read(iprot); - struct.success.add(_elem1487); + _elem1495 = new SchemaVersion(); + _elem1495.read(iprot); + struct.success.add(_elem1495); } iprot.readListEnd(); } @@ -226369,9 +226369,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_schema_all_ver oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (SchemaVersion _iter1489 : struct.success) + for (SchemaVersion _iter1497 : struct.success) { - _iter1489.write(oprot); + _iter1497.write(oprot); } oprot.writeListEnd(); } @@ -226418,9 +226418,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_schema_all_vers if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (SchemaVersion _iter1490 : struct.success) + for (SchemaVersion _iter1498 : struct.success) { - _iter1490.write(oprot); + _iter1498.write(oprot); } } } @@ -226438,14 +226438,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_schema_all_versi BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1491 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1491.size); - SchemaVersion _elem1492; - for (int _i1493 = 0; _i1493 < _list1491.size; ++_i1493) + org.apache.thrift.protocol.TList _list1499 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1499.size); + SchemaVersion _elem1500; + for (int _i1501 = 0; _i1501 < _list1499.size; ++_i1501) { - _elem1492 = new SchemaVersion(); - _elem1492.read(iprot); - struct.success.add(_elem1492); + _elem1500 = new SchemaVersion(); + _elem1500.read(iprot); + struct.success.add(_elem1500); } } struct.setSuccessIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java index ad2c0b6481..f4e30f037e 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMFullResourcePlan.java @@ -755,14 +755,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMFullResourcePlan case 2: // POOLS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list832 = iprot.readListBegin(); - struct.pools = new ArrayList(_list832.size); - WMPool _elem833; - for (int _i834 = 0; _i834 < _list832.size; ++_i834) + org.apache.thrift.protocol.TList _list840 = iprot.readListBegin(); + struct.pools = new ArrayList(_list840.size); + WMPool _elem841; + for (int _i842 = 0; _i842 < _list840.size; ++_i842) { - _elem833 = new WMPool(); - _elem833.read(iprot); - struct.pools.add(_elem833); + _elem841 = new WMPool(); + _elem841.read(iprot); + struct.pools.add(_elem841); } iprot.readListEnd(); } @@ -774,14 +774,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMFullResourcePlan case 3: // MAPPINGS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list835 = iprot.readListBegin(); - struct.mappings = new ArrayList(_list835.size); - WMMapping _elem836; - for (int _i837 = 0; _i837 < _list835.size; ++_i837) + org.apache.thrift.protocol.TList _list843 = iprot.readListBegin(); + struct.mappings = new ArrayList(_list843.size); + WMMapping _elem844; + for (int _i845 = 0; _i845 < _list843.size; ++_i845) { - _elem836 = new WMMapping(); - _elem836.read(iprot); - struct.mappings.add(_elem836); + _elem844 = new WMMapping(); + _elem844.read(iprot); + struct.mappings.add(_elem844); } iprot.readListEnd(); } @@ -793,14 +793,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMFullResourcePlan case 4: // TRIGGERS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list838 = iprot.readListBegin(); - struct.triggers = new ArrayList(_list838.size); - WMTrigger _elem839; - for (int _i840 = 0; _i840 < _list838.size; ++_i840) + org.apache.thrift.protocol.TList _list846 = iprot.readListBegin(); + struct.triggers = new ArrayList(_list846.size); + WMTrigger _elem847; + for (int _i848 = 0; _i848 < _list846.size; ++_i848) { - _elem839 = new WMTrigger(); - _elem839.read(iprot); - struct.triggers.add(_elem839); + _elem847 = new WMTrigger(); + _elem847.read(iprot); + struct.triggers.add(_elem847); } iprot.readListEnd(); } @@ -812,14 +812,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMFullResourcePlan case 5: // POOL_TRIGGERS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list841 = iprot.readListBegin(); - struct.poolTriggers = new ArrayList(_list841.size); - WMPoolTrigger _elem842; - for (int _i843 = 0; _i843 < _list841.size; ++_i843) + org.apache.thrift.protocol.TList _list849 = iprot.readListBegin(); + struct.poolTriggers = new ArrayList(_list849.size); + WMPoolTrigger _elem850; + for (int _i851 = 0; _i851 < _list849.size; ++_i851) { - _elem842 = new WMPoolTrigger(); - _elem842.read(iprot); - struct.poolTriggers.add(_elem842); + _elem850 = new WMPoolTrigger(); + _elem850.read(iprot); + struct.poolTriggers.add(_elem850); } iprot.readListEnd(); } @@ -850,9 +850,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMFullResourcePlan oprot.writeFieldBegin(POOLS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.pools.size())); - for (WMPool _iter844 : struct.pools) + for (WMPool _iter852 : struct.pools) { - _iter844.write(oprot); + _iter852.write(oprot); } oprot.writeListEnd(); } @@ -863,9 +863,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMFullResourcePlan oprot.writeFieldBegin(MAPPINGS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.mappings.size())); - for (WMMapping _iter845 : struct.mappings) + for (WMMapping _iter853 : struct.mappings) { - _iter845.write(oprot); + _iter853.write(oprot); } oprot.writeListEnd(); } @@ -877,9 +877,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMFullResourcePlan oprot.writeFieldBegin(TRIGGERS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.triggers.size())); - for (WMTrigger _iter846 : struct.triggers) + for (WMTrigger _iter854 : struct.triggers) { - _iter846.write(oprot); + _iter854.write(oprot); } oprot.writeListEnd(); } @@ -891,9 +891,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMFullResourcePlan oprot.writeFieldBegin(POOL_TRIGGERS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.poolTriggers.size())); - for (WMPoolTrigger _iter847 : struct.poolTriggers) + for (WMPoolTrigger _iter855 : struct.poolTriggers) { - _iter847.write(oprot); + _iter855.write(oprot); } oprot.writeListEnd(); } @@ -920,9 +920,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, WMFullResourcePlan struct.plan.write(oprot); { oprot.writeI32(struct.pools.size()); - for (WMPool _iter848 : struct.pools) + for (WMPool _iter856 : struct.pools) { - _iter848.write(oprot); + _iter856.write(oprot); } } BitSet optionals = new BitSet(); @@ -939,27 +939,27 @@ public void write(org.apache.thrift.protocol.TProtocol prot, WMFullResourcePlan if (struct.isSetMappings()) { { oprot.writeI32(struct.mappings.size()); - for (WMMapping _iter849 : struct.mappings) + for (WMMapping _iter857 : struct.mappings) { - _iter849.write(oprot); + _iter857.write(oprot); } } } if (struct.isSetTriggers()) { { oprot.writeI32(struct.triggers.size()); - for (WMTrigger _iter850 : struct.triggers) + for (WMTrigger _iter858 : struct.triggers) { - _iter850.write(oprot); + _iter858.write(oprot); } } } if (struct.isSetPoolTriggers()) { { oprot.writeI32(struct.poolTriggers.size()); - for (WMPoolTrigger _iter851 : struct.poolTriggers) + for (WMPoolTrigger _iter859 : struct.poolTriggers) { - _iter851.write(oprot); + _iter859.write(oprot); } } } @@ -972,56 +972,56 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMFullResourcePlan s struct.plan.read(iprot); struct.setPlanIsSet(true); { - org.apache.thrift.protocol.TList _list852 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.pools = new ArrayList(_list852.size); - WMPool _elem853; - for (int _i854 = 0; _i854 < _list852.size; ++_i854) + org.apache.thrift.protocol.TList _list860 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.pools = new ArrayList(_list860.size); + WMPool _elem861; + for (int _i862 = 0; _i862 < _list860.size; ++_i862) { - _elem853 = new WMPool(); - _elem853.read(iprot); - struct.pools.add(_elem853); + _elem861 = new WMPool(); + _elem861.read(iprot); + struct.pools.add(_elem861); } } struct.setPoolsIsSet(true); BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list855 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.mappings = new ArrayList(_list855.size); - WMMapping _elem856; - for (int _i857 = 0; _i857 < _list855.size; ++_i857) + org.apache.thrift.protocol.TList _list863 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.mappings = new ArrayList(_list863.size); + WMMapping _elem864; + for (int _i865 = 0; _i865 < _list863.size; ++_i865) { - _elem856 = new WMMapping(); - _elem856.read(iprot); - struct.mappings.add(_elem856); + _elem864 = new WMMapping(); + _elem864.read(iprot); + struct.mappings.add(_elem864); } } struct.setMappingsIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list858 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.triggers = new ArrayList(_list858.size); - WMTrigger _elem859; - for (int _i860 = 0; _i860 < _list858.size; ++_i860) + org.apache.thrift.protocol.TList _list866 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.triggers = new ArrayList(_list866.size); + WMTrigger _elem867; + for (int _i868 = 0; _i868 < _list866.size; ++_i868) { - _elem859 = new WMTrigger(); - _elem859.read(iprot); - struct.triggers.add(_elem859); + _elem867 = new WMTrigger(); + _elem867.read(iprot); + struct.triggers.add(_elem867); } } struct.setTriggersIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list861 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.poolTriggers = new ArrayList(_list861.size); - WMPoolTrigger _elem862; - for (int _i863 = 0; _i863 < _list861.size; ++_i863) + org.apache.thrift.protocol.TList _list869 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.poolTriggers = new ArrayList(_list869.size); + WMPoolTrigger _elem870; + for (int _i871 = 0; _i871 < _list869.size; ++_i871) { - _elem862 = new WMPoolTrigger(); - _elem862.read(iprot); - struct.poolTriggers.add(_elem862); + _elem870 = new WMPoolTrigger(); + _elem870.read(iprot); + struct.poolTriggers.add(_elem870); } } struct.setPoolTriggersIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java index cf502067a0..ba81ce9684 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetAllResourcePlanResponse.java @@ -346,14 +346,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMGetAllResourcePla case 1: // RESOURCE_PLANS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list864 = iprot.readListBegin(); - struct.resourcePlans = new ArrayList(_list864.size); - WMResourcePlan _elem865; - for (int _i866 = 0; _i866 < _list864.size; ++_i866) + org.apache.thrift.protocol.TList _list872 = iprot.readListBegin(); + struct.resourcePlans = new ArrayList(_list872.size); + WMResourcePlan _elem873; + for (int _i874 = 0; _i874 < _list872.size; ++_i874) { - _elem865 = new WMResourcePlan(); - _elem865.read(iprot); - struct.resourcePlans.add(_elem865); + _elem873 = new WMResourcePlan(); + _elem873.read(iprot); + struct.resourcePlans.add(_elem873); } iprot.readListEnd(); } @@ -380,9 +380,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMGetAllResourcePl oprot.writeFieldBegin(RESOURCE_PLANS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.resourcePlans.size())); - for (WMResourcePlan _iter867 : struct.resourcePlans) + for (WMResourcePlan _iter875 : struct.resourcePlans) { - _iter867.write(oprot); + _iter875.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, WMGetAllResourcePla if (struct.isSetResourcePlans()) { { oprot.writeI32(struct.resourcePlans.size()); - for (WMResourcePlan _iter868 : struct.resourcePlans) + for (WMResourcePlan _iter876 : struct.resourcePlans) { - _iter868.write(oprot); + _iter876.write(oprot); } } } @@ -428,14 +428,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMGetAllResourcePlan BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list869 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.resourcePlans = new ArrayList(_list869.size); - WMResourcePlan _elem870; - for (int _i871 = 0; _i871 < _list869.size; ++_i871) + org.apache.thrift.protocol.TList _list877 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.resourcePlans = new ArrayList(_list877.size); + WMResourcePlan _elem878; + for (int _i879 = 0; _i879 < _list877.size; ++_i879) { - _elem870 = new WMResourcePlan(); - _elem870.read(iprot); - struct.resourcePlans.add(_elem870); + _elem878 = new WMResourcePlan(); + _elem878.read(iprot); + struct.resourcePlans.add(_elem878); } } struct.setResourcePlansIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java index b23a7f89f8..10ed67ce2b 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMGetTriggersForResourePlanResponse.java @@ -346,14 +346,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMGetTriggersForRes case 1: // TRIGGERS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list888 = iprot.readListBegin(); - struct.triggers = new ArrayList(_list888.size); - WMTrigger _elem889; - for (int _i890 = 0; _i890 < _list888.size; ++_i890) + org.apache.thrift.protocol.TList _list896 = iprot.readListBegin(); + struct.triggers = new ArrayList(_list896.size); + WMTrigger _elem897; + for (int _i898 = 0; _i898 < _list896.size; ++_i898) { - _elem889 = new WMTrigger(); - _elem889.read(iprot); - struct.triggers.add(_elem889); + _elem897 = new WMTrigger(); + _elem897.read(iprot); + struct.triggers.add(_elem897); } iprot.readListEnd(); } @@ -380,9 +380,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMGetTriggersForRe oprot.writeFieldBegin(TRIGGERS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.triggers.size())); - for (WMTrigger _iter891 : struct.triggers) + for (WMTrigger _iter899 : struct.triggers) { - _iter891.write(oprot); + _iter899.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, WMGetTriggersForRes if (struct.isSetTriggers()) { { oprot.writeI32(struct.triggers.size()); - for (WMTrigger _iter892 : struct.triggers) + for (WMTrigger _iter900 : struct.triggers) { - _iter892.write(oprot); + _iter900.write(oprot); } } } @@ -428,14 +428,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMGetTriggersForReso BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list893 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.triggers = new ArrayList(_list893.size); - WMTrigger _elem894; - for (int _i895 = 0; _i895 < _list893.size; ++_i895) + org.apache.thrift.protocol.TList _list901 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.triggers = new ArrayList(_list901.size); + WMTrigger _elem902; + for (int _i903 = 0; _i903 < _list901.size; ++_i903) { - _elem894 = new WMTrigger(); - _elem894.read(iprot); - struct.triggers.add(_elem894); + _elem902 = new WMTrigger(); + _elem902.read(iprot); + struct.triggers.add(_elem902); } } struct.setTriggersIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java index 53a0443c7d..86d7d5c694 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/WMValidateResourcePlanResponse.java @@ -441,13 +441,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMValidateResourceP case 1: // ERRORS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list872 = iprot.readListBegin(); - struct.errors = new ArrayList(_list872.size); - String _elem873; - for (int _i874 = 0; _i874 < _list872.size; ++_i874) + org.apache.thrift.protocol.TList _list880 = iprot.readListBegin(); + struct.errors = new ArrayList(_list880.size); + String _elem881; + for (int _i882 = 0; _i882 < _list880.size; ++_i882) { - _elem873 = iprot.readString(); - struct.errors.add(_elem873); + _elem881 = iprot.readString(); + struct.errors.add(_elem881); } iprot.readListEnd(); } @@ -459,13 +459,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, WMValidateResourceP case 2: // WARNINGS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list875 = iprot.readListBegin(); - struct.warnings = new ArrayList(_list875.size); - String _elem876; - for (int _i877 = 0; _i877 < _list875.size; ++_i877) + org.apache.thrift.protocol.TList _list883 = iprot.readListBegin(); + struct.warnings = new ArrayList(_list883.size); + String _elem884; + for (int _i885 = 0; _i885 < _list883.size; ++_i885) { - _elem876 = iprot.readString(); - struct.warnings.add(_elem876); + _elem884 = iprot.readString(); + struct.warnings.add(_elem884); } iprot.readListEnd(); } @@ -492,9 +492,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMValidateResource oprot.writeFieldBegin(ERRORS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.errors.size())); - for (String _iter878 : struct.errors) + for (String _iter886 : struct.errors) { - oprot.writeString(_iter878); + oprot.writeString(_iter886); } oprot.writeListEnd(); } @@ -506,9 +506,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, WMValidateResource oprot.writeFieldBegin(WARNINGS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.warnings.size())); - for (String _iter879 : struct.warnings) + for (String _iter887 : struct.warnings) { - oprot.writeString(_iter879); + oprot.writeString(_iter887); } oprot.writeListEnd(); } @@ -543,18 +543,18 @@ public void write(org.apache.thrift.protocol.TProtocol prot, WMValidateResourceP if (struct.isSetErrors()) { { oprot.writeI32(struct.errors.size()); - for (String _iter880 : struct.errors) + for (String _iter888 : struct.errors) { - oprot.writeString(_iter880); + oprot.writeString(_iter888); } } } if (struct.isSetWarnings()) { { oprot.writeI32(struct.warnings.size()); - for (String _iter881 : struct.warnings) + for (String _iter889 : struct.warnings) { - oprot.writeString(_iter881); + oprot.writeString(_iter889); } } } @@ -566,26 +566,26 @@ public void read(org.apache.thrift.protocol.TProtocol prot, WMValidateResourcePl BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list882 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.errors = new ArrayList(_list882.size); - String _elem883; - for (int _i884 = 0; _i884 < _list882.size; ++_i884) + org.apache.thrift.protocol.TList _list890 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.errors = new ArrayList(_list890.size); + String _elem891; + for (int _i892 = 0; _i892 < _list890.size; ++_i892) { - _elem883 = iprot.readString(); - struct.errors.add(_elem883); + _elem891 = iprot.readString(); + struct.errors.add(_elem891); } } struct.setErrorsIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list885 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.warnings = new ArrayList(_list885.size); - String _elem886; - for (int _i887 = 0; _i887 < _list885.size; ++_i887) + org.apache.thrift.protocol.TList _list893 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.warnings = new ArrayList(_list893.size); + String _elem894; + for (int _i895 = 0; _i895 < _list893.size; ++_i895) { - _elem886 = iprot.readString(); - struct.warnings.add(_elem886); + _elem894 = iprot.readString(); + struct.warnings.add(_elem894); } } struct.setWarningsIsSet(true); diff --git a/standalone-metastore/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php b/standalone-metastore/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php index 7a8a42a800..9c949429c5 100644 --- a/standalone-metastore/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php +++ b/standalone-metastore/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php @@ -14937,14 +14937,14 @@ class ThriftHiveMetastore_get_databases_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size806 = 0; - $_etype809 = 0; - $xfer += $input->readListBegin($_etype809, $_size806); - for ($_i810 = 0; $_i810 < $_size806; ++$_i810) + $_size813 = 0; + $_etype816 = 0; + $xfer += $input->readListBegin($_etype816, $_size813); + for ($_i817 = 0; $_i817 < $_size813; ++$_i817) { - $elem811 = null; - $xfer += $input->readString($elem811); - $this->success []= $elem811; + $elem818 = null; + $xfer += $input->readString($elem818); + $this->success []= $elem818; } $xfer += $input->readListEnd(); } else { @@ -14980,9 +14980,9 @@ class ThriftHiveMetastore_get_databases_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter812) + foreach ($this->success as $iter819) { - $xfer += $output->writeString($iter812); + $xfer += $output->writeString($iter819); } } $output->writeListEnd(); @@ -15113,14 +15113,14 @@ class ThriftHiveMetastore_get_all_databases_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size813 = 0; - $_etype816 = 0; - $xfer += $input->readListBegin($_etype816, $_size813); - for ($_i817 = 0; $_i817 < $_size813; ++$_i817) + $_size820 = 0; + $_etype823 = 0; + $xfer += $input->readListBegin($_etype823, $_size820); + for ($_i824 = 0; $_i824 < $_size820; ++$_i824) { - $elem818 = null; - $xfer += $input->readString($elem818); - $this->success []= $elem818; + $elem825 = null; + $xfer += $input->readString($elem825); + $this->success []= $elem825; } $xfer += $input->readListEnd(); } else { @@ -15156,9 +15156,9 @@ class ThriftHiveMetastore_get_all_databases_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter819) + foreach ($this->success as $iter826) { - $xfer += $output->writeString($iter819); + $xfer += $output->writeString($iter826); } } $output->writeListEnd(); @@ -16159,18 +16159,18 @@ class ThriftHiveMetastore_get_type_all_result { case 0: if ($ftype == TType::MAP) { $this->success = array(); - $_size820 = 0; - $_ktype821 = 0; - $_vtype822 = 0; - $xfer += $input->readMapBegin($_ktype821, $_vtype822, $_size820); - for ($_i824 = 0; $_i824 < $_size820; ++$_i824) + $_size827 = 0; + $_ktype828 = 0; + $_vtype829 = 0; + $xfer += $input->readMapBegin($_ktype828, $_vtype829, $_size827); + for ($_i831 = 0; $_i831 < $_size827; ++$_i831) { - $key825 = ''; - $val826 = new \metastore\Type(); - $xfer += $input->readString($key825); - $val826 = new \metastore\Type(); - $xfer += $val826->read($input); - $this->success[$key825] = $val826; + $key832 = ''; + $val833 = new \metastore\Type(); + $xfer += $input->readString($key832); + $val833 = new \metastore\Type(); + $xfer += $val833->read($input); + $this->success[$key832] = $val833; } $xfer += $input->readMapEnd(); } else { @@ -16206,10 +16206,10 @@ class ThriftHiveMetastore_get_type_all_result { { $output->writeMapBegin(TType::STRING, TType::STRUCT, count($this->success)); { - foreach ($this->success as $kiter827 => $viter828) + foreach ($this->success as $kiter834 => $viter835) { - $xfer += $output->writeString($kiter827); - $xfer += $viter828->write($output); + $xfer += $output->writeString($kiter834); + $xfer += $viter835->write($output); } } $output->writeMapEnd(); @@ -16413,15 +16413,15 @@ class ThriftHiveMetastore_get_fields_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size829 = 0; - $_etype832 = 0; - $xfer += $input->readListBegin($_etype832, $_size829); - for ($_i833 = 0; $_i833 < $_size829; ++$_i833) + $_size836 = 0; + $_etype839 = 0; + $xfer += $input->readListBegin($_etype839, $_size836); + for ($_i840 = 0; $_i840 < $_size836; ++$_i840) { - $elem834 = null; - $elem834 = new \metastore\FieldSchema(); - $xfer += $elem834->read($input); - $this->success []= $elem834; + $elem841 = null; + $elem841 = new \metastore\FieldSchema(); + $xfer += $elem841->read($input); + $this->success []= $elem841; } $xfer += $input->readListEnd(); } else { @@ -16473,9 +16473,9 @@ class ThriftHiveMetastore_get_fields_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter835) + foreach ($this->success as $iter842) { - $xfer += $iter835->write($output); + $xfer += $iter842->write($output); } } $output->writeListEnd(); @@ -16717,15 +16717,15 @@ class ThriftHiveMetastore_get_fields_with_environment_context_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size836 = 0; - $_etype839 = 0; - $xfer += $input->readListBegin($_etype839, $_size836); - for ($_i840 = 0; $_i840 < $_size836; ++$_i840) + $_size843 = 0; + $_etype846 = 0; + $xfer += $input->readListBegin($_etype846, $_size843); + for ($_i847 = 0; $_i847 < $_size843; ++$_i847) { - $elem841 = null; - $elem841 = new \metastore\FieldSchema(); - $xfer += $elem841->read($input); - $this->success []= $elem841; + $elem848 = null; + $elem848 = new \metastore\FieldSchema(); + $xfer += $elem848->read($input); + $this->success []= $elem848; } $xfer += $input->readListEnd(); } else { @@ -16777,9 +16777,9 @@ class ThriftHiveMetastore_get_fields_with_environment_context_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter842) + foreach ($this->success as $iter849) { - $xfer += $iter842->write($output); + $xfer += $iter849->write($output); } } $output->writeListEnd(); @@ -16993,15 +16993,15 @@ class ThriftHiveMetastore_get_schema_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size843 = 0; - $_etype846 = 0; - $xfer += $input->readListBegin($_etype846, $_size843); - for ($_i847 = 0; $_i847 < $_size843; ++$_i847) + $_size850 = 0; + $_etype853 = 0; + $xfer += $input->readListBegin($_etype853, $_size850); + for ($_i854 = 0; $_i854 < $_size850; ++$_i854) { - $elem848 = null; - $elem848 = new \metastore\FieldSchema(); - $xfer += $elem848->read($input); - $this->success []= $elem848; + $elem855 = null; + $elem855 = new \metastore\FieldSchema(); + $xfer += $elem855->read($input); + $this->success []= $elem855; } $xfer += $input->readListEnd(); } else { @@ -17053,9 +17053,9 @@ class ThriftHiveMetastore_get_schema_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter849) + foreach ($this->success as $iter856) { - $xfer += $iter849->write($output); + $xfer += $iter856->write($output); } } $output->writeListEnd(); @@ -17297,15 +17297,15 @@ class ThriftHiveMetastore_get_schema_with_environment_context_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size850 = 0; - $_etype853 = 0; - $xfer += $input->readListBegin($_etype853, $_size850); - for ($_i854 = 0; $_i854 < $_size850; ++$_i854) + $_size857 = 0; + $_etype860 = 0; + $xfer += $input->readListBegin($_etype860, $_size857); + for ($_i861 = 0; $_i861 < $_size857; ++$_i861) { - $elem855 = null; - $elem855 = new \metastore\FieldSchema(); - $xfer += $elem855->read($input); - $this->success []= $elem855; + $elem862 = null; + $elem862 = new \metastore\FieldSchema(); + $xfer += $elem862->read($input); + $this->success []= $elem862; } $xfer += $input->readListEnd(); } else { @@ -17357,9 +17357,9 @@ class ThriftHiveMetastore_get_schema_with_environment_context_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter856) + foreach ($this->success as $iter863) { - $xfer += $iter856->write($output); + $xfer += $iter863->write($output); } } $output->writeListEnd(); @@ -18031,15 +18031,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 2: if ($ftype == TType::LST) { $this->primaryKeys = array(); - $_size857 = 0; - $_etype860 = 0; - $xfer += $input->readListBegin($_etype860, $_size857); - for ($_i861 = 0; $_i861 < $_size857; ++$_i861) + $_size864 = 0; + $_etype867 = 0; + $xfer += $input->readListBegin($_etype867, $_size864); + for ($_i868 = 0; $_i868 < $_size864; ++$_i868) { - $elem862 = null; - $elem862 = new \metastore\SQLPrimaryKey(); - $xfer += $elem862->read($input); - $this->primaryKeys []= $elem862; + $elem869 = null; + $elem869 = new \metastore\SQLPrimaryKey(); + $xfer += $elem869->read($input); + $this->primaryKeys []= $elem869; } $xfer += $input->readListEnd(); } else { @@ -18049,15 +18049,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 3: if ($ftype == TType::LST) { $this->foreignKeys = array(); - $_size863 = 0; - $_etype866 = 0; - $xfer += $input->readListBegin($_etype866, $_size863); - for ($_i867 = 0; $_i867 < $_size863; ++$_i867) + $_size870 = 0; + $_etype873 = 0; + $xfer += $input->readListBegin($_etype873, $_size870); + for ($_i874 = 0; $_i874 < $_size870; ++$_i874) { - $elem868 = null; - $elem868 = new \metastore\SQLForeignKey(); - $xfer += $elem868->read($input); - $this->foreignKeys []= $elem868; + $elem875 = null; + $elem875 = new \metastore\SQLForeignKey(); + $xfer += $elem875->read($input); + $this->foreignKeys []= $elem875; } $xfer += $input->readListEnd(); } else { @@ -18067,15 +18067,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 4: if ($ftype == TType::LST) { $this->uniqueConstraints = array(); - $_size869 = 0; - $_etype872 = 0; - $xfer += $input->readListBegin($_etype872, $_size869); - for ($_i873 = 0; $_i873 < $_size869; ++$_i873) + $_size876 = 0; + $_etype879 = 0; + $xfer += $input->readListBegin($_etype879, $_size876); + for ($_i880 = 0; $_i880 < $_size876; ++$_i880) { - $elem874 = null; - $elem874 = new \metastore\SQLUniqueConstraint(); - $xfer += $elem874->read($input); - $this->uniqueConstraints []= $elem874; + $elem881 = null; + $elem881 = new \metastore\SQLUniqueConstraint(); + $xfer += $elem881->read($input); + $this->uniqueConstraints []= $elem881; } $xfer += $input->readListEnd(); } else { @@ -18085,15 +18085,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 5: if ($ftype == TType::LST) { $this->notNullConstraints = array(); - $_size875 = 0; - $_etype878 = 0; - $xfer += $input->readListBegin($_etype878, $_size875); - for ($_i879 = 0; $_i879 < $_size875; ++$_i879) + $_size882 = 0; + $_etype885 = 0; + $xfer += $input->readListBegin($_etype885, $_size882); + for ($_i886 = 0; $_i886 < $_size882; ++$_i886) { - $elem880 = null; - $elem880 = new \metastore\SQLNotNullConstraint(); - $xfer += $elem880->read($input); - $this->notNullConstraints []= $elem880; + $elem887 = null; + $elem887 = new \metastore\SQLNotNullConstraint(); + $xfer += $elem887->read($input); + $this->notNullConstraints []= $elem887; } $xfer += $input->readListEnd(); } else { @@ -18103,15 +18103,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 6: if ($ftype == TType::LST) { $this->defaultConstraints = array(); - $_size881 = 0; - $_etype884 = 0; - $xfer += $input->readListBegin($_etype884, $_size881); - for ($_i885 = 0; $_i885 < $_size881; ++$_i885) + $_size888 = 0; + $_etype891 = 0; + $xfer += $input->readListBegin($_etype891, $_size888); + for ($_i892 = 0; $_i892 < $_size888; ++$_i892) { - $elem886 = null; - $elem886 = new \metastore\SQLDefaultConstraint(); - $xfer += $elem886->read($input); - $this->defaultConstraints []= $elem886; + $elem893 = null; + $elem893 = new \metastore\SQLDefaultConstraint(); + $xfer += $elem893->read($input); + $this->defaultConstraints []= $elem893; } $xfer += $input->readListEnd(); } else { @@ -18121,15 +18121,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 7: if ($ftype == TType::LST) { $this->checkConstraints = array(); - $_size887 = 0; - $_etype890 = 0; - $xfer += $input->readListBegin($_etype890, $_size887); - for ($_i891 = 0; $_i891 < $_size887; ++$_i891) + $_size894 = 0; + $_etype897 = 0; + $xfer += $input->readListBegin($_etype897, $_size894); + for ($_i898 = 0; $_i898 < $_size894; ++$_i898) { - $elem892 = null; - $elem892 = new \metastore\SQLCheckConstraint(); - $xfer += $elem892->read($input); - $this->checkConstraints []= $elem892; + $elem899 = null; + $elem899 = new \metastore\SQLCheckConstraint(); + $xfer += $elem899->read($input); + $this->checkConstraints []= $elem899; } $xfer += $input->readListEnd(); } else { @@ -18165,9 +18165,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->primaryKeys)); { - foreach ($this->primaryKeys as $iter893) + foreach ($this->primaryKeys as $iter900) { - $xfer += $iter893->write($output); + $xfer += $iter900->write($output); } } $output->writeListEnd(); @@ -18182,9 +18182,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->foreignKeys)); { - foreach ($this->foreignKeys as $iter894) + foreach ($this->foreignKeys as $iter901) { - $xfer += $iter894->write($output); + $xfer += $iter901->write($output); } } $output->writeListEnd(); @@ -18199,9 +18199,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->uniqueConstraints)); { - foreach ($this->uniqueConstraints as $iter895) + foreach ($this->uniqueConstraints as $iter902) { - $xfer += $iter895->write($output); + $xfer += $iter902->write($output); } } $output->writeListEnd(); @@ -18216,9 +18216,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->notNullConstraints)); { - foreach ($this->notNullConstraints as $iter896) + foreach ($this->notNullConstraints as $iter903) { - $xfer += $iter896->write($output); + $xfer += $iter903->write($output); } } $output->writeListEnd(); @@ -18233,9 +18233,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->defaultConstraints)); { - foreach ($this->defaultConstraints as $iter897) + foreach ($this->defaultConstraints as $iter904) { - $xfer += $iter897->write($output); + $xfer += $iter904->write($output); } } $output->writeListEnd(); @@ -18250,9 +18250,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->checkConstraints)); { - foreach ($this->checkConstraints as $iter898) + foreach ($this->checkConstraints as $iter905) { - $xfer += $iter898->write($output); + $xfer += $iter905->write($output); } } $output->writeListEnd(); @@ -20252,14 +20252,14 @@ class ThriftHiveMetastore_truncate_table_args { case 3: if ($ftype == TType::LST) { $this->partNames = array(); - $_size899 = 0; - $_etype902 = 0; - $xfer += $input->readListBegin($_etype902, $_size899); - for ($_i903 = 0; $_i903 < $_size899; ++$_i903) + $_size906 = 0; + $_etype909 = 0; + $xfer += $input->readListBegin($_etype909, $_size906); + for ($_i910 = 0; $_i910 < $_size906; ++$_i910) { - $elem904 = null; - $xfer += $input->readString($elem904); - $this->partNames []= $elem904; + $elem911 = null; + $xfer += $input->readString($elem911); + $this->partNames []= $elem911; } $xfer += $input->readListEnd(); } else { @@ -20297,9 +20297,9 @@ class ThriftHiveMetastore_truncate_table_args { { $output->writeListBegin(TType::STRING, count($this->partNames)); { - foreach ($this->partNames as $iter905) + foreach ($this->partNames as $iter912) { - $xfer += $output->writeString($iter905); + $xfer += $output->writeString($iter912); } } $output->writeListEnd(); @@ -20550,14 +20550,14 @@ class ThriftHiveMetastore_get_tables_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size906 = 0; - $_etype909 = 0; - $xfer += $input->readListBegin($_etype909, $_size906); - for ($_i910 = 0; $_i910 < $_size906; ++$_i910) + $_size913 = 0; + $_etype916 = 0; + $xfer += $input->readListBegin($_etype916, $_size913); + for ($_i917 = 0; $_i917 < $_size913; ++$_i917) { - $elem911 = null; - $xfer += $input->readString($elem911); - $this->success []= $elem911; + $elem918 = null; + $xfer += $input->readString($elem918); + $this->success []= $elem918; } $xfer += $input->readListEnd(); } else { @@ -20593,9 +20593,9 @@ class ThriftHiveMetastore_get_tables_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter912) + foreach ($this->success as $iter919) { - $xfer += $output->writeString($iter912); + $xfer += $output->writeString($iter919); } } $output->writeListEnd(); @@ -20797,14 +20797,14 @@ class ThriftHiveMetastore_get_tables_by_type_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size913 = 0; - $_etype916 = 0; - $xfer += $input->readListBegin($_etype916, $_size913); - for ($_i917 = 0; $_i917 < $_size913; ++$_i917) + $_size920 = 0; + $_etype923 = 0; + $xfer += $input->readListBegin($_etype923, $_size920); + for ($_i924 = 0; $_i924 < $_size920; ++$_i924) { - $elem918 = null; - $xfer += $input->readString($elem918); - $this->success []= $elem918; + $elem925 = null; + $xfer += $input->readString($elem925); + $this->success []= $elem925; } $xfer += $input->readListEnd(); } else { @@ -20840,9 +20840,9 @@ class ThriftHiveMetastore_get_tables_by_type_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter919) + foreach ($this->success as $iter926) { - $xfer += $output->writeString($iter919); + $xfer += $output->writeString($iter926); } } $output->writeListEnd(); @@ -20998,14 +20998,14 @@ class ThriftHiveMetastore_get_materialized_views_for_rewriting_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size920 = 0; - $_etype923 = 0; - $xfer += $input->readListBegin($_etype923, $_size920); - for ($_i924 = 0; $_i924 < $_size920; ++$_i924) + $_size927 = 0; + $_etype930 = 0; + $xfer += $input->readListBegin($_etype930, $_size927); + for ($_i931 = 0; $_i931 < $_size927; ++$_i931) { - $elem925 = null; - $xfer += $input->readString($elem925); - $this->success []= $elem925; + $elem932 = null; + $xfer += $input->readString($elem932); + $this->success []= $elem932; } $xfer += $input->readListEnd(); } else { @@ -21041,9 +21041,9 @@ class ThriftHiveMetastore_get_materialized_views_for_rewriting_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter926) + foreach ($this->success as $iter933) { - $xfer += $output->writeString($iter926); + $xfer += $output->writeString($iter933); } } $output->writeListEnd(); @@ -21148,14 +21148,14 @@ class ThriftHiveMetastore_get_table_meta_args { case 3: if ($ftype == TType::LST) { $this->tbl_types = array(); - $_size927 = 0; - $_etype930 = 0; - $xfer += $input->readListBegin($_etype930, $_size927); - for ($_i931 = 0; $_i931 < $_size927; ++$_i931) + $_size934 = 0; + $_etype937 = 0; + $xfer += $input->readListBegin($_etype937, $_size934); + for ($_i938 = 0; $_i938 < $_size934; ++$_i938) { - $elem932 = null; - $xfer += $input->readString($elem932); - $this->tbl_types []= $elem932; + $elem939 = null; + $xfer += $input->readString($elem939); + $this->tbl_types []= $elem939; } $xfer += $input->readListEnd(); } else { @@ -21193,9 +21193,9 @@ class ThriftHiveMetastore_get_table_meta_args { { $output->writeListBegin(TType::STRING, count($this->tbl_types)); { - foreach ($this->tbl_types as $iter933) + foreach ($this->tbl_types as $iter940) { - $xfer += $output->writeString($iter933); + $xfer += $output->writeString($iter940); } } $output->writeListEnd(); @@ -21272,15 +21272,15 @@ class ThriftHiveMetastore_get_table_meta_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size934 = 0; - $_etype937 = 0; - $xfer += $input->readListBegin($_etype937, $_size934); - for ($_i938 = 0; $_i938 < $_size934; ++$_i938) + $_size941 = 0; + $_etype944 = 0; + $xfer += $input->readListBegin($_etype944, $_size941); + for ($_i945 = 0; $_i945 < $_size941; ++$_i945) { - $elem939 = null; - $elem939 = new \metastore\TableMeta(); - $xfer += $elem939->read($input); - $this->success []= $elem939; + $elem946 = null; + $elem946 = new \metastore\TableMeta(); + $xfer += $elem946->read($input); + $this->success []= $elem946; } $xfer += $input->readListEnd(); } else { @@ -21316,9 +21316,9 @@ class ThriftHiveMetastore_get_table_meta_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter940) + foreach ($this->success as $iter947) { - $xfer += $iter940->write($output); + $xfer += $iter947->write($output); } } $output->writeListEnd(); @@ -21474,14 +21474,14 @@ class ThriftHiveMetastore_get_all_tables_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size941 = 0; - $_etype944 = 0; - $xfer += $input->readListBegin($_etype944, $_size941); - for ($_i945 = 0; $_i945 < $_size941; ++$_i945) + $_size948 = 0; + $_etype951 = 0; + $xfer += $input->readListBegin($_etype951, $_size948); + for ($_i952 = 0; $_i952 < $_size948; ++$_i952) { - $elem946 = null; - $xfer += $input->readString($elem946); - $this->success []= $elem946; + $elem953 = null; + $xfer += $input->readString($elem953); + $this->success []= $elem953; } $xfer += $input->readListEnd(); } else { @@ -21517,9 +21517,9 @@ class ThriftHiveMetastore_get_all_tables_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter947) + foreach ($this->success as $iter954) { - $xfer += $output->writeString($iter947); + $xfer += $output->writeString($iter954); } } $output->writeListEnd(); @@ -21834,14 +21834,14 @@ class ThriftHiveMetastore_get_table_objects_by_name_args { case 2: if ($ftype == TType::LST) { $this->tbl_names = array(); - $_size948 = 0; - $_etype951 = 0; - $xfer += $input->readListBegin($_etype951, $_size948); - for ($_i952 = 0; $_i952 < $_size948; ++$_i952) + $_size955 = 0; + $_etype958 = 0; + $xfer += $input->readListBegin($_etype958, $_size955); + for ($_i959 = 0; $_i959 < $_size955; ++$_i959) { - $elem953 = null; - $xfer += $input->readString($elem953); - $this->tbl_names []= $elem953; + $elem960 = null; + $xfer += $input->readString($elem960); + $this->tbl_names []= $elem960; } $xfer += $input->readListEnd(); } else { @@ -21874,9 +21874,9 @@ class ThriftHiveMetastore_get_table_objects_by_name_args { { $output->writeListBegin(TType::STRING, count($this->tbl_names)); { - foreach ($this->tbl_names as $iter954) + foreach ($this->tbl_names as $iter961) { - $xfer += $output->writeString($iter954); + $xfer += $output->writeString($iter961); } } $output->writeListEnd(); @@ -21941,15 +21941,15 @@ class ThriftHiveMetastore_get_table_objects_by_name_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size955 = 0; - $_etype958 = 0; - $xfer += $input->readListBegin($_etype958, $_size955); - for ($_i959 = 0; $_i959 < $_size955; ++$_i959) + $_size962 = 0; + $_etype965 = 0; + $xfer += $input->readListBegin($_etype965, $_size962); + for ($_i966 = 0; $_i966 < $_size962; ++$_i966) { - $elem960 = null; - $elem960 = new \metastore\Table(); - $xfer += $elem960->read($input); - $this->success []= $elem960; + $elem967 = null; + $elem967 = new \metastore\Table(); + $xfer += $elem967->read($input); + $this->success []= $elem967; } $xfer += $input->readListEnd(); } else { @@ -21977,9 +21977,9 @@ class ThriftHiveMetastore_get_table_objects_by_name_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter961) + foreach ($this->success as $iter968) { - $xfer += $iter961->write($output); + $xfer += $iter968->write($output); } } $output->writeListEnd(); @@ -22506,14 +22506,14 @@ class ThriftHiveMetastore_get_materialization_invalidation_info_args { case 2: if ($ftype == TType::LST) { $this->tbl_names = array(); - $_size962 = 0; - $_etype965 = 0; - $xfer += $input->readListBegin($_etype965, $_size962); - for ($_i966 = 0; $_i966 < $_size962; ++$_i966) + $_size969 = 0; + $_etype972 = 0; + $xfer += $input->readListBegin($_etype972, $_size969); + for ($_i973 = 0; $_i973 < $_size969; ++$_i973) { - $elem967 = null; - $xfer += $input->readString($elem967); - $this->tbl_names []= $elem967; + $elem974 = null; + $xfer += $input->readString($elem974); + $this->tbl_names []= $elem974; } $xfer += $input->readListEnd(); } else { @@ -22546,9 +22546,9 @@ class ThriftHiveMetastore_get_materialization_invalidation_info_args { { $output->writeListBegin(TType::STRING, count($this->tbl_names)); { - foreach ($this->tbl_names as $iter968) + foreach ($this->tbl_names as $iter975) { - $xfer += $output->writeString($iter968); + $xfer += $output->writeString($iter975); } } $output->writeListEnd(); @@ -22653,18 +22653,18 @@ class ThriftHiveMetastore_get_materialization_invalidation_info_result { case 0: if ($ftype == TType::MAP) { $this->success = array(); - $_size969 = 0; - $_ktype970 = 0; - $_vtype971 = 0; - $xfer += $input->readMapBegin($_ktype970, $_vtype971, $_size969); - for ($_i973 = 0; $_i973 < $_size969; ++$_i973) + $_size976 = 0; + $_ktype977 = 0; + $_vtype978 = 0; + $xfer += $input->readMapBegin($_ktype977, $_vtype978, $_size976); + for ($_i980 = 0; $_i980 < $_size976; ++$_i980) { - $key974 = ''; - $val975 = new \metastore\Materialization(); - $xfer += $input->readString($key974); - $val975 = new \metastore\Materialization(); - $xfer += $val975->read($input); - $this->success[$key974] = $val975; + $key981 = ''; + $val982 = new \metastore\Materialization(); + $xfer += $input->readString($key981); + $val982 = new \metastore\Materialization(); + $xfer += $val982->read($input); + $this->success[$key981] = $val982; } $xfer += $input->readMapEnd(); } else { @@ -22716,10 +22716,10 @@ class ThriftHiveMetastore_get_materialization_invalidation_info_result { { $output->writeMapBegin(TType::STRING, TType::STRUCT, count($this->success)); { - foreach ($this->success as $kiter976 => $viter977) + foreach ($this->success as $kiter983 => $viter984) { - $xfer += $output->writeString($kiter976); - $xfer += $viter977->write($output); + $xfer += $output->writeString($kiter983); + $xfer += $viter984->write($output); } } $output->writeMapEnd(); @@ -23231,14 +23231,14 @@ class ThriftHiveMetastore_get_table_names_by_filter_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size978 = 0; - $_etype981 = 0; - $xfer += $input->readListBegin($_etype981, $_size978); - for ($_i982 = 0; $_i982 < $_size978; ++$_i982) + $_size985 = 0; + $_etype988 = 0; + $xfer += $input->readListBegin($_etype988, $_size985); + for ($_i989 = 0; $_i989 < $_size985; ++$_i989) { - $elem983 = null; - $xfer += $input->readString($elem983); - $this->success []= $elem983; + $elem990 = null; + $xfer += $input->readString($elem990); + $this->success []= $elem990; } $xfer += $input->readListEnd(); } else { @@ -23290,9 +23290,9 @@ class ThriftHiveMetastore_get_table_names_by_filter_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter984) + foreach ($this->success as $iter991) { - $xfer += $output->writeString($iter984); + $xfer += $output->writeString($iter991); } } $output->writeListEnd(); @@ -24605,15 +24605,15 @@ class ThriftHiveMetastore_add_partitions_args { case 1: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size985 = 0; - $_etype988 = 0; - $xfer += $input->readListBegin($_etype988, $_size985); - for ($_i989 = 0; $_i989 < $_size985; ++$_i989) + $_size992 = 0; + $_etype995 = 0; + $xfer += $input->readListBegin($_etype995, $_size992); + for ($_i996 = 0; $_i996 < $_size992; ++$_i996) { - $elem990 = null; - $elem990 = new \metastore\Partition(); - $xfer += $elem990->read($input); - $this->new_parts []= $elem990; + $elem997 = null; + $elem997 = new \metastore\Partition(); + $xfer += $elem997->read($input); + $this->new_parts []= $elem997; } $xfer += $input->readListEnd(); } else { @@ -24641,9 +24641,9 @@ class ThriftHiveMetastore_add_partitions_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter991) + foreach ($this->new_parts as $iter998) { - $xfer += $iter991->write($output); + $xfer += $iter998->write($output); } } $output->writeListEnd(); @@ -24858,15 +24858,15 @@ class ThriftHiveMetastore_add_partitions_pspec_args { case 1: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size992 = 0; - $_etype995 = 0; - $xfer += $input->readListBegin($_etype995, $_size992); - for ($_i996 = 0; $_i996 < $_size992; ++$_i996) + $_size999 = 0; + $_etype1002 = 0; + $xfer += $input->readListBegin($_etype1002, $_size999); + for ($_i1003 = 0; $_i1003 < $_size999; ++$_i1003) { - $elem997 = null; - $elem997 = new \metastore\PartitionSpec(); - $xfer += $elem997->read($input); - $this->new_parts []= $elem997; + $elem1004 = null; + $elem1004 = new \metastore\PartitionSpec(); + $xfer += $elem1004->read($input); + $this->new_parts []= $elem1004; } $xfer += $input->readListEnd(); } else { @@ -24894,9 +24894,9 @@ class ThriftHiveMetastore_add_partitions_pspec_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter998) + foreach ($this->new_parts as $iter1005) { - $xfer += $iter998->write($output); + $xfer += $iter1005->write($output); } } $output->writeListEnd(); @@ -25146,14 +25146,14 @@ class ThriftHiveMetastore_append_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size999 = 0; - $_etype1002 = 0; - $xfer += $input->readListBegin($_etype1002, $_size999); - for ($_i1003 = 0; $_i1003 < $_size999; ++$_i1003) + $_size1006 = 0; + $_etype1009 = 0; + $xfer += $input->readListBegin($_etype1009, $_size1006); + for ($_i1010 = 0; $_i1010 < $_size1006; ++$_i1010) { - $elem1004 = null; - $xfer += $input->readString($elem1004); - $this->part_vals []= $elem1004; + $elem1011 = null; + $xfer += $input->readString($elem1011); + $this->part_vals []= $elem1011; } $xfer += $input->readListEnd(); } else { @@ -25191,9 +25191,9 @@ class ThriftHiveMetastore_append_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1005) + foreach ($this->part_vals as $iter1012) { - $xfer += $output->writeString($iter1005); + $xfer += $output->writeString($iter1012); } } $output->writeListEnd(); @@ -25695,14 +25695,14 @@ class ThriftHiveMetastore_append_partition_with_environment_context_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1006 = 0; - $_etype1009 = 0; - $xfer += $input->readListBegin($_etype1009, $_size1006); - for ($_i1010 = 0; $_i1010 < $_size1006; ++$_i1010) + $_size1013 = 0; + $_etype1016 = 0; + $xfer += $input->readListBegin($_etype1016, $_size1013); + for ($_i1017 = 0; $_i1017 < $_size1013; ++$_i1017) { - $elem1011 = null; - $xfer += $input->readString($elem1011); - $this->part_vals []= $elem1011; + $elem1018 = null; + $xfer += $input->readString($elem1018); + $this->part_vals []= $elem1018; } $xfer += $input->readListEnd(); } else { @@ -25748,9 +25748,9 @@ class ThriftHiveMetastore_append_partition_with_environment_context_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1012) + foreach ($this->part_vals as $iter1019) { - $xfer += $output->writeString($iter1012); + $xfer += $output->writeString($iter1019); } } $output->writeListEnd(); @@ -26604,14 +26604,14 @@ class ThriftHiveMetastore_drop_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1013 = 0; - $_etype1016 = 0; - $xfer += $input->readListBegin($_etype1016, $_size1013); - for ($_i1017 = 0; $_i1017 < $_size1013; ++$_i1017) + $_size1020 = 0; + $_etype1023 = 0; + $xfer += $input->readListBegin($_etype1023, $_size1020); + for ($_i1024 = 0; $_i1024 < $_size1020; ++$_i1024) { - $elem1018 = null; - $xfer += $input->readString($elem1018); - $this->part_vals []= $elem1018; + $elem1025 = null; + $xfer += $input->readString($elem1025); + $this->part_vals []= $elem1025; } $xfer += $input->readListEnd(); } else { @@ -26656,9 +26656,9 @@ class ThriftHiveMetastore_drop_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1019) + foreach ($this->part_vals as $iter1026) { - $xfer += $output->writeString($iter1019); + $xfer += $output->writeString($iter1026); } } $output->writeListEnd(); @@ -26911,14 +26911,14 @@ class ThriftHiveMetastore_drop_partition_with_environment_context_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1020 = 0; - $_etype1023 = 0; - $xfer += $input->readListBegin($_etype1023, $_size1020); - for ($_i1024 = 0; $_i1024 < $_size1020; ++$_i1024) + $_size1027 = 0; + $_etype1030 = 0; + $xfer += $input->readListBegin($_etype1030, $_size1027); + for ($_i1031 = 0; $_i1031 < $_size1027; ++$_i1031) { - $elem1025 = null; - $xfer += $input->readString($elem1025); - $this->part_vals []= $elem1025; + $elem1032 = null; + $xfer += $input->readString($elem1032); + $this->part_vals []= $elem1032; } $xfer += $input->readListEnd(); } else { @@ -26971,9 +26971,9 @@ class ThriftHiveMetastore_drop_partition_with_environment_context_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1026) + foreach ($this->part_vals as $iter1033) { - $xfer += $output->writeString($iter1026); + $xfer += $output->writeString($iter1033); } } $output->writeListEnd(); @@ -27987,14 +27987,14 @@ class ThriftHiveMetastore_get_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1027 = 0; - $_etype1030 = 0; - $xfer += $input->readListBegin($_etype1030, $_size1027); - for ($_i1031 = 0; $_i1031 < $_size1027; ++$_i1031) + $_size1034 = 0; + $_etype1037 = 0; + $xfer += $input->readListBegin($_etype1037, $_size1034); + for ($_i1038 = 0; $_i1038 < $_size1034; ++$_i1038) { - $elem1032 = null; - $xfer += $input->readString($elem1032); - $this->part_vals []= $elem1032; + $elem1039 = null; + $xfer += $input->readString($elem1039); + $this->part_vals []= $elem1039; } $xfer += $input->readListEnd(); } else { @@ -28032,9 +28032,9 @@ class ThriftHiveMetastore_get_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1033) + foreach ($this->part_vals as $iter1040) { - $xfer += $output->writeString($iter1033); + $xfer += $output->writeString($iter1040); } } $output->writeListEnd(); @@ -28276,17 +28276,17 @@ class ThriftHiveMetastore_exchange_partition_args { case 1: if ($ftype == TType::MAP) { $this->partitionSpecs = array(); - $_size1034 = 0; - $_ktype1035 = 0; - $_vtype1036 = 0; - $xfer += $input->readMapBegin($_ktype1035, $_vtype1036, $_size1034); - for ($_i1038 = 0; $_i1038 < $_size1034; ++$_i1038) + $_size1041 = 0; + $_ktype1042 = 0; + $_vtype1043 = 0; + $xfer += $input->readMapBegin($_ktype1042, $_vtype1043, $_size1041); + for ($_i1045 = 0; $_i1045 < $_size1041; ++$_i1045) { - $key1039 = ''; - $val1040 = ''; - $xfer += $input->readString($key1039); - $xfer += $input->readString($val1040); - $this->partitionSpecs[$key1039] = $val1040; + $key1046 = ''; + $val1047 = ''; + $xfer += $input->readString($key1046); + $xfer += $input->readString($val1047); + $this->partitionSpecs[$key1046] = $val1047; } $xfer += $input->readMapEnd(); } else { @@ -28342,10 +28342,10 @@ class ThriftHiveMetastore_exchange_partition_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->partitionSpecs)); { - foreach ($this->partitionSpecs as $kiter1041 => $viter1042) + foreach ($this->partitionSpecs as $kiter1048 => $viter1049) { - $xfer += $output->writeString($kiter1041); - $xfer += $output->writeString($viter1042); + $xfer += $output->writeString($kiter1048); + $xfer += $output->writeString($viter1049); } } $output->writeMapEnd(); @@ -28657,17 +28657,17 @@ class ThriftHiveMetastore_exchange_partitions_args { case 1: if ($ftype == TType::MAP) { $this->partitionSpecs = array(); - $_size1043 = 0; - $_ktype1044 = 0; - $_vtype1045 = 0; - $xfer += $input->readMapBegin($_ktype1044, $_vtype1045, $_size1043); - for ($_i1047 = 0; $_i1047 < $_size1043; ++$_i1047) + $_size1050 = 0; + $_ktype1051 = 0; + $_vtype1052 = 0; + $xfer += $input->readMapBegin($_ktype1051, $_vtype1052, $_size1050); + for ($_i1054 = 0; $_i1054 < $_size1050; ++$_i1054) { - $key1048 = ''; - $val1049 = ''; - $xfer += $input->readString($key1048); - $xfer += $input->readString($val1049); - $this->partitionSpecs[$key1048] = $val1049; + $key1055 = ''; + $val1056 = ''; + $xfer += $input->readString($key1055); + $xfer += $input->readString($val1056); + $this->partitionSpecs[$key1055] = $val1056; } $xfer += $input->readMapEnd(); } else { @@ -28723,10 +28723,10 @@ class ThriftHiveMetastore_exchange_partitions_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->partitionSpecs)); { - foreach ($this->partitionSpecs as $kiter1050 => $viter1051) + foreach ($this->partitionSpecs as $kiter1057 => $viter1058) { - $xfer += $output->writeString($kiter1050); - $xfer += $output->writeString($viter1051); + $xfer += $output->writeString($kiter1057); + $xfer += $output->writeString($viter1058); } } $output->writeMapEnd(); @@ -28859,15 +28859,15 @@ class ThriftHiveMetastore_exchange_partitions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1052 = 0; - $_etype1055 = 0; - $xfer += $input->readListBegin($_etype1055, $_size1052); - for ($_i1056 = 0; $_i1056 < $_size1052; ++$_i1056) + $_size1059 = 0; + $_etype1062 = 0; + $xfer += $input->readListBegin($_etype1062, $_size1059); + for ($_i1063 = 0; $_i1063 < $_size1059; ++$_i1063) { - $elem1057 = null; - $elem1057 = new \metastore\Partition(); - $xfer += $elem1057->read($input); - $this->success []= $elem1057; + $elem1064 = null; + $elem1064 = new \metastore\Partition(); + $xfer += $elem1064->read($input); + $this->success []= $elem1064; } $xfer += $input->readListEnd(); } else { @@ -28927,9 +28927,9 @@ class ThriftHiveMetastore_exchange_partitions_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1058) + foreach ($this->success as $iter1065) { - $xfer += $iter1058->write($output); + $xfer += $iter1065->write($output); } } $output->writeListEnd(); @@ -29075,14 +29075,14 @@ class ThriftHiveMetastore_get_partition_with_auth_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1059 = 0; - $_etype1062 = 0; - $xfer += $input->readListBegin($_etype1062, $_size1059); - for ($_i1063 = 0; $_i1063 < $_size1059; ++$_i1063) + $_size1066 = 0; + $_etype1069 = 0; + $xfer += $input->readListBegin($_etype1069, $_size1066); + for ($_i1070 = 0; $_i1070 < $_size1066; ++$_i1070) { - $elem1064 = null; - $xfer += $input->readString($elem1064); - $this->part_vals []= $elem1064; + $elem1071 = null; + $xfer += $input->readString($elem1071); + $this->part_vals []= $elem1071; } $xfer += $input->readListEnd(); } else { @@ -29099,14 +29099,14 @@ class ThriftHiveMetastore_get_partition_with_auth_args { case 5: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1065 = 0; - $_etype1068 = 0; - $xfer += $input->readListBegin($_etype1068, $_size1065); - for ($_i1069 = 0; $_i1069 < $_size1065; ++$_i1069) + $_size1072 = 0; + $_etype1075 = 0; + $xfer += $input->readListBegin($_etype1075, $_size1072); + for ($_i1076 = 0; $_i1076 < $_size1072; ++$_i1076) { - $elem1070 = null; - $xfer += $input->readString($elem1070); - $this->group_names []= $elem1070; + $elem1077 = null; + $xfer += $input->readString($elem1077); + $this->group_names []= $elem1077; } $xfer += $input->readListEnd(); } else { @@ -29144,9 +29144,9 @@ class ThriftHiveMetastore_get_partition_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1071) + foreach ($this->part_vals as $iter1078) { - $xfer += $output->writeString($iter1071); + $xfer += $output->writeString($iter1078); } } $output->writeListEnd(); @@ -29166,9 +29166,9 @@ class ThriftHiveMetastore_get_partition_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1072) + foreach ($this->group_names as $iter1079) { - $xfer += $output->writeString($iter1072); + $xfer += $output->writeString($iter1079); } } $output->writeListEnd(); @@ -29759,15 +29759,15 @@ class ThriftHiveMetastore_get_partitions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1073 = 0; - $_etype1076 = 0; - $xfer += $input->readListBegin($_etype1076, $_size1073); - for ($_i1077 = 0; $_i1077 < $_size1073; ++$_i1077) + $_size1080 = 0; + $_etype1083 = 0; + $xfer += $input->readListBegin($_etype1083, $_size1080); + for ($_i1084 = 0; $_i1084 < $_size1080; ++$_i1084) { - $elem1078 = null; - $elem1078 = new \metastore\Partition(); - $xfer += $elem1078->read($input); - $this->success []= $elem1078; + $elem1085 = null; + $elem1085 = new \metastore\Partition(); + $xfer += $elem1085->read($input); + $this->success []= $elem1085; } $xfer += $input->readListEnd(); } else { @@ -29811,9 +29811,9 @@ class ThriftHiveMetastore_get_partitions_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1079) + foreach ($this->success as $iter1086) { - $xfer += $iter1079->write($output); + $xfer += $iter1086->write($output); } } $output->writeListEnd(); @@ -29959,14 +29959,14 @@ class ThriftHiveMetastore_get_partitions_with_auth_args { case 5: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1080 = 0; - $_etype1083 = 0; - $xfer += $input->readListBegin($_etype1083, $_size1080); - for ($_i1084 = 0; $_i1084 < $_size1080; ++$_i1084) + $_size1087 = 0; + $_etype1090 = 0; + $xfer += $input->readListBegin($_etype1090, $_size1087); + for ($_i1091 = 0; $_i1091 < $_size1087; ++$_i1091) { - $elem1085 = null; - $xfer += $input->readString($elem1085); - $this->group_names []= $elem1085; + $elem1092 = null; + $xfer += $input->readString($elem1092); + $this->group_names []= $elem1092; } $xfer += $input->readListEnd(); } else { @@ -30014,9 +30014,9 @@ class ThriftHiveMetastore_get_partitions_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1086) + foreach ($this->group_names as $iter1093) { - $xfer += $output->writeString($iter1086); + $xfer += $output->writeString($iter1093); } } $output->writeListEnd(); @@ -30105,15 +30105,15 @@ class ThriftHiveMetastore_get_partitions_with_auth_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1087 = 0; - $_etype1090 = 0; - $xfer += $input->readListBegin($_etype1090, $_size1087); - for ($_i1091 = 0; $_i1091 < $_size1087; ++$_i1091) + $_size1094 = 0; + $_etype1097 = 0; + $xfer += $input->readListBegin($_etype1097, $_size1094); + for ($_i1098 = 0; $_i1098 < $_size1094; ++$_i1098) { - $elem1092 = null; - $elem1092 = new \metastore\Partition(); - $xfer += $elem1092->read($input); - $this->success []= $elem1092; + $elem1099 = null; + $elem1099 = new \metastore\Partition(); + $xfer += $elem1099->read($input); + $this->success []= $elem1099; } $xfer += $input->readListEnd(); } else { @@ -30157,9 +30157,9 @@ class ThriftHiveMetastore_get_partitions_with_auth_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1093) + foreach ($this->success as $iter1100) { - $xfer += $iter1093->write($output); + $xfer += $iter1100->write($output); } } $output->writeListEnd(); @@ -30379,15 +30379,15 @@ class ThriftHiveMetastore_get_partitions_pspec_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1094 = 0; - $_etype1097 = 0; - $xfer += $input->readListBegin($_etype1097, $_size1094); - for ($_i1098 = 0; $_i1098 < $_size1094; ++$_i1098) + $_size1101 = 0; + $_etype1104 = 0; + $xfer += $input->readListBegin($_etype1104, $_size1101); + for ($_i1105 = 0; $_i1105 < $_size1101; ++$_i1105) { - $elem1099 = null; - $elem1099 = new \metastore\PartitionSpec(); - $xfer += $elem1099->read($input); - $this->success []= $elem1099; + $elem1106 = null; + $elem1106 = new \metastore\PartitionSpec(); + $xfer += $elem1106->read($input); + $this->success []= $elem1106; } $xfer += $input->readListEnd(); } else { @@ -30431,9 +30431,9 @@ class ThriftHiveMetastore_get_partitions_pspec_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1100) + foreach ($this->success as $iter1107) { - $xfer += $iter1100->write($output); + $xfer += $iter1107->write($output); } } $output->writeListEnd(); @@ -30652,14 +30652,14 @@ class ThriftHiveMetastore_get_partition_names_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1101 = 0; - $_etype1104 = 0; - $xfer += $input->readListBegin($_etype1104, $_size1101); - for ($_i1105 = 0; $_i1105 < $_size1101; ++$_i1105) + $_size1108 = 0; + $_etype1111 = 0; + $xfer += $input->readListBegin($_etype1111, $_size1108); + for ($_i1112 = 0; $_i1112 < $_size1108; ++$_i1112) { - $elem1106 = null; - $xfer += $input->readString($elem1106); - $this->success []= $elem1106; + $elem1113 = null; + $xfer += $input->readString($elem1113); + $this->success []= $elem1113; } $xfer += $input->readListEnd(); } else { @@ -30703,9 +30703,9 @@ class ThriftHiveMetastore_get_partition_names_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1107) + foreach ($this->success as $iter1114) { - $xfer += $output->writeString($iter1107); + $xfer += $output->writeString($iter1114); } } $output->writeListEnd(); @@ -31036,14 +31036,14 @@ class ThriftHiveMetastore_get_partitions_ps_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1108 = 0; - $_etype1111 = 0; - $xfer += $input->readListBegin($_etype1111, $_size1108); - for ($_i1112 = 0; $_i1112 < $_size1108; ++$_i1112) + $_size1115 = 0; + $_etype1118 = 0; + $xfer += $input->readListBegin($_etype1118, $_size1115); + for ($_i1119 = 0; $_i1119 < $_size1115; ++$_i1119) { - $elem1113 = null; - $xfer += $input->readString($elem1113); - $this->part_vals []= $elem1113; + $elem1120 = null; + $xfer += $input->readString($elem1120); + $this->part_vals []= $elem1120; } $xfer += $input->readListEnd(); } else { @@ -31088,9 +31088,9 @@ class ThriftHiveMetastore_get_partitions_ps_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1114) + foreach ($this->part_vals as $iter1121) { - $xfer += $output->writeString($iter1114); + $xfer += $output->writeString($iter1121); } } $output->writeListEnd(); @@ -31184,15 +31184,15 @@ class ThriftHiveMetastore_get_partitions_ps_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1115 = 0; - $_etype1118 = 0; - $xfer += $input->readListBegin($_etype1118, $_size1115); - for ($_i1119 = 0; $_i1119 < $_size1115; ++$_i1119) + $_size1122 = 0; + $_etype1125 = 0; + $xfer += $input->readListBegin($_etype1125, $_size1122); + for ($_i1126 = 0; $_i1126 < $_size1122; ++$_i1126) { - $elem1120 = null; - $elem1120 = new \metastore\Partition(); - $xfer += $elem1120->read($input); - $this->success []= $elem1120; + $elem1127 = null; + $elem1127 = new \metastore\Partition(); + $xfer += $elem1127->read($input); + $this->success []= $elem1127; } $xfer += $input->readListEnd(); } else { @@ -31236,9 +31236,9 @@ class ThriftHiveMetastore_get_partitions_ps_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1121) + foreach ($this->success as $iter1128) { - $xfer += $iter1121->write($output); + $xfer += $iter1128->write($output); } } $output->writeListEnd(); @@ -31385,14 +31385,14 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1122 = 0; - $_etype1125 = 0; - $xfer += $input->readListBegin($_etype1125, $_size1122); - for ($_i1126 = 0; $_i1126 < $_size1122; ++$_i1126) + $_size1129 = 0; + $_etype1132 = 0; + $xfer += $input->readListBegin($_etype1132, $_size1129); + for ($_i1133 = 0; $_i1133 < $_size1129; ++$_i1133) { - $elem1127 = null; - $xfer += $input->readString($elem1127); - $this->part_vals []= $elem1127; + $elem1134 = null; + $xfer += $input->readString($elem1134); + $this->part_vals []= $elem1134; } $xfer += $input->readListEnd(); } else { @@ -31416,14 +31416,14 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { case 6: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1128 = 0; - $_etype1131 = 0; - $xfer += $input->readListBegin($_etype1131, $_size1128); - for ($_i1132 = 0; $_i1132 < $_size1128; ++$_i1132) + $_size1135 = 0; + $_etype1138 = 0; + $xfer += $input->readListBegin($_etype1138, $_size1135); + for ($_i1139 = 0; $_i1139 < $_size1135; ++$_i1139) { - $elem1133 = null; - $xfer += $input->readString($elem1133); - $this->group_names []= $elem1133; + $elem1140 = null; + $xfer += $input->readString($elem1140); + $this->group_names []= $elem1140; } $xfer += $input->readListEnd(); } else { @@ -31461,9 +31461,9 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1134) + foreach ($this->part_vals as $iter1141) { - $xfer += $output->writeString($iter1134); + $xfer += $output->writeString($iter1141); } } $output->writeListEnd(); @@ -31488,9 +31488,9 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1135) + foreach ($this->group_names as $iter1142) { - $xfer += $output->writeString($iter1135); + $xfer += $output->writeString($iter1142); } } $output->writeListEnd(); @@ -31579,15 +31579,15 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1136 = 0; - $_etype1139 = 0; - $xfer += $input->readListBegin($_etype1139, $_size1136); - for ($_i1140 = 0; $_i1140 < $_size1136; ++$_i1140) + $_size1143 = 0; + $_etype1146 = 0; + $xfer += $input->readListBegin($_etype1146, $_size1143); + for ($_i1147 = 0; $_i1147 < $_size1143; ++$_i1147) { - $elem1141 = null; - $elem1141 = new \metastore\Partition(); - $xfer += $elem1141->read($input); - $this->success []= $elem1141; + $elem1148 = null; + $elem1148 = new \metastore\Partition(); + $xfer += $elem1148->read($input); + $this->success []= $elem1148; } $xfer += $input->readListEnd(); } else { @@ -31631,9 +31631,9 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1142) + foreach ($this->success as $iter1149) { - $xfer += $iter1142->write($output); + $xfer += $iter1149->write($output); } } $output->writeListEnd(); @@ -31754,14 +31754,14 @@ class ThriftHiveMetastore_get_partition_names_ps_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1143 = 0; - $_etype1146 = 0; - $xfer += $input->readListBegin($_etype1146, $_size1143); - for ($_i1147 = 0; $_i1147 < $_size1143; ++$_i1147) + $_size1150 = 0; + $_etype1153 = 0; + $xfer += $input->readListBegin($_etype1153, $_size1150); + for ($_i1154 = 0; $_i1154 < $_size1150; ++$_i1154) { - $elem1148 = null; - $xfer += $input->readString($elem1148); - $this->part_vals []= $elem1148; + $elem1155 = null; + $xfer += $input->readString($elem1155); + $this->part_vals []= $elem1155; } $xfer += $input->readListEnd(); } else { @@ -31806,9 +31806,9 @@ class ThriftHiveMetastore_get_partition_names_ps_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1149) + foreach ($this->part_vals as $iter1156) { - $xfer += $output->writeString($iter1149); + $xfer += $output->writeString($iter1156); } } $output->writeListEnd(); @@ -31901,14 +31901,14 @@ class ThriftHiveMetastore_get_partition_names_ps_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1150 = 0; - $_etype1153 = 0; - $xfer += $input->readListBegin($_etype1153, $_size1150); - for ($_i1154 = 0; $_i1154 < $_size1150; ++$_i1154) + $_size1157 = 0; + $_etype1160 = 0; + $xfer += $input->readListBegin($_etype1160, $_size1157); + for ($_i1161 = 0; $_i1161 < $_size1157; ++$_i1161) { - $elem1155 = null; - $xfer += $input->readString($elem1155); - $this->success []= $elem1155; + $elem1162 = null; + $xfer += $input->readString($elem1162); + $this->success []= $elem1162; } $xfer += $input->readListEnd(); } else { @@ -31952,9 +31952,9 @@ class ThriftHiveMetastore_get_partition_names_ps_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1156) + foreach ($this->success as $iter1163) { - $xfer += $output->writeString($iter1156); + $xfer += $output->writeString($iter1163); } } $output->writeListEnd(); @@ -32197,15 +32197,15 @@ class ThriftHiveMetastore_get_partitions_by_filter_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1157 = 0; - $_etype1160 = 0; - $xfer += $input->readListBegin($_etype1160, $_size1157); - for ($_i1161 = 0; $_i1161 < $_size1157; ++$_i1161) + $_size1164 = 0; + $_etype1167 = 0; + $xfer += $input->readListBegin($_etype1167, $_size1164); + for ($_i1168 = 0; $_i1168 < $_size1164; ++$_i1168) { - $elem1162 = null; - $elem1162 = new \metastore\Partition(); - $xfer += $elem1162->read($input); - $this->success []= $elem1162; + $elem1169 = null; + $elem1169 = new \metastore\Partition(); + $xfer += $elem1169->read($input); + $this->success []= $elem1169; } $xfer += $input->readListEnd(); } else { @@ -32249,9 +32249,9 @@ class ThriftHiveMetastore_get_partitions_by_filter_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1163) + foreach ($this->success as $iter1170) { - $xfer += $iter1163->write($output); + $xfer += $iter1170->write($output); } } $output->writeListEnd(); @@ -32494,15 +32494,15 @@ class ThriftHiveMetastore_get_part_specs_by_filter_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1164 = 0; - $_etype1167 = 0; - $xfer += $input->readListBegin($_etype1167, $_size1164); - for ($_i1168 = 0; $_i1168 < $_size1164; ++$_i1168) + $_size1171 = 0; + $_etype1174 = 0; + $xfer += $input->readListBegin($_etype1174, $_size1171); + for ($_i1175 = 0; $_i1175 < $_size1171; ++$_i1175) { - $elem1169 = null; - $elem1169 = new \metastore\PartitionSpec(); - $xfer += $elem1169->read($input); - $this->success []= $elem1169; + $elem1176 = null; + $elem1176 = new \metastore\PartitionSpec(); + $xfer += $elem1176->read($input); + $this->success []= $elem1176; } $xfer += $input->readListEnd(); } else { @@ -32546,9 +32546,9 @@ class ThriftHiveMetastore_get_part_specs_by_filter_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1170) + foreach ($this->success as $iter1177) { - $xfer += $iter1170->write($output); + $xfer += $iter1177->write($output); } } $output->writeListEnd(); @@ -33114,14 +33114,14 @@ class ThriftHiveMetastore_get_partitions_by_names_args { case 3: if ($ftype == TType::LST) { $this->names = array(); - $_size1171 = 0; - $_etype1174 = 0; - $xfer += $input->readListBegin($_etype1174, $_size1171); - for ($_i1175 = 0; $_i1175 < $_size1171; ++$_i1175) + $_size1178 = 0; + $_etype1181 = 0; + $xfer += $input->readListBegin($_etype1181, $_size1178); + for ($_i1182 = 0; $_i1182 < $_size1178; ++$_i1182) { - $elem1176 = null; - $xfer += $input->readString($elem1176); - $this->names []= $elem1176; + $elem1183 = null; + $xfer += $input->readString($elem1183); + $this->names []= $elem1183; } $xfer += $input->readListEnd(); } else { @@ -33159,9 +33159,9 @@ class ThriftHiveMetastore_get_partitions_by_names_args { { $output->writeListBegin(TType::STRING, count($this->names)); { - foreach ($this->names as $iter1177) + foreach ($this->names as $iter1184) { - $xfer += $output->writeString($iter1177); + $xfer += $output->writeString($iter1184); } } $output->writeListEnd(); @@ -33250,15 +33250,15 @@ class ThriftHiveMetastore_get_partitions_by_names_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1178 = 0; - $_etype1181 = 0; - $xfer += $input->readListBegin($_etype1181, $_size1178); - for ($_i1182 = 0; $_i1182 < $_size1178; ++$_i1182) + $_size1185 = 0; + $_etype1188 = 0; + $xfer += $input->readListBegin($_etype1188, $_size1185); + for ($_i1189 = 0; $_i1189 < $_size1185; ++$_i1189) { - $elem1183 = null; - $elem1183 = new \metastore\Partition(); - $xfer += $elem1183->read($input); - $this->success []= $elem1183; + $elem1190 = null; + $elem1190 = new \metastore\Partition(); + $xfer += $elem1190->read($input); + $this->success []= $elem1190; } $xfer += $input->readListEnd(); } else { @@ -33302,9 +33302,9 @@ class ThriftHiveMetastore_get_partitions_by_names_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1184) + foreach ($this->success as $iter1191) { - $xfer += $iter1184->write($output); + $xfer += $iter1191->write($output); } } $output->writeListEnd(); @@ -33643,15 +33643,15 @@ class ThriftHiveMetastore_alter_partitions_args { case 3: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size1185 = 0; - $_etype1188 = 0; - $xfer += $input->readListBegin($_etype1188, $_size1185); - for ($_i1189 = 0; $_i1189 < $_size1185; ++$_i1189) + $_size1192 = 0; + $_etype1195 = 0; + $xfer += $input->readListBegin($_etype1195, $_size1192); + for ($_i1196 = 0; $_i1196 < $_size1192; ++$_i1196) { - $elem1190 = null; - $elem1190 = new \metastore\Partition(); - $xfer += $elem1190->read($input); - $this->new_parts []= $elem1190; + $elem1197 = null; + $elem1197 = new \metastore\Partition(); + $xfer += $elem1197->read($input); + $this->new_parts []= $elem1197; } $xfer += $input->readListEnd(); } else { @@ -33689,9 +33689,9 @@ class ThriftHiveMetastore_alter_partitions_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter1191) + foreach ($this->new_parts as $iter1198) { - $xfer += $iter1191->write($output); + $xfer += $iter1198->write($output); } } $output->writeListEnd(); @@ -33906,15 +33906,15 @@ class ThriftHiveMetastore_alter_partitions_with_environment_context_args { case 3: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size1192 = 0; - $_etype1195 = 0; - $xfer += $input->readListBegin($_etype1195, $_size1192); - for ($_i1196 = 0; $_i1196 < $_size1192; ++$_i1196) + $_size1199 = 0; + $_etype1202 = 0; + $xfer += $input->readListBegin($_etype1202, $_size1199); + for ($_i1203 = 0; $_i1203 < $_size1199; ++$_i1203) { - $elem1197 = null; - $elem1197 = new \metastore\Partition(); - $xfer += $elem1197->read($input); - $this->new_parts []= $elem1197; + $elem1204 = null; + $elem1204 = new \metastore\Partition(); + $xfer += $elem1204->read($input); + $this->new_parts []= $elem1204; } $xfer += $input->readListEnd(); } else { @@ -33960,9 +33960,9 @@ class ThriftHiveMetastore_alter_partitions_with_environment_context_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter1198) + foreach ($this->new_parts as $iter1205) { - $xfer += $iter1198->write($output); + $xfer += $iter1205->write($output); } } $output->writeListEnd(); @@ -34440,14 +34440,14 @@ class ThriftHiveMetastore_rename_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1199 = 0; - $_etype1202 = 0; - $xfer += $input->readListBegin($_etype1202, $_size1199); - for ($_i1203 = 0; $_i1203 < $_size1199; ++$_i1203) + $_size1206 = 0; + $_etype1209 = 0; + $xfer += $input->readListBegin($_etype1209, $_size1206); + for ($_i1210 = 0; $_i1210 < $_size1206; ++$_i1210) { - $elem1204 = null; - $xfer += $input->readString($elem1204); - $this->part_vals []= $elem1204; + $elem1211 = null; + $xfer += $input->readString($elem1211); + $this->part_vals []= $elem1211; } $xfer += $input->readListEnd(); } else { @@ -34493,9 +34493,9 @@ class ThriftHiveMetastore_rename_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1205) + foreach ($this->part_vals as $iter1212) { - $xfer += $output->writeString($iter1205); + $xfer += $output->writeString($iter1212); } } $output->writeListEnd(); @@ -34680,14 +34680,14 @@ class ThriftHiveMetastore_partition_name_has_valid_characters_args { case 1: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1206 = 0; - $_etype1209 = 0; - $xfer += $input->readListBegin($_etype1209, $_size1206); - for ($_i1210 = 0; $_i1210 < $_size1206; ++$_i1210) + $_size1213 = 0; + $_etype1216 = 0; + $xfer += $input->readListBegin($_etype1216, $_size1213); + for ($_i1217 = 0; $_i1217 < $_size1213; ++$_i1217) { - $elem1211 = null; - $xfer += $input->readString($elem1211); - $this->part_vals []= $elem1211; + $elem1218 = null; + $xfer += $input->readString($elem1218); + $this->part_vals []= $elem1218; } $xfer += $input->readListEnd(); } else { @@ -34722,9 +34722,9 @@ class ThriftHiveMetastore_partition_name_has_valid_characters_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1212) + foreach ($this->part_vals as $iter1219) { - $xfer += $output->writeString($iter1212); + $xfer += $output->writeString($iter1219); } } $output->writeListEnd(); @@ -35178,14 +35178,14 @@ class ThriftHiveMetastore_partition_name_to_vals_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1213 = 0; - $_etype1216 = 0; - $xfer += $input->readListBegin($_etype1216, $_size1213); - for ($_i1217 = 0; $_i1217 < $_size1213; ++$_i1217) + $_size1220 = 0; + $_etype1223 = 0; + $xfer += $input->readListBegin($_etype1223, $_size1220); + for ($_i1224 = 0; $_i1224 < $_size1220; ++$_i1224) { - $elem1218 = null; - $xfer += $input->readString($elem1218); - $this->success []= $elem1218; + $elem1225 = null; + $xfer += $input->readString($elem1225); + $this->success []= $elem1225; } $xfer += $input->readListEnd(); } else { @@ -35221,9 +35221,9 @@ class ThriftHiveMetastore_partition_name_to_vals_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1219) + foreach ($this->success as $iter1226) { - $xfer += $output->writeString($iter1219); + $xfer += $output->writeString($iter1226); } } $output->writeListEnd(); @@ -35383,17 +35383,17 @@ class ThriftHiveMetastore_partition_name_to_spec_result { case 0: if ($ftype == TType::MAP) { $this->success = array(); - $_size1220 = 0; - $_ktype1221 = 0; - $_vtype1222 = 0; - $xfer += $input->readMapBegin($_ktype1221, $_vtype1222, $_size1220); - for ($_i1224 = 0; $_i1224 < $_size1220; ++$_i1224) + $_size1227 = 0; + $_ktype1228 = 0; + $_vtype1229 = 0; + $xfer += $input->readMapBegin($_ktype1228, $_vtype1229, $_size1227); + for ($_i1231 = 0; $_i1231 < $_size1227; ++$_i1231) { - $key1225 = ''; - $val1226 = ''; - $xfer += $input->readString($key1225); - $xfer += $input->readString($val1226); - $this->success[$key1225] = $val1226; + $key1232 = ''; + $val1233 = ''; + $xfer += $input->readString($key1232); + $xfer += $input->readString($val1233); + $this->success[$key1232] = $val1233; } $xfer += $input->readMapEnd(); } else { @@ -35429,10 +35429,10 @@ class ThriftHiveMetastore_partition_name_to_spec_result { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->success)); { - foreach ($this->success as $kiter1227 => $viter1228) + foreach ($this->success as $kiter1234 => $viter1235) { - $xfer += $output->writeString($kiter1227); - $xfer += $output->writeString($viter1228); + $xfer += $output->writeString($kiter1234); + $xfer += $output->writeString($viter1235); } } $output->writeMapEnd(); @@ -35552,17 +35552,17 @@ class ThriftHiveMetastore_markPartitionForEvent_args { case 3: if ($ftype == TType::MAP) { $this->part_vals = array(); - $_size1229 = 0; - $_ktype1230 = 0; - $_vtype1231 = 0; - $xfer += $input->readMapBegin($_ktype1230, $_vtype1231, $_size1229); - for ($_i1233 = 0; $_i1233 < $_size1229; ++$_i1233) + $_size1236 = 0; + $_ktype1237 = 0; + $_vtype1238 = 0; + $xfer += $input->readMapBegin($_ktype1237, $_vtype1238, $_size1236); + for ($_i1240 = 0; $_i1240 < $_size1236; ++$_i1240) { - $key1234 = ''; - $val1235 = ''; - $xfer += $input->readString($key1234); - $xfer += $input->readString($val1235); - $this->part_vals[$key1234] = $val1235; + $key1241 = ''; + $val1242 = ''; + $xfer += $input->readString($key1241); + $xfer += $input->readString($val1242); + $this->part_vals[$key1241] = $val1242; } $xfer += $input->readMapEnd(); } else { @@ -35607,10 +35607,10 @@ class ThriftHiveMetastore_markPartitionForEvent_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $kiter1236 => $viter1237) + foreach ($this->part_vals as $kiter1243 => $viter1244) { - $xfer += $output->writeString($kiter1236); - $xfer += $output->writeString($viter1237); + $xfer += $output->writeString($kiter1243); + $xfer += $output->writeString($viter1244); } } $output->writeMapEnd(); @@ -35932,17 +35932,17 @@ class ThriftHiveMetastore_isPartitionMarkedForEvent_args { case 3: if ($ftype == TType::MAP) { $this->part_vals = array(); - $_size1238 = 0; - $_ktype1239 = 0; - $_vtype1240 = 0; - $xfer += $input->readMapBegin($_ktype1239, $_vtype1240, $_size1238); - for ($_i1242 = 0; $_i1242 < $_size1238; ++$_i1242) + $_size1245 = 0; + $_ktype1246 = 0; + $_vtype1247 = 0; + $xfer += $input->readMapBegin($_ktype1246, $_vtype1247, $_size1245); + for ($_i1249 = 0; $_i1249 < $_size1245; ++$_i1249) { - $key1243 = ''; - $val1244 = ''; - $xfer += $input->readString($key1243); - $xfer += $input->readString($val1244); - $this->part_vals[$key1243] = $val1244; + $key1250 = ''; + $val1251 = ''; + $xfer += $input->readString($key1250); + $xfer += $input->readString($val1251); + $this->part_vals[$key1250] = $val1251; } $xfer += $input->readMapEnd(); } else { @@ -35987,10 +35987,10 @@ class ThriftHiveMetastore_isPartitionMarkedForEvent_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $kiter1245 => $viter1246) + foreach ($this->part_vals as $kiter1252 => $viter1253) { - $xfer += $output->writeString($kiter1245); - $xfer += $output->writeString($viter1246); + $xfer += $output->writeString($kiter1252); + $xfer += $output->writeString($viter1253); } } $output->writeMapEnd(); @@ -40949,14 +40949,14 @@ class ThriftHiveMetastore_get_functions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1247 = 0; - $_etype1250 = 0; - $xfer += $input->readListBegin($_etype1250, $_size1247); - for ($_i1251 = 0; $_i1251 < $_size1247; ++$_i1251) + $_size1254 = 0; + $_etype1257 = 0; + $xfer += $input->readListBegin($_etype1257, $_size1254); + for ($_i1258 = 0; $_i1258 < $_size1254; ++$_i1258) { - $elem1252 = null; - $xfer += $input->readString($elem1252); - $this->success []= $elem1252; + $elem1259 = null; + $xfer += $input->readString($elem1259); + $this->success []= $elem1259; } $xfer += $input->readListEnd(); } else { @@ -40992,9 +40992,9 @@ class ThriftHiveMetastore_get_functions_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1253) + foreach ($this->success as $iter1260) { - $xfer += $output->writeString($iter1253); + $xfer += $output->writeString($iter1260); } } $output->writeListEnd(); @@ -41863,14 +41863,14 @@ class ThriftHiveMetastore_get_role_names_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1254 = 0; - $_etype1257 = 0; - $xfer += $input->readListBegin($_etype1257, $_size1254); - for ($_i1258 = 0; $_i1258 < $_size1254; ++$_i1258) + $_size1261 = 0; + $_etype1264 = 0; + $xfer += $input->readListBegin($_etype1264, $_size1261); + for ($_i1265 = 0; $_i1265 < $_size1261; ++$_i1265) { - $elem1259 = null; - $xfer += $input->readString($elem1259); - $this->success []= $elem1259; + $elem1266 = null; + $xfer += $input->readString($elem1266); + $this->success []= $elem1266; } $xfer += $input->readListEnd(); } else { @@ -41906,9 +41906,9 @@ class ThriftHiveMetastore_get_role_names_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1260) + foreach ($this->success as $iter1267) { - $xfer += $output->writeString($iter1260); + $xfer += $output->writeString($iter1267); } } $output->writeListEnd(); @@ -42599,15 +42599,15 @@ class ThriftHiveMetastore_list_roles_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1261 = 0; - $_etype1264 = 0; - $xfer += $input->readListBegin($_etype1264, $_size1261); - for ($_i1265 = 0; $_i1265 < $_size1261; ++$_i1265) + $_size1268 = 0; + $_etype1271 = 0; + $xfer += $input->readListBegin($_etype1271, $_size1268); + for ($_i1272 = 0; $_i1272 < $_size1268; ++$_i1272) { - $elem1266 = null; - $elem1266 = new \metastore\Role(); - $xfer += $elem1266->read($input); - $this->success []= $elem1266; + $elem1273 = null; + $elem1273 = new \metastore\Role(); + $xfer += $elem1273->read($input); + $this->success []= $elem1273; } $xfer += $input->readListEnd(); } else { @@ -42643,9 +42643,9 @@ class ThriftHiveMetastore_list_roles_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1267) + foreach ($this->success as $iter1274) { - $xfer += $iter1267->write($output); + $xfer += $iter1274->write($output); } } $output->writeListEnd(); @@ -43307,14 +43307,14 @@ class ThriftHiveMetastore_get_privilege_set_args { case 3: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1268 = 0; - $_etype1271 = 0; - $xfer += $input->readListBegin($_etype1271, $_size1268); - for ($_i1272 = 0; $_i1272 < $_size1268; ++$_i1272) + $_size1275 = 0; + $_etype1278 = 0; + $xfer += $input->readListBegin($_etype1278, $_size1275); + for ($_i1279 = 0; $_i1279 < $_size1275; ++$_i1279) { - $elem1273 = null; - $xfer += $input->readString($elem1273); - $this->group_names []= $elem1273; + $elem1280 = null; + $xfer += $input->readString($elem1280); + $this->group_names []= $elem1280; } $xfer += $input->readListEnd(); } else { @@ -43355,9 +43355,9 @@ class ThriftHiveMetastore_get_privilege_set_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1274) + foreach ($this->group_names as $iter1281) { - $xfer += $output->writeString($iter1274); + $xfer += $output->writeString($iter1281); } } $output->writeListEnd(); @@ -43665,15 +43665,15 @@ class ThriftHiveMetastore_list_privileges_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1275 = 0; - $_etype1278 = 0; - $xfer += $input->readListBegin($_etype1278, $_size1275); - for ($_i1279 = 0; $_i1279 < $_size1275; ++$_i1279) + $_size1282 = 0; + $_etype1285 = 0; + $xfer += $input->readListBegin($_etype1285, $_size1282); + for ($_i1286 = 0; $_i1286 < $_size1282; ++$_i1286) { - $elem1280 = null; - $elem1280 = new \metastore\HiveObjectPrivilege(); - $xfer += $elem1280->read($input); - $this->success []= $elem1280; + $elem1287 = null; + $elem1287 = new \metastore\HiveObjectPrivilege(); + $xfer += $elem1287->read($input); + $this->success []= $elem1287; } $xfer += $input->readListEnd(); } else { @@ -43709,9 +43709,9 @@ class ThriftHiveMetastore_list_privileges_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1281) + foreach ($this->success as $iter1288) { - $xfer += $iter1281->write($output); + $xfer += $iter1288->write($output); } } $output->writeListEnd(); @@ -44343,14 +44343,14 @@ class ThriftHiveMetastore_set_ugi_args { case 2: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1282 = 0; - $_etype1285 = 0; - $xfer += $input->readListBegin($_etype1285, $_size1282); - for ($_i1286 = 0; $_i1286 < $_size1282; ++$_i1286) + $_size1289 = 0; + $_etype1292 = 0; + $xfer += $input->readListBegin($_etype1292, $_size1289); + for ($_i1293 = 0; $_i1293 < $_size1289; ++$_i1293) { - $elem1287 = null; - $xfer += $input->readString($elem1287); - $this->group_names []= $elem1287; + $elem1294 = null; + $xfer += $input->readString($elem1294); + $this->group_names []= $elem1294; } $xfer += $input->readListEnd(); } else { @@ -44383,9 +44383,9 @@ class ThriftHiveMetastore_set_ugi_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1288) + foreach ($this->group_names as $iter1295) { - $xfer += $output->writeString($iter1288); + $xfer += $output->writeString($iter1295); } } $output->writeListEnd(); @@ -44461,14 +44461,14 @@ class ThriftHiveMetastore_set_ugi_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1289 = 0; - $_etype1292 = 0; - $xfer += $input->readListBegin($_etype1292, $_size1289); - for ($_i1293 = 0; $_i1293 < $_size1289; ++$_i1293) + $_size1296 = 0; + $_etype1299 = 0; + $xfer += $input->readListBegin($_etype1299, $_size1296); + for ($_i1300 = 0; $_i1300 < $_size1296; ++$_i1300) { - $elem1294 = null; - $xfer += $input->readString($elem1294); - $this->success []= $elem1294; + $elem1301 = null; + $xfer += $input->readString($elem1301); + $this->success []= $elem1301; } $xfer += $input->readListEnd(); } else { @@ -44504,9 +44504,9 @@ class ThriftHiveMetastore_set_ugi_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1295) + foreach ($this->success as $iter1302) { - $xfer += $output->writeString($iter1295); + $xfer += $output->writeString($iter1302); } } $output->writeListEnd(); @@ -45623,14 +45623,14 @@ class ThriftHiveMetastore_get_all_token_identifiers_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1296 = 0; - $_etype1299 = 0; - $xfer += $input->readListBegin($_etype1299, $_size1296); - for ($_i1300 = 0; $_i1300 < $_size1296; ++$_i1300) + $_size1303 = 0; + $_etype1306 = 0; + $xfer += $input->readListBegin($_etype1306, $_size1303); + for ($_i1307 = 0; $_i1307 < $_size1303; ++$_i1307) { - $elem1301 = null; - $xfer += $input->readString($elem1301); - $this->success []= $elem1301; + $elem1308 = null; + $xfer += $input->readString($elem1308); + $this->success []= $elem1308; } $xfer += $input->readListEnd(); } else { @@ -45658,9 +45658,9 @@ class ThriftHiveMetastore_get_all_token_identifiers_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1302) + foreach ($this->success as $iter1309) { - $xfer += $output->writeString($iter1302); + $xfer += $output->writeString($iter1309); } } $output->writeListEnd(); @@ -46299,14 +46299,14 @@ class ThriftHiveMetastore_get_master_keys_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1303 = 0; - $_etype1306 = 0; - $xfer += $input->readListBegin($_etype1306, $_size1303); - for ($_i1307 = 0; $_i1307 < $_size1303; ++$_i1307) + $_size1310 = 0; + $_etype1313 = 0; + $xfer += $input->readListBegin($_etype1313, $_size1310); + for ($_i1314 = 0; $_i1314 < $_size1310; ++$_i1314) { - $elem1308 = null; - $xfer += $input->readString($elem1308); - $this->success []= $elem1308; + $elem1315 = null; + $xfer += $input->readString($elem1315); + $this->success []= $elem1315; } $xfer += $input->readListEnd(); } else { @@ -46334,9 +46334,9 @@ class ThriftHiveMetastore_get_master_keys_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1309) + foreach ($this->success as $iter1316) { - $xfer += $output->writeString($iter1309); + $xfer += $output->writeString($iter1316); } } $output->writeListEnd(); @@ -56875,15 +56875,15 @@ class ThriftHiveMetastore_get_schema_all_versions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1310 = 0; - $_etype1313 = 0; - $xfer += $input->readListBegin($_etype1313, $_size1310); - for ($_i1314 = 0; $_i1314 < $_size1310; ++$_i1314) + $_size1317 = 0; + $_etype1320 = 0; + $xfer += $input->readListBegin($_etype1320, $_size1317); + for ($_i1321 = 0; $_i1321 < $_size1317; ++$_i1321) { - $elem1315 = null; - $elem1315 = new \metastore\SchemaVersion(); - $xfer += $elem1315->read($input); - $this->success []= $elem1315; + $elem1322 = null; + $elem1322 = new \metastore\SchemaVersion(); + $xfer += $elem1322->read($input); + $this->success []= $elem1322; } $xfer += $input->readListEnd(); } else { @@ -56927,9 +56927,9 @@ class ThriftHiveMetastore_get_schema_all_versions_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1316) + foreach ($this->success as $iter1323) { - $xfer += $iter1316->write($output); + $xfer += $iter1323->write($output); } } $output->writeListEnd(); diff --git a/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php b/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php index 14416b4875..c4969d567f 100644 --- a/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php +++ b/standalone-metastore/src/gen/thrift/gen-php/metastore/Types.php @@ -16919,6 +16919,14 @@ class GetValidWriteIdsResponse { class AllocateTableWriteIdsRequest { static $_TSPEC; + /** + * @var string + */ + public $dbName = null; + /** + * @var string + */ + public $tableName = null; /** * @var int[] */ @@ -16926,16 +16934,24 @@ class AllocateTableWriteIdsRequest { /** * @var string */ - public $dbName = null; + public $replPolicy = null; /** - * @var string + * @var \metastore\TxnToWriteId[] */ - public $tableName = null; + public $srcTxnToWriteIdList = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { self::$_TSPEC = array( 1 => array( + 'var' => 'dbName', + 'type' => TType::STRING, + ), + 2 => array( + 'var' => 'tableName', + 'type' => TType::STRING, + ), + 3 => array( 'var' => 'txnIds', 'type' => TType::LST, 'etype' => TType::I64, @@ -16943,26 +16959,37 @@ class AllocateTableWriteIdsRequest { 'type' => TType::I64, ), ), - 2 => array( - 'var' => 'dbName', + 4 => array( + 'var' => 'replPolicy', 'type' => TType::STRING, ), - 3 => array( - 'var' => 'tableName', - 'type' => TType::STRING, + 5 => array( + 'var' => 'srcTxnToWriteIdList', + 'type' => TType::LST, + 'etype' => TType::STRUCT, + 'elem' => array( + 'type' => TType::STRUCT, + 'class' => '\metastore\TxnToWriteId', + ), ), ); } if (is_array($vals)) { - if (isset($vals['txnIds'])) { - $this->txnIds = $vals['txnIds']; - } if (isset($vals['dbName'])) { $this->dbName = $vals['dbName']; } if (isset($vals['tableName'])) { $this->tableName = $vals['tableName']; } + if (isset($vals['txnIds'])) { + $this->txnIds = $vals['txnIds']; + } + if (isset($vals['replPolicy'])) { + $this->replPolicy = $vals['replPolicy']; + } + if (isset($vals['srcTxnToWriteIdList'])) { + $this->srcTxnToWriteIdList = $vals['srcTxnToWriteIdList']; + } } } @@ -16986,6 +17013,20 @@ class AllocateTableWriteIdsRequest { switch ($fid) { case 1: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->dbName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 2: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->tableName); + } else { + $xfer += $input->skip($ftype); + } + break; + case 3: if ($ftype == TType::LST) { $this->txnIds = array(); $_size544 = 0; @@ -17002,16 +17043,27 @@ class AllocateTableWriteIdsRequest { $xfer += $input->skip($ftype); } break; - case 2: + case 4: if ($ftype == TType::STRING) { - $xfer += $input->readString($this->dbName); + $xfer += $input->readString($this->replPolicy); } else { $xfer += $input->skip($ftype); } break; - case 3: - if ($ftype == TType::STRING) { - $xfer += $input->readString($this->tableName); + case 5: + if ($ftype == TType::LST) { + $this->srcTxnToWriteIdList = array(); + $_size550 = 0; + $_etype553 = 0; + $xfer += $input->readListBegin($_etype553, $_size550); + for ($_i554 = 0; $_i554 < $_size550; ++$_i554) + { + $elem555 = null; + $elem555 = new \metastore\TxnToWriteId(); + $xfer += $elem555->read($input); + $this->srcTxnToWriteIdList []= $elem555; + } + $xfer += $input->readListEnd(); } else { $xfer += $input->skip($ftype); } @@ -17029,31 +17081,53 @@ class AllocateTableWriteIdsRequest { public function write($output) { $xfer = 0; $xfer += $output->writeStructBegin('AllocateTableWriteIdsRequest'); + if ($this->dbName !== null) { + $xfer += $output->writeFieldBegin('dbName', TType::STRING, 1); + $xfer += $output->writeString($this->dbName); + $xfer += $output->writeFieldEnd(); + } + if ($this->tableName !== null) { + $xfer += $output->writeFieldBegin('tableName', TType::STRING, 2); + $xfer += $output->writeString($this->tableName); + $xfer += $output->writeFieldEnd(); + } if ($this->txnIds !== null) { if (!is_array($this->txnIds)) { throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); } - $xfer += $output->writeFieldBegin('txnIds', TType::LST, 1); + $xfer += $output->writeFieldBegin('txnIds', TType::LST, 3); { $output->writeListBegin(TType::I64, count($this->txnIds)); { - foreach ($this->txnIds as $iter550) + foreach ($this->txnIds as $iter556) { - $xfer += $output->writeI64($iter550); + $xfer += $output->writeI64($iter556); } } $output->writeListEnd(); } $xfer += $output->writeFieldEnd(); } - if ($this->dbName !== null) { - $xfer += $output->writeFieldBegin('dbName', TType::STRING, 2); - $xfer += $output->writeString($this->dbName); + if ($this->replPolicy !== null) { + $xfer += $output->writeFieldBegin('replPolicy', TType::STRING, 4); + $xfer += $output->writeString($this->replPolicy); $xfer += $output->writeFieldEnd(); } - if ($this->tableName !== null) { - $xfer += $output->writeFieldBegin('tableName', TType::STRING, 3); - $xfer += $output->writeString($this->tableName); + if ($this->srcTxnToWriteIdList !== null) { + if (!is_array($this->srcTxnToWriteIdList)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('srcTxnToWriteIdList', TType::LST, 5); + { + $output->writeListBegin(TType::STRUCT, count($this->srcTxnToWriteIdList)); + { + foreach ($this->srcTxnToWriteIdList as $iter557) + { + $xfer += $iter557->write($output); + } + } + $output->writeListEnd(); + } $xfer += $output->writeFieldEnd(); } $xfer += $output->writeFieldStop(); @@ -17212,15 +17286,15 @@ class AllocateTableWriteIdsResponse { case 1: if ($ftype == TType::LST) { $this->txnToWriteIds = array(); - $_size551 = 0; - $_etype554 = 0; - $xfer += $input->readListBegin($_etype554, $_size551); - for ($_i555 = 0; $_i555 < $_size551; ++$_i555) + $_size558 = 0; + $_etype561 = 0; + $xfer += $input->readListBegin($_etype561, $_size558); + for ($_i562 = 0; $_i562 < $_size558; ++$_i562) { - $elem556 = null; - $elem556 = new \metastore\TxnToWriteId(); - $xfer += $elem556->read($input); - $this->txnToWriteIds []= $elem556; + $elem563 = null; + $elem563 = new \metastore\TxnToWriteId(); + $xfer += $elem563->read($input); + $this->txnToWriteIds []= $elem563; } $xfer += $input->readListEnd(); } else { @@ -17248,9 +17322,9 @@ class AllocateTableWriteIdsResponse { { $output->writeListBegin(TType::STRUCT, count($this->txnToWriteIds)); { - foreach ($this->txnToWriteIds as $iter557) + foreach ($this->txnToWriteIds as $iter564) { - $xfer += $iter557->write($output); + $xfer += $iter564->write($output); } } $output->writeListEnd(); @@ -17595,15 +17669,15 @@ class LockRequest { case 1: if ($ftype == TType::LST) { $this->component = array(); - $_size558 = 0; - $_etype561 = 0; - $xfer += $input->readListBegin($_etype561, $_size558); - for ($_i562 = 0; $_i562 < $_size558; ++$_i562) + $_size565 = 0; + $_etype568 = 0; + $xfer += $input->readListBegin($_etype568, $_size565); + for ($_i569 = 0; $_i569 < $_size565; ++$_i569) { - $elem563 = null; - $elem563 = new \metastore\LockComponent(); - $xfer += $elem563->read($input); - $this->component []= $elem563; + $elem570 = null; + $elem570 = new \metastore\LockComponent(); + $xfer += $elem570->read($input); + $this->component []= $elem570; } $xfer += $input->readListEnd(); } else { @@ -17659,9 +17733,9 @@ class LockRequest { { $output->writeListBegin(TType::STRUCT, count($this->component)); { - foreach ($this->component as $iter564) + foreach ($this->component as $iter571) { - $xfer += $iter564->write($output); + $xfer += $iter571->write($output); } } $output->writeListEnd(); @@ -18604,15 +18678,15 @@ class ShowLocksResponse { case 1: if ($ftype == TType::LST) { $this->locks = array(); - $_size565 = 0; - $_etype568 = 0; - $xfer += $input->readListBegin($_etype568, $_size565); - for ($_i569 = 0; $_i569 < $_size565; ++$_i569) + $_size572 = 0; + $_etype575 = 0; + $xfer += $input->readListBegin($_etype575, $_size572); + for ($_i576 = 0; $_i576 < $_size572; ++$_i576) { - $elem570 = null; - $elem570 = new \metastore\ShowLocksResponseElement(); - $xfer += $elem570->read($input); - $this->locks []= $elem570; + $elem577 = null; + $elem577 = new \metastore\ShowLocksResponseElement(); + $xfer += $elem577->read($input); + $this->locks []= $elem577; } $xfer += $input->readListEnd(); } else { @@ -18640,9 +18714,9 @@ class ShowLocksResponse { { $output->writeListBegin(TType::STRUCT, count($this->locks)); { - foreach ($this->locks as $iter571) + foreach ($this->locks as $iter578) { - $xfer += $iter571->write($output); + $xfer += $iter578->write($output); } } $output->writeListEnd(); @@ -18917,17 +18991,17 @@ class HeartbeatTxnRangeResponse { case 1: if ($ftype == TType::SET) { $this->aborted = array(); - $_size572 = 0; - $_etype575 = 0; - $xfer += $input->readSetBegin($_etype575, $_size572); - for ($_i576 = 0; $_i576 < $_size572; ++$_i576) + $_size579 = 0; + $_etype582 = 0; + $xfer += $input->readSetBegin($_etype582, $_size579); + for ($_i583 = 0; $_i583 < $_size579; ++$_i583) { - $elem577 = null; - $xfer += $input->readI64($elem577); - if (is_scalar($elem577)) { - $this->aborted[$elem577] = true; + $elem584 = null; + $xfer += $input->readI64($elem584); + if (is_scalar($elem584)) { + $this->aborted[$elem584] = true; } else { - $this->aborted []= $elem577; + $this->aborted []= $elem584; } } $xfer += $input->readSetEnd(); @@ -18938,17 +19012,17 @@ class HeartbeatTxnRangeResponse { case 2: if ($ftype == TType::SET) { $this->nosuch = array(); - $_size578 = 0; - $_etype581 = 0; - $xfer += $input->readSetBegin($_etype581, $_size578); - for ($_i582 = 0; $_i582 < $_size578; ++$_i582) + $_size585 = 0; + $_etype588 = 0; + $xfer += $input->readSetBegin($_etype588, $_size585); + for ($_i589 = 0; $_i589 < $_size585; ++$_i589) { - $elem583 = null; - $xfer += $input->readI64($elem583); - if (is_scalar($elem583)) { - $this->nosuch[$elem583] = true; + $elem590 = null; + $xfer += $input->readI64($elem590); + if (is_scalar($elem590)) { + $this->nosuch[$elem590] = true; } else { - $this->nosuch []= $elem583; + $this->nosuch []= $elem590; } } $xfer += $input->readSetEnd(); @@ -18977,12 +19051,12 @@ class HeartbeatTxnRangeResponse { { $output->writeSetBegin(TType::I64, count($this->aborted)); { - foreach ($this->aborted as $iter584 => $iter585) + foreach ($this->aborted as $iter591 => $iter592) { - if (is_scalar($iter585)) { - $xfer += $output->writeI64($iter584); + if (is_scalar($iter592)) { + $xfer += $output->writeI64($iter591); } else { - $xfer += $output->writeI64($iter585); + $xfer += $output->writeI64($iter592); } } } @@ -18998,12 +19072,12 @@ class HeartbeatTxnRangeResponse { { $output->writeSetBegin(TType::I64, count($this->nosuch)); { - foreach ($this->nosuch as $iter586 => $iter587) + foreach ($this->nosuch as $iter593 => $iter594) { - if (is_scalar($iter587)) { - $xfer += $output->writeI64($iter586); + if (is_scalar($iter594)) { + $xfer += $output->writeI64($iter593); } else { - $xfer += $output->writeI64($iter587); + $xfer += $output->writeI64($iter594); } } } @@ -19162,17 +19236,17 @@ class CompactionRequest { case 6: if ($ftype == TType::MAP) { $this->properties = array(); - $_size588 = 0; - $_ktype589 = 0; - $_vtype590 = 0; - $xfer += $input->readMapBegin($_ktype589, $_vtype590, $_size588); - for ($_i592 = 0; $_i592 < $_size588; ++$_i592) + $_size595 = 0; + $_ktype596 = 0; + $_vtype597 = 0; + $xfer += $input->readMapBegin($_ktype596, $_vtype597, $_size595); + for ($_i599 = 0; $_i599 < $_size595; ++$_i599) { - $key593 = ''; - $val594 = ''; - $xfer += $input->readString($key593); - $xfer += $input->readString($val594); - $this->properties[$key593] = $val594; + $key600 = ''; + $val601 = ''; + $xfer += $input->readString($key600); + $xfer += $input->readString($val601); + $this->properties[$key600] = $val601; } $xfer += $input->readMapEnd(); } else { @@ -19225,10 +19299,10 @@ class CompactionRequest { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->properties)); { - foreach ($this->properties as $kiter595 => $viter596) + foreach ($this->properties as $kiter602 => $viter603) { - $xfer += $output->writeString($kiter595); - $xfer += $output->writeString($viter596); + $xfer += $output->writeString($kiter602); + $xfer += $output->writeString($viter603); } } $output->writeMapEnd(); @@ -19815,15 +19889,15 @@ class ShowCompactResponse { case 1: if ($ftype == TType::LST) { $this->compacts = array(); - $_size597 = 0; - $_etype600 = 0; - $xfer += $input->readListBegin($_etype600, $_size597); - for ($_i601 = 0; $_i601 < $_size597; ++$_i601) + $_size604 = 0; + $_etype607 = 0; + $xfer += $input->readListBegin($_etype607, $_size604); + for ($_i608 = 0; $_i608 < $_size604; ++$_i608) { - $elem602 = null; - $elem602 = new \metastore\ShowCompactResponseElement(); - $xfer += $elem602->read($input); - $this->compacts []= $elem602; + $elem609 = null; + $elem609 = new \metastore\ShowCompactResponseElement(); + $xfer += $elem609->read($input); + $this->compacts []= $elem609; } $xfer += $input->readListEnd(); } else { @@ -19851,9 +19925,9 @@ class ShowCompactResponse { { $output->writeListBegin(TType::STRUCT, count($this->compacts)); { - foreach ($this->compacts as $iter603) + foreach ($this->compacts as $iter610) { - $xfer += $iter603->write($output); + $xfer += $iter610->write($output); } } $output->writeListEnd(); @@ -20000,14 +20074,14 @@ class AddDynamicPartitions { case 5: if ($ftype == TType::LST) { $this->partitionnames = array(); - $_size604 = 0; - $_etype607 = 0; - $xfer += $input->readListBegin($_etype607, $_size604); - for ($_i608 = 0; $_i608 < $_size604; ++$_i608) + $_size611 = 0; + $_etype614 = 0; + $xfer += $input->readListBegin($_etype614, $_size611); + for ($_i615 = 0; $_i615 < $_size611; ++$_i615) { - $elem609 = null; - $xfer += $input->readString($elem609); - $this->partitionnames []= $elem609; + $elem616 = null; + $xfer += $input->readString($elem616); + $this->partitionnames []= $elem616; } $xfer += $input->readListEnd(); } else { @@ -20062,9 +20136,9 @@ class AddDynamicPartitions { { $output->writeListBegin(TType::STRING, count($this->partitionnames)); { - foreach ($this->partitionnames as $iter610) + foreach ($this->partitionnames as $iter617) { - $xfer += $output->writeString($iter610); + $xfer += $output->writeString($iter617); } } $output->writeListEnd(); @@ -20388,17 +20462,17 @@ class CreationMetadata { case 4: if ($ftype == TType::SET) { $this->tablesUsed = array(); - $_size611 = 0; - $_etype614 = 0; - $xfer += $input->readSetBegin($_etype614, $_size611); - for ($_i615 = 0; $_i615 < $_size611; ++$_i615) + $_size618 = 0; + $_etype621 = 0; + $xfer += $input->readSetBegin($_etype621, $_size618); + for ($_i622 = 0; $_i622 < $_size618; ++$_i622) { - $elem616 = null; - $xfer += $input->readString($elem616); - if (is_scalar($elem616)) { - $this->tablesUsed[$elem616] = true; + $elem623 = null; + $xfer += $input->readString($elem623); + if (is_scalar($elem623)) { + $this->tablesUsed[$elem623] = true; } else { - $this->tablesUsed []= $elem616; + $this->tablesUsed []= $elem623; } } $xfer += $input->readSetEnd(); @@ -20449,12 +20523,12 @@ class CreationMetadata { { $output->writeSetBegin(TType::STRING, count($this->tablesUsed)); { - foreach ($this->tablesUsed as $iter617 => $iter618) + foreach ($this->tablesUsed as $iter624 => $iter625) { - if (is_scalar($iter618)) { - $xfer += $output->writeString($iter617); + if (is_scalar($iter625)) { + $xfer += $output->writeString($iter624); } else { - $xfer += $output->writeString($iter618); + $xfer += $output->writeString($iter625); } } } @@ -20859,15 +20933,15 @@ class NotificationEventResponse { case 1: if ($ftype == TType::LST) { $this->events = array(); - $_size619 = 0; - $_etype622 = 0; - $xfer += $input->readListBegin($_etype622, $_size619); - for ($_i623 = 0; $_i623 < $_size619; ++$_i623) + $_size626 = 0; + $_etype629 = 0; + $xfer += $input->readListBegin($_etype629, $_size626); + for ($_i630 = 0; $_i630 < $_size626; ++$_i630) { - $elem624 = null; - $elem624 = new \metastore\NotificationEvent(); - $xfer += $elem624->read($input); - $this->events []= $elem624; + $elem631 = null; + $elem631 = new \metastore\NotificationEvent(); + $xfer += $elem631->read($input); + $this->events []= $elem631; } $xfer += $input->readListEnd(); } else { @@ -20895,9 +20969,9 @@ class NotificationEventResponse { { $output->writeListBegin(TType::STRUCT, count($this->events)); { - foreach ($this->events as $iter625) + foreach ($this->events as $iter632) { - $xfer += $iter625->write($output); + $xfer += $iter632->write($output); } } $output->writeListEnd(); @@ -21265,14 +21339,14 @@ class InsertEventRequestData { case 2: if ($ftype == TType::LST) { $this->filesAdded = array(); - $_size626 = 0; - $_etype629 = 0; - $xfer += $input->readListBegin($_etype629, $_size626); - for ($_i630 = 0; $_i630 < $_size626; ++$_i630) + $_size633 = 0; + $_etype636 = 0; + $xfer += $input->readListBegin($_etype636, $_size633); + for ($_i637 = 0; $_i637 < $_size633; ++$_i637) { - $elem631 = null; - $xfer += $input->readString($elem631); - $this->filesAdded []= $elem631; + $elem638 = null; + $xfer += $input->readString($elem638); + $this->filesAdded []= $elem638; } $xfer += $input->readListEnd(); } else { @@ -21282,14 +21356,14 @@ class InsertEventRequestData { case 3: if ($ftype == TType::LST) { $this->filesAddedChecksum = array(); - $_size632 = 0; - $_etype635 = 0; - $xfer += $input->readListBegin($_etype635, $_size632); - for ($_i636 = 0; $_i636 < $_size632; ++$_i636) + $_size639 = 0; + $_etype642 = 0; + $xfer += $input->readListBegin($_etype642, $_size639); + for ($_i643 = 0; $_i643 < $_size639; ++$_i643) { - $elem637 = null; - $xfer += $input->readString($elem637); - $this->filesAddedChecksum []= $elem637; + $elem644 = null; + $xfer += $input->readString($elem644); + $this->filesAddedChecksum []= $elem644; } $xfer += $input->readListEnd(); } else { @@ -21322,9 +21396,9 @@ class InsertEventRequestData { { $output->writeListBegin(TType::STRING, count($this->filesAdded)); { - foreach ($this->filesAdded as $iter638) + foreach ($this->filesAdded as $iter645) { - $xfer += $output->writeString($iter638); + $xfer += $output->writeString($iter645); } } $output->writeListEnd(); @@ -21339,9 +21413,9 @@ class InsertEventRequestData { { $output->writeListBegin(TType::STRING, count($this->filesAddedChecksum)); { - foreach ($this->filesAddedChecksum as $iter639) + foreach ($this->filesAddedChecksum as $iter646) { - $xfer += $output->writeString($iter639); + $xfer += $output->writeString($iter646); } } $output->writeListEnd(); @@ -21570,14 +21644,14 @@ class FireEventRequest { case 5: if ($ftype == TType::LST) { $this->partitionVals = array(); - $_size640 = 0; - $_etype643 = 0; - $xfer += $input->readListBegin($_etype643, $_size640); - for ($_i644 = 0; $_i644 < $_size640; ++$_i644) + $_size647 = 0; + $_etype650 = 0; + $xfer += $input->readListBegin($_etype650, $_size647); + for ($_i651 = 0; $_i651 < $_size647; ++$_i651) { - $elem645 = null; - $xfer += $input->readString($elem645); - $this->partitionVals []= $elem645; + $elem652 = null; + $xfer += $input->readString($elem652); + $this->partitionVals []= $elem652; } $xfer += $input->readListEnd(); } else { @@ -21635,9 +21709,9 @@ class FireEventRequest { { $output->writeListBegin(TType::STRING, count($this->partitionVals)); { - foreach ($this->partitionVals as $iter646) + foreach ($this->partitionVals as $iter653) { - $xfer += $output->writeString($iter646); + $xfer += $output->writeString($iter653); } } $output->writeListEnd(); @@ -21870,18 +21944,18 @@ class GetFileMetadataByExprResult { case 1: if ($ftype == TType::MAP) { $this->metadata = array(); - $_size647 = 0; - $_ktype648 = 0; - $_vtype649 = 0; - $xfer += $input->readMapBegin($_ktype648, $_vtype649, $_size647); - for ($_i651 = 0; $_i651 < $_size647; ++$_i651) + $_size654 = 0; + $_ktype655 = 0; + $_vtype656 = 0; + $xfer += $input->readMapBegin($_ktype655, $_vtype656, $_size654); + for ($_i658 = 0; $_i658 < $_size654; ++$_i658) { - $key652 = 0; - $val653 = new \metastore\MetadataPpdResult(); - $xfer += $input->readI64($key652); - $val653 = new \metastore\MetadataPpdResult(); - $xfer += $val653->read($input); - $this->metadata[$key652] = $val653; + $key659 = 0; + $val660 = new \metastore\MetadataPpdResult(); + $xfer += $input->readI64($key659); + $val660 = new \metastore\MetadataPpdResult(); + $xfer += $val660->read($input); + $this->metadata[$key659] = $val660; } $xfer += $input->readMapEnd(); } else { @@ -21916,10 +21990,10 @@ class GetFileMetadataByExprResult { { $output->writeMapBegin(TType::I64, TType::STRUCT, count($this->metadata)); { - foreach ($this->metadata as $kiter654 => $viter655) + foreach ($this->metadata as $kiter661 => $viter662) { - $xfer += $output->writeI64($kiter654); - $xfer += $viter655->write($output); + $xfer += $output->writeI64($kiter661); + $xfer += $viter662->write($output); } } $output->writeMapEnd(); @@ -22021,14 +22095,14 @@ class GetFileMetadataByExprRequest { case 1: if ($ftype == TType::LST) { $this->fileIds = array(); - $_size656 = 0; - $_etype659 = 0; - $xfer += $input->readListBegin($_etype659, $_size656); - for ($_i660 = 0; $_i660 < $_size656; ++$_i660) + $_size663 = 0; + $_etype666 = 0; + $xfer += $input->readListBegin($_etype666, $_size663); + for ($_i667 = 0; $_i667 < $_size663; ++$_i667) { - $elem661 = null; - $xfer += $input->readI64($elem661); - $this->fileIds []= $elem661; + $elem668 = null; + $xfer += $input->readI64($elem668); + $this->fileIds []= $elem668; } $xfer += $input->readListEnd(); } else { @@ -22077,9 +22151,9 @@ class GetFileMetadataByExprRequest { { $output->writeListBegin(TType::I64, count($this->fileIds)); { - foreach ($this->fileIds as $iter662) + foreach ($this->fileIds as $iter669) { - $xfer += $output->writeI64($iter662); + $xfer += $output->writeI64($iter669); } } $output->writeListEnd(); @@ -22173,17 +22247,17 @@ class GetFileMetadataResult { case 1: if ($ftype == TType::MAP) { $this->metadata = array(); - $_size663 = 0; - $_ktype664 = 0; - $_vtype665 = 0; - $xfer += $input->readMapBegin($_ktype664, $_vtype665, $_size663); - for ($_i667 = 0; $_i667 < $_size663; ++$_i667) + $_size670 = 0; + $_ktype671 = 0; + $_vtype672 = 0; + $xfer += $input->readMapBegin($_ktype671, $_vtype672, $_size670); + for ($_i674 = 0; $_i674 < $_size670; ++$_i674) { - $key668 = 0; - $val669 = ''; - $xfer += $input->readI64($key668); - $xfer += $input->readString($val669); - $this->metadata[$key668] = $val669; + $key675 = 0; + $val676 = ''; + $xfer += $input->readI64($key675); + $xfer += $input->readString($val676); + $this->metadata[$key675] = $val676; } $xfer += $input->readMapEnd(); } else { @@ -22218,10 +22292,10 @@ class GetFileMetadataResult { { $output->writeMapBegin(TType::I64, TType::STRING, count($this->metadata)); { - foreach ($this->metadata as $kiter670 => $viter671) + foreach ($this->metadata as $kiter677 => $viter678) { - $xfer += $output->writeI64($kiter670); - $xfer += $output->writeString($viter671); + $xfer += $output->writeI64($kiter677); + $xfer += $output->writeString($viter678); } } $output->writeMapEnd(); @@ -22290,14 +22364,14 @@ class GetFileMetadataRequest { case 1: if ($ftype == TType::LST) { $this->fileIds = array(); - $_size672 = 0; - $_etype675 = 0; - $xfer += $input->readListBegin($_etype675, $_size672); - for ($_i676 = 0; $_i676 < $_size672; ++$_i676) + $_size679 = 0; + $_etype682 = 0; + $xfer += $input->readListBegin($_etype682, $_size679); + for ($_i683 = 0; $_i683 < $_size679; ++$_i683) { - $elem677 = null; - $xfer += $input->readI64($elem677); - $this->fileIds []= $elem677; + $elem684 = null; + $xfer += $input->readI64($elem684); + $this->fileIds []= $elem684; } $xfer += $input->readListEnd(); } else { @@ -22325,9 +22399,9 @@ class GetFileMetadataRequest { { $output->writeListBegin(TType::I64, count($this->fileIds)); { - foreach ($this->fileIds as $iter678) + foreach ($this->fileIds as $iter685) { - $xfer += $output->writeI64($iter678); + $xfer += $output->writeI64($iter685); } } $output->writeListEnd(); @@ -22467,14 +22541,14 @@ class PutFileMetadataRequest { case 1: if ($ftype == TType::LST) { $this->fileIds = array(); - $_size679 = 0; - $_etype682 = 0; - $xfer += $input->readListBegin($_etype682, $_size679); - for ($_i683 = 0; $_i683 < $_size679; ++$_i683) + $_size686 = 0; + $_etype689 = 0; + $xfer += $input->readListBegin($_etype689, $_size686); + for ($_i690 = 0; $_i690 < $_size686; ++$_i690) { - $elem684 = null; - $xfer += $input->readI64($elem684); - $this->fileIds []= $elem684; + $elem691 = null; + $xfer += $input->readI64($elem691); + $this->fileIds []= $elem691; } $xfer += $input->readListEnd(); } else { @@ -22484,14 +22558,14 @@ class PutFileMetadataRequest { case 2: if ($ftype == TType::LST) { $this->metadata = array(); - $_size685 = 0; - $_etype688 = 0; - $xfer += $input->readListBegin($_etype688, $_size685); - for ($_i689 = 0; $_i689 < $_size685; ++$_i689) + $_size692 = 0; + $_etype695 = 0; + $xfer += $input->readListBegin($_etype695, $_size692); + for ($_i696 = 0; $_i696 < $_size692; ++$_i696) { - $elem690 = null; - $xfer += $input->readString($elem690); - $this->metadata []= $elem690; + $elem697 = null; + $xfer += $input->readString($elem697); + $this->metadata []= $elem697; } $xfer += $input->readListEnd(); } else { @@ -22526,9 +22600,9 @@ class PutFileMetadataRequest { { $output->writeListBegin(TType::I64, count($this->fileIds)); { - foreach ($this->fileIds as $iter691) + foreach ($this->fileIds as $iter698) { - $xfer += $output->writeI64($iter691); + $xfer += $output->writeI64($iter698); } } $output->writeListEnd(); @@ -22543,9 +22617,9 @@ class PutFileMetadataRequest { { $output->writeListBegin(TType::STRING, count($this->metadata)); { - foreach ($this->metadata as $iter692) + foreach ($this->metadata as $iter699) { - $xfer += $output->writeString($iter692); + $xfer += $output->writeString($iter699); } } $output->writeListEnd(); @@ -22664,14 +22738,14 @@ class ClearFileMetadataRequest { case 1: if ($ftype == TType::LST) { $this->fileIds = array(); - $_size693 = 0; - $_etype696 = 0; - $xfer += $input->readListBegin($_etype696, $_size693); - for ($_i697 = 0; $_i697 < $_size693; ++$_i697) + $_size700 = 0; + $_etype703 = 0; + $xfer += $input->readListBegin($_etype703, $_size700); + for ($_i704 = 0; $_i704 < $_size700; ++$_i704) { - $elem698 = null; - $xfer += $input->readI64($elem698); - $this->fileIds []= $elem698; + $elem705 = null; + $xfer += $input->readI64($elem705); + $this->fileIds []= $elem705; } $xfer += $input->readListEnd(); } else { @@ -22699,9 +22773,9 @@ class ClearFileMetadataRequest { { $output->writeListBegin(TType::I64, count($this->fileIds)); { - foreach ($this->fileIds as $iter699) + foreach ($this->fileIds as $iter706) { - $xfer += $output->writeI64($iter699); + $xfer += $output->writeI64($iter706); } } $output->writeListEnd(); @@ -22985,15 +23059,15 @@ class GetAllFunctionsResponse { case 1: if ($ftype == TType::LST) { $this->functions = array(); - $_size700 = 0; - $_etype703 = 0; - $xfer += $input->readListBegin($_etype703, $_size700); - for ($_i704 = 0; $_i704 < $_size700; ++$_i704) + $_size707 = 0; + $_etype710 = 0; + $xfer += $input->readListBegin($_etype710, $_size707); + for ($_i711 = 0; $_i711 < $_size707; ++$_i711) { - $elem705 = null; - $elem705 = new \metastore\Function(); - $xfer += $elem705->read($input); - $this->functions []= $elem705; + $elem712 = null; + $elem712 = new \metastore\Function(); + $xfer += $elem712->read($input); + $this->functions []= $elem712; } $xfer += $input->readListEnd(); } else { @@ -23021,9 +23095,9 @@ class GetAllFunctionsResponse { { $output->writeListBegin(TType::STRUCT, count($this->functions)); { - foreach ($this->functions as $iter706) + foreach ($this->functions as $iter713) { - $xfer += $iter706->write($output); + $xfer += $iter713->write($output); } } $output->writeListEnd(); @@ -23087,14 +23161,14 @@ class ClientCapabilities { case 1: if ($ftype == TType::LST) { $this->values = array(); - $_size707 = 0; - $_etype710 = 0; - $xfer += $input->readListBegin($_etype710, $_size707); - for ($_i711 = 0; $_i711 < $_size707; ++$_i711) + $_size714 = 0; + $_etype717 = 0; + $xfer += $input->readListBegin($_etype717, $_size714); + for ($_i718 = 0; $_i718 < $_size714; ++$_i718) { - $elem712 = null; - $xfer += $input->readI32($elem712); - $this->values []= $elem712; + $elem719 = null; + $xfer += $input->readI32($elem719); + $this->values []= $elem719; } $xfer += $input->readListEnd(); } else { @@ -23122,9 +23196,9 @@ class ClientCapabilities { { $output->writeListBegin(TType::I32, count($this->values)); { - foreach ($this->values as $iter713) + foreach ($this->values as $iter720) { - $xfer += $output->writeI32($iter713); + $xfer += $output->writeI32($iter720); } } $output->writeListEnd(); @@ -23458,14 +23532,14 @@ class GetTablesRequest { case 2: if ($ftype == TType::LST) { $this->tblNames = array(); - $_size714 = 0; - $_etype717 = 0; - $xfer += $input->readListBegin($_etype717, $_size714); - for ($_i718 = 0; $_i718 < $_size714; ++$_i718) + $_size721 = 0; + $_etype724 = 0; + $xfer += $input->readListBegin($_etype724, $_size721); + for ($_i725 = 0; $_i725 < $_size721; ++$_i725) { - $elem719 = null; - $xfer += $input->readString($elem719); - $this->tblNames []= $elem719; + $elem726 = null; + $xfer += $input->readString($elem726); + $this->tblNames []= $elem726; } $xfer += $input->readListEnd(); } else { @@ -23513,9 +23587,9 @@ class GetTablesRequest { { $output->writeListBegin(TType::STRING, count($this->tblNames)); { - foreach ($this->tblNames as $iter720) + foreach ($this->tblNames as $iter727) { - $xfer += $output->writeString($iter720); + $xfer += $output->writeString($iter727); } } $output->writeListEnd(); @@ -23593,15 +23667,15 @@ class GetTablesResult { case 1: if ($ftype == TType::LST) { $this->tables = array(); - $_size721 = 0; - $_etype724 = 0; - $xfer += $input->readListBegin($_etype724, $_size721); - for ($_i725 = 0; $_i725 < $_size721; ++$_i725) + $_size728 = 0; + $_etype731 = 0; + $xfer += $input->readListBegin($_etype731, $_size728); + for ($_i732 = 0; $_i732 < $_size728; ++$_i732) { - $elem726 = null; - $elem726 = new \metastore\Table(); - $xfer += $elem726->read($input); - $this->tables []= $elem726; + $elem733 = null; + $elem733 = new \metastore\Table(); + $xfer += $elem733->read($input); + $this->tables []= $elem733; } $xfer += $input->readListEnd(); } else { @@ -23629,9 +23703,9 @@ class GetTablesResult { { $output->writeListBegin(TType::STRUCT, count($this->tables)); { - foreach ($this->tables as $iter727) + foreach ($this->tables as $iter734) { - $xfer += $iter727->write($output); + $xfer += $iter734->write($output); } } $output->writeListEnd(); @@ -24043,17 +24117,17 @@ class Materialization { case 1: if ($ftype == TType::SET) { $this->tablesUsed = array(); - $_size728 = 0; - $_etype731 = 0; - $xfer += $input->readSetBegin($_etype731, $_size728); - for ($_i732 = 0; $_i732 < $_size728; ++$_i732) + $_size735 = 0; + $_etype738 = 0; + $xfer += $input->readSetBegin($_etype738, $_size735); + for ($_i739 = 0; $_i739 < $_size735; ++$_i739) { - $elem733 = null; - $xfer += $input->readString($elem733); - if (is_scalar($elem733)) { - $this->tablesUsed[$elem733] = true; + $elem740 = null; + $xfer += $input->readString($elem740); + if (is_scalar($elem740)) { + $this->tablesUsed[$elem740] = true; } else { - $this->tablesUsed []= $elem733; + $this->tablesUsed []= $elem740; } } $xfer += $input->readSetEnd(); @@ -24103,12 +24177,12 @@ class Materialization { { $output->writeSetBegin(TType::STRING, count($this->tablesUsed)); { - foreach ($this->tablesUsed as $iter734 => $iter735) + foreach ($this->tablesUsed as $iter741 => $iter742) { - if (is_scalar($iter735)) { - $xfer += $output->writeString($iter734); + if (is_scalar($iter742)) { + $xfer += $output->writeString($iter741); } else { - $xfer += $output->writeString($iter735); + $xfer += $output->writeString($iter742); } } } @@ -25380,15 +25454,15 @@ class WMFullResourcePlan { case 2: if ($ftype == TType::LST) { $this->pools = array(); - $_size736 = 0; - $_etype739 = 0; - $xfer += $input->readListBegin($_etype739, $_size736); - for ($_i740 = 0; $_i740 < $_size736; ++$_i740) + $_size743 = 0; + $_etype746 = 0; + $xfer += $input->readListBegin($_etype746, $_size743); + for ($_i747 = 0; $_i747 < $_size743; ++$_i747) { - $elem741 = null; - $elem741 = new \metastore\WMPool(); - $xfer += $elem741->read($input); - $this->pools []= $elem741; + $elem748 = null; + $elem748 = new \metastore\WMPool(); + $xfer += $elem748->read($input); + $this->pools []= $elem748; } $xfer += $input->readListEnd(); } else { @@ -25398,15 +25472,15 @@ class WMFullResourcePlan { case 3: if ($ftype == TType::LST) { $this->mappings = array(); - $_size742 = 0; - $_etype745 = 0; - $xfer += $input->readListBegin($_etype745, $_size742); - for ($_i746 = 0; $_i746 < $_size742; ++$_i746) + $_size749 = 0; + $_etype752 = 0; + $xfer += $input->readListBegin($_etype752, $_size749); + for ($_i753 = 0; $_i753 < $_size749; ++$_i753) { - $elem747 = null; - $elem747 = new \metastore\WMMapping(); - $xfer += $elem747->read($input); - $this->mappings []= $elem747; + $elem754 = null; + $elem754 = new \metastore\WMMapping(); + $xfer += $elem754->read($input); + $this->mappings []= $elem754; } $xfer += $input->readListEnd(); } else { @@ -25416,15 +25490,15 @@ class WMFullResourcePlan { case 4: if ($ftype == TType::LST) { $this->triggers = array(); - $_size748 = 0; - $_etype751 = 0; - $xfer += $input->readListBegin($_etype751, $_size748); - for ($_i752 = 0; $_i752 < $_size748; ++$_i752) + $_size755 = 0; + $_etype758 = 0; + $xfer += $input->readListBegin($_etype758, $_size755); + for ($_i759 = 0; $_i759 < $_size755; ++$_i759) { - $elem753 = null; - $elem753 = new \metastore\WMTrigger(); - $xfer += $elem753->read($input); - $this->triggers []= $elem753; + $elem760 = null; + $elem760 = new \metastore\WMTrigger(); + $xfer += $elem760->read($input); + $this->triggers []= $elem760; } $xfer += $input->readListEnd(); } else { @@ -25434,15 +25508,15 @@ class WMFullResourcePlan { case 5: if ($ftype == TType::LST) { $this->poolTriggers = array(); - $_size754 = 0; - $_etype757 = 0; - $xfer += $input->readListBegin($_etype757, $_size754); - for ($_i758 = 0; $_i758 < $_size754; ++$_i758) + $_size761 = 0; + $_etype764 = 0; + $xfer += $input->readListBegin($_etype764, $_size761); + for ($_i765 = 0; $_i765 < $_size761; ++$_i765) { - $elem759 = null; - $elem759 = new \metastore\WMPoolTrigger(); - $xfer += $elem759->read($input); - $this->poolTriggers []= $elem759; + $elem766 = null; + $elem766 = new \metastore\WMPoolTrigger(); + $xfer += $elem766->read($input); + $this->poolTriggers []= $elem766; } $xfer += $input->readListEnd(); } else { @@ -25478,9 +25552,9 @@ class WMFullResourcePlan { { $output->writeListBegin(TType::STRUCT, count($this->pools)); { - foreach ($this->pools as $iter760) + foreach ($this->pools as $iter767) { - $xfer += $iter760->write($output); + $xfer += $iter767->write($output); } } $output->writeListEnd(); @@ -25495,9 +25569,9 @@ class WMFullResourcePlan { { $output->writeListBegin(TType::STRUCT, count($this->mappings)); { - foreach ($this->mappings as $iter761) + foreach ($this->mappings as $iter768) { - $xfer += $iter761->write($output); + $xfer += $iter768->write($output); } } $output->writeListEnd(); @@ -25512,9 +25586,9 @@ class WMFullResourcePlan { { $output->writeListBegin(TType::STRUCT, count($this->triggers)); { - foreach ($this->triggers as $iter762) + foreach ($this->triggers as $iter769) { - $xfer += $iter762->write($output); + $xfer += $iter769->write($output); } } $output->writeListEnd(); @@ -25529,9 +25603,9 @@ class WMFullResourcePlan { { $output->writeListBegin(TType::STRUCT, count($this->poolTriggers)); { - foreach ($this->poolTriggers as $iter763) + foreach ($this->poolTriggers as $iter770) { - $xfer += $iter763->write($output); + $xfer += $iter770->write($output); } } $output->writeListEnd(); @@ -26084,15 +26158,15 @@ class WMGetAllResourcePlanResponse { case 1: if ($ftype == TType::LST) { $this->resourcePlans = array(); - $_size764 = 0; - $_etype767 = 0; - $xfer += $input->readListBegin($_etype767, $_size764); - for ($_i768 = 0; $_i768 < $_size764; ++$_i768) + $_size771 = 0; + $_etype774 = 0; + $xfer += $input->readListBegin($_etype774, $_size771); + for ($_i775 = 0; $_i775 < $_size771; ++$_i775) { - $elem769 = null; - $elem769 = new \metastore\WMResourcePlan(); - $xfer += $elem769->read($input); - $this->resourcePlans []= $elem769; + $elem776 = null; + $elem776 = new \metastore\WMResourcePlan(); + $xfer += $elem776->read($input); + $this->resourcePlans []= $elem776; } $xfer += $input->readListEnd(); } else { @@ -26120,9 +26194,9 @@ class WMGetAllResourcePlanResponse { { $output->writeListBegin(TType::STRUCT, count($this->resourcePlans)); { - foreach ($this->resourcePlans as $iter770) + foreach ($this->resourcePlans as $iter777) { - $xfer += $iter770->write($output); + $xfer += $iter777->write($output); } } $output->writeListEnd(); @@ -26528,14 +26602,14 @@ class WMValidateResourcePlanResponse { case 1: if ($ftype == TType::LST) { $this->errors = array(); - $_size771 = 0; - $_etype774 = 0; - $xfer += $input->readListBegin($_etype774, $_size771); - for ($_i775 = 0; $_i775 < $_size771; ++$_i775) + $_size778 = 0; + $_etype781 = 0; + $xfer += $input->readListBegin($_etype781, $_size778); + for ($_i782 = 0; $_i782 < $_size778; ++$_i782) { - $elem776 = null; - $xfer += $input->readString($elem776); - $this->errors []= $elem776; + $elem783 = null; + $xfer += $input->readString($elem783); + $this->errors []= $elem783; } $xfer += $input->readListEnd(); } else { @@ -26545,14 +26619,14 @@ class WMValidateResourcePlanResponse { case 2: if ($ftype == TType::LST) { $this->warnings = array(); - $_size777 = 0; - $_etype780 = 0; - $xfer += $input->readListBegin($_etype780, $_size777); - for ($_i781 = 0; $_i781 < $_size777; ++$_i781) + $_size784 = 0; + $_etype787 = 0; + $xfer += $input->readListBegin($_etype787, $_size784); + for ($_i788 = 0; $_i788 < $_size784; ++$_i788) { - $elem782 = null; - $xfer += $input->readString($elem782); - $this->warnings []= $elem782; + $elem789 = null; + $xfer += $input->readString($elem789); + $this->warnings []= $elem789; } $xfer += $input->readListEnd(); } else { @@ -26580,9 +26654,9 @@ class WMValidateResourcePlanResponse { { $output->writeListBegin(TType::STRING, count($this->errors)); { - foreach ($this->errors as $iter783) + foreach ($this->errors as $iter790) { - $xfer += $output->writeString($iter783); + $xfer += $output->writeString($iter790); } } $output->writeListEnd(); @@ -26597,9 +26671,9 @@ class WMValidateResourcePlanResponse { { $output->writeListBegin(TType::STRING, count($this->warnings)); { - foreach ($this->warnings as $iter784) + foreach ($this->warnings as $iter791) { - $xfer += $output->writeString($iter784); + $xfer += $output->writeString($iter791); } } $output->writeListEnd(); @@ -27272,15 +27346,15 @@ class WMGetTriggersForResourePlanResponse { case 1: if ($ftype == TType::LST) { $this->triggers = array(); - $_size785 = 0; - $_etype788 = 0; - $xfer += $input->readListBegin($_etype788, $_size785); - for ($_i789 = 0; $_i789 < $_size785; ++$_i789) + $_size792 = 0; + $_etype795 = 0; + $xfer += $input->readListBegin($_etype795, $_size792); + for ($_i796 = 0; $_i796 < $_size792; ++$_i796) { - $elem790 = null; - $elem790 = new \metastore\WMTrigger(); - $xfer += $elem790->read($input); - $this->triggers []= $elem790; + $elem797 = null; + $elem797 = new \metastore\WMTrigger(); + $xfer += $elem797->read($input); + $this->triggers []= $elem797; } $xfer += $input->readListEnd(); } else { @@ -27308,9 +27382,9 @@ class WMGetTriggersForResourePlanResponse { { $output->writeListBegin(TType::STRUCT, count($this->triggers)); { - foreach ($this->triggers as $iter791) + foreach ($this->triggers as $iter798) { - $xfer += $iter791->write($output); + $xfer += $iter798->write($output); } } $output->writeListEnd(); @@ -28894,15 +28968,15 @@ class SchemaVersion { case 4: if ($ftype == TType::LST) { $this->cols = array(); - $_size792 = 0; - $_etype795 = 0; - $xfer += $input->readListBegin($_etype795, $_size792); - for ($_i796 = 0; $_i796 < $_size792; ++$_i796) + $_size799 = 0; + $_etype802 = 0; + $xfer += $input->readListBegin($_etype802, $_size799); + for ($_i803 = 0; $_i803 < $_size799; ++$_i803) { - $elem797 = null; - $elem797 = new \metastore\FieldSchema(); - $xfer += $elem797->read($input); - $this->cols []= $elem797; + $elem804 = null; + $elem804 = new \metastore\FieldSchema(); + $xfer += $elem804->read($input); + $this->cols []= $elem804; } $xfer += $input->readListEnd(); } else { @@ -28991,9 +29065,9 @@ class SchemaVersion { { $output->writeListBegin(TType::STRUCT, count($this->cols)); { - foreach ($this->cols as $iter798) + foreach ($this->cols as $iter805) { - $xfer += $iter798->write($output); + $xfer += $iter805->write($output); } } $output->writeListEnd(); @@ -29315,15 +29389,15 @@ class FindSchemasByColsResp { case 1: if ($ftype == TType::LST) { $this->schemaVersions = array(); - $_size799 = 0; - $_etype802 = 0; - $xfer += $input->readListBegin($_etype802, $_size799); - for ($_i803 = 0; $_i803 < $_size799; ++$_i803) + $_size806 = 0; + $_etype809 = 0; + $xfer += $input->readListBegin($_etype809, $_size806); + for ($_i810 = 0; $_i810 < $_size806; ++$_i810) { - $elem804 = null; - $elem804 = new \metastore\SchemaVersionDescriptor(); - $xfer += $elem804->read($input); - $this->schemaVersions []= $elem804; + $elem811 = null; + $elem811 = new \metastore\SchemaVersionDescriptor(); + $xfer += $elem811->read($input); + $this->schemaVersions []= $elem811; } $xfer += $input->readListEnd(); } else { @@ -29351,9 +29425,9 @@ class FindSchemasByColsResp { { $output->writeListBegin(TType::STRUCT, count($this->schemaVersions)); { - foreach ($this->schemaVersions as $iter805) + foreach ($this->schemaVersions as $iter812) { - $xfer += $iter805->write($output); + $xfer += $iter812->write($output); } } $output->writeListEnd(); diff --git a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py index b0e64d8cef..d241414bc3 100644 --- a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py +++ b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py @@ -15507,10 +15507,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype805, _size802) = iprot.readListBegin() - for _i806 in xrange(_size802): - _elem807 = iprot.readString() - self.success.append(_elem807) + (_etype812, _size809) = iprot.readListBegin() + for _i813 in xrange(_size809): + _elem814 = iprot.readString() + self.success.append(_elem814) iprot.readListEnd() else: iprot.skip(ftype) @@ -15533,8 +15533,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter808 in self.success: - oprot.writeString(iter808) + for iter815 in self.success: + oprot.writeString(iter815) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -15639,10 +15639,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype812, _size809) = iprot.readListBegin() - for _i813 in xrange(_size809): - _elem814 = iprot.readString() - self.success.append(_elem814) + (_etype819, _size816) = iprot.readListBegin() + for _i820 in xrange(_size816): + _elem821 = iprot.readString() + self.success.append(_elem821) iprot.readListEnd() else: iprot.skip(ftype) @@ -15665,8 +15665,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter815 in self.success: - oprot.writeString(iter815) + for iter822 in self.success: + oprot.writeString(iter822) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -16436,12 +16436,12 @@ def read(self, iprot): if fid == 0: if ftype == TType.MAP: self.success = {} - (_ktype817, _vtype818, _size816 ) = iprot.readMapBegin() - for _i820 in xrange(_size816): - _key821 = iprot.readString() - _val822 = Type() - _val822.read(iprot) - self.success[_key821] = _val822 + (_ktype824, _vtype825, _size823 ) = iprot.readMapBegin() + for _i827 in xrange(_size823): + _key828 = iprot.readString() + _val829 = Type() + _val829.read(iprot) + self.success[_key828] = _val829 iprot.readMapEnd() else: iprot.skip(ftype) @@ -16464,9 +16464,9 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.MAP, 0) oprot.writeMapBegin(TType.STRING, TType.STRUCT, len(self.success)) - for kiter823,viter824 in self.success.items(): - oprot.writeString(kiter823) - viter824.write(oprot) + for kiter830,viter831 in self.success.items(): + oprot.writeString(kiter830) + viter831.write(oprot) oprot.writeMapEnd() oprot.writeFieldEnd() if self.o2 is not None: @@ -16609,11 +16609,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype828, _size825) = iprot.readListBegin() - for _i829 in xrange(_size825): - _elem830 = FieldSchema() - _elem830.read(iprot) - self.success.append(_elem830) + (_etype835, _size832) = iprot.readListBegin() + for _i836 in xrange(_size832): + _elem837 = FieldSchema() + _elem837.read(iprot) + self.success.append(_elem837) iprot.readListEnd() else: iprot.skip(ftype) @@ -16648,8 +16648,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter831 in self.success: - iter831.write(oprot) + for iter838 in self.success: + iter838.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -16816,11 +16816,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype835, _size832) = iprot.readListBegin() - for _i836 in xrange(_size832): - _elem837 = FieldSchema() - _elem837.read(iprot) - self.success.append(_elem837) + (_etype842, _size839) = iprot.readListBegin() + for _i843 in xrange(_size839): + _elem844 = FieldSchema() + _elem844.read(iprot) + self.success.append(_elem844) iprot.readListEnd() else: iprot.skip(ftype) @@ -16855,8 +16855,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter838 in self.success: - iter838.write(oprot) + for iter845 in self.success: + iter845.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -17009,11 +17009,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype842, _size839) = iprot.readListBegin() - for _i843 in xrange(_size839): - _elem844 = FieldSchema() - _elem844.read(iprot) - self.success.append(_elem844) + (_etype849, _size846) = iprot.readListBegin() + for _i850 in xrange(_size846): + _elem851 = FieldSchema() + _elem851.read(iprot) + self.success.append(_elem851) iprot.readListEnd() else: iprot.skip(ftype) @@ -17048,8 +17048,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter845 in self.success: - iter845.write(oprot) + for iter852 in self.success: + iter852.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -17216,11 +17216,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype849, _size846) = iprot.readListBegin() - for _i850 in xrange(_size846): - _elem851 = FieldSchema() - _elem851.read(iprot) - self.success.append(_elem851) + (_etype856, _size853) = iprot.readListBegin() + for _i857 in xrange(_size853): + _elem858 = FieldSchema() + _elem858.read(iprot) + self.success.append(_elem858) iprot.readListEnd() else: iprot.skip(ftype) @@ -17255,8 +17255,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter852 in self.success: - iter852.write(oprot) + for iter859 in self.success: + iter859.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -17709,66 +17709,66 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.primaryKeys = [] - (_etype856, _size853) = iprot.readListBegin() - for _i857 in xrange(_size853): - _elem858 = SQLPrimaryKey() - _elem858.read(iprot) - self.primaryKeys.append(_elem858) + (_etype863, _size860) = iprot.readListBegin() + for _i864 in xrange(_size860): + _elem865 = SQLPrimaryKey() + _elem865.read(iprot) + self.primaryKeys.append(_elem865) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.LIST: self.foreignKeys = [] - (_etype862, _size859) = iprot.readListBegin() - for _i863 in xrange(_size859): - _elem864 = SQLForeignKey() - _elem864.read(iprot) - self.foreignKeys.append(_elem864) + (_etype869, _size866) = iprot.readListBegin() + for _i870 in xrange(_size866): + _elem871 = SQLForeignKey() + _elem871.read(iprot) + self.foreignKeys.append(_elem871) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.LIST: self.uniqueConstraints = [] - (_etype868, _size865) = iprot.readListBegin() - for _i869 in xrange(_size865): - _elem870 = SQLUniqueConstraint() - _elem870.read(iprot) - self.uniqueConstraints.append(_elem870) + (_etype875, _size872) = iprot.readListBegin() + for _i876 in xrange(_size872): + _elem877 = SQLUniqueConstraint() + _elem877.read(iprot) + self.uniqueConstraints.append(_elem877) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.LIST: self.notNullConstraints = [] - (_etype874, _size871) = iprot.readListBegin() - for _i875 in xrange(_size871): - _elem876 = SQLNotNullConstraint() - _elem876.read(iprot) - self.notNullConstraints.append(_elem876) + (_etype881, _size878) = iprot.readListBegin() + for _i882 in xrange(_size878): + _elem883 = SQLNotNullConstraint() + _elem883.read(iprot) + self.notNullConstraints.append(_elem883) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.LIST: self.defaultConstraints = [] - (_etype880, _size877) = iprot.readListBegin() - for _i881 in xrange(_size877): - _elem882 = SQLDefaultConstraint() - _elem882.read(iprot) - self.defaultConstraints.append(_elem882) + (_etype887, _size884) = iprot.readListBegin() + for _i888 in xrange(_size884): + _elem889 = SQLDefaultConstraint() + _elem889.read(iprot) + self.defaultConstraints.append(_elem889) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.LIST: self.checkConstraints = [] - (_etype886, _size883) = iprot.readListBegin() - for _i887 in xrange(_size883): - _elem888 = SQLCheckConstraint() - _elem888.read(iprot) - self.checkConstraints.append(_elem888) + (_etype893, _size890) = iprot.readListBegin() + for _i894 in xrange(_size890): + _elem895 = SQLCheckConstraint() + _elem895.read(iprot) + self.checkConstraints.append(_elem895) iprot.readListEnd() else: iprot.skip(ftype) @@ -17789,43 +17789,43 @@ def write(self, oprot): if self.primaryKeys is not None: oprot.writeFieldBegin('primaryKeys', TType.LIST, 2) oprot.writeListBegin(TType.STRUCT, len(self.primaryKeys)) - for iter889 in self.primaryKeys: - iter889.write(oprot) + for iter896 in self.primaryKeys: + iter896.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.foreignKeys is not None: oprot.writeFieldBegin('foreignKeys', TType.LIST, 3) oprot.writeListBegin(TType.STRUCT, len(self.foreignKeys)) - for iter890 in self.foreignKeys: - iter890.write(oprot) + for iter897 in self.foreignKeys: + iter897.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.uniqueConstraints is not None: oprot.writeFieldBegin('uniqueConstraints', TType.LIST, 4) oprot.writeListBegin(TType.STRUCT, len(self.uniqueConstraints)) - for iter891 in self.uniqueConstraints: - iter891.write(oprot) + for iter898 in self.uniqueConstraints: + iter898.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.notNullConstraints is not None: oprot.writeFieldBegin('notNullConstraints', TType.LIST, 5) oprot.writeListBegin(TType.STRUCT, len(self.notNullConstraints)) - for iter892 in self.notNullConstraints: - iter892.write(oprot) + for iter899 in self.notNullConstraints: + iter899.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.defaultConstraints is not None: oprot.writeFieldBegin('defaultConstraints', TType.LIST, 6) oprot.writeListBegin(TType.STRUCT, len(self.defaultConstraints)) - for iter893 in self.defaultConstraints: - iter893.write(oprot) + for iter900 in self.defaultConstraints: + iter900.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.checkConstraints is not None: oprot.writeFieldBegin('checkConstraints', TType.LIST, 7) oprot.writeListBegin(TType.STRUCT, len(self.checkConstraints)) - for iter894 in self.checkConstraints: - iter894.write(oprot) + for iter901 in self.checkConstraints: + iter901.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -19385,10 +19385,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.partNames = [] - (_etype898, _size895) = iprot.readListBegin() - for _i899 in xrange(_size895): - _elem900 = iprot.readString() - self.partNames.append(_elem900) + (_etype905, _size902) = iprot.readListBegin() + for _i906 in xrange(_size902): + _elem907 = iprot.readString() + self.partNames.append(_elem907) iprot.readListEnd() else: iprot.skip(ftype) @@ -19413,8 +19413,8 @@ def write(self, oprot): if self.partNames is not None: oprot.writeFieldBegin('partNames', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.partNames)) - for iter901 in self.partNames: - oprot.writeString(iter901) + for iter908 in self.partNames: + oprot.writeString(iter908) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -19614,10 +19614,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype905, _size902) = iprot.readListBegin() - for _i906 in xrange(_size902): - _elem907 = iprot.readString() - self.success.append(_elem907) + (_etype912, _size909) = iprot.readListBegin() + for _i913 in xrange(_size909): + _elem914 = iprot.readString() + self.success.append(_elem914) iprot.readListEnd() else: iprot.skip(ftype) @@ -19640,8 +19640,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter908 in self.success: - oprot.writeString(iter908) + for iter915 in self.success: + oprot.writeString(iter915) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -19791,10 +19791,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype912, _size909) = iprot.readListBegin() - for _i913 in xrange(_size909): - _elem914 = iprot.readString() - self.success.append(_elem914) + (_etype919, _size916) = iprot.readListBegin() + for _i920 in xrange(_size916): + _elem921 = iprot.readString() + self.success.append(_elem921) iprot.readListEnd() else: iprot.skip(ftype) @@ -19817,8 +19817,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter915 in self.success: - oprot.writeString(iter915) + for iter922 in self.success: + oprot.writeString(iter922) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -19942,10 +19942,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype919, _size916) = iprot.readListBegin() - for _i920 in xrange(_size916): - _elem921 = iprot.readString() - self.success.append(_elem921) + (_etype926, _size923) = iprot.readListBegin() + for _i927 in xrange(_size923): + _elem928 = iprot.readString() + self.success.append(_elem928) iprot.readListEnd() else: iprot.skip(ftype) @@ -19968,8 +19968,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter922 in self.success: - oprot.writeString(iter922) + for iter929 in self.success: + oprot.writeString(iter929) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -20042,10 +20042,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.tbl_types = [] - (_etype926, _size923) = iprot.readListBegin() - for _i927 in xrange(_size923): - _elem928 = iprot.readString() - self.tbl_types.append(_elem928) + (_etype933, _size930) = iprot.readListBegin() + for _i934 in xrange(_size930): + _elem935 = iprot.readString() + self.tbl_types.append(_elem935) iprot.readListEnd() else: iprot.skip(ftype) @@ -20070,8 +20070,8 @@ def write(self, oprot): if self.tbl_types is not None: oprot.writeFieldBegin('tbl_types', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.tbl_types)) - for iter929 in self.tbl_types: - oprot.writeString(iter929) + for iter936 in self.tbl_types: + oprot.writeString(iter936) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -20127,11 +20127,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype933, _size930) = iprot.readListBegin() - for _i934 in xrange(_size930): - _elem935 = TableMeta() - _elem935.read(iprot) - self.success.append(_elem935) + (_etype940, _size937) = iprot.readListBegin() + for _i941 in xrange(_size937): + _elem942 = TableMeta() + _elem942.read(iprot) + self.success.append(_elem942) iprot.readListEnd() else: iprot.skip(ftype) @@ -20154,8 +20154,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter936 in self.success: - iter936.write(oprot) + for iter943 in self.success: + iter943.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -20279,10 +20279,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype940, _size937) = iprot.readListBegin() - for _i941 in xrange(_size937): - _elem942 = iprot.readString() - self.success.append(_elem942) + (_etype947, _size944) = iprot.readListBegin() + for _i948 in xrange(_size944): + _elem949 = iprot.readString() + self.success.append(_elem949) iprot.readListEnd() else: iprot.skip(ftype) @@ -20305,8 +20305,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter943 in self.success: - oprot.writeString(iter943) + for iter950 in self.success: + oprot.writeString(iter950) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -20542,10 +20542,10 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.tbl_names = [] - (_etype947, _size944) = iprot.readListBegin() - for _i948 in xrange(_size944): - _elem949 = iprot.readString() - self.tbl_names.append(_elem949) + (_etype954, _size951) = iprot.readListBegin() + for _i955 in xrange(_size951): + _elem956 = iprot.readString() + self.tbl_names.append(_elem956) iprot.readListEnd() else: iprot.skip(ftype) @@ -20566,8 +20566,8 @@ def write(self, oprot): if self.tbl_names is not None: oprot.writeFieldBegin('tbl_names', TType.LIST, 2) oprot.writeListBegin(TType.STRING, len(self.tbl_names)) - for iter950 in self.tbl_names: - oprot.writeString(iter950) + for iter957 in self.tbl_names: + oprot.writeString(iter957) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -20619,11 +20619,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype954, _size951) = iprot.readListBegin() - for _i955 in xrange(_size951): - _elem956 = Table() - _elem956.read(iprot) - self.success.append(_elem956) + (_etype961, _size958) = iprot.readListBegin() + for _i962 in xrange(_size958): + _elem963 = Table() + _elem963.read(iprot) + self.success.append(_elem963) iprot.readListEnd() else: iprot.skip(ftype) @@ -20640,8 +20640,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter957 in self.success: - iter957.write(oprot) + for iter964 in self.success: + iter964.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -21033,10 +21033,10 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.tbl_names = [] - (_etype961, _size958) = iprot.readListBegin() - for _i962 in xrange(_size958): - _elem963 = iprot.readString() - self.tbl_names.append(_elem963) + (_etype968, _size965) = iprot.readListBegin() + for _i969 in xrange(_size965): + _elem970 = iprot.readString() + self.tbl_names.append(_elem970) iprot.readListEnd() else: iprot.skip(ftype) @@ -21057,8 +21057,8 @@ def write(self, oprot): if self.tbl_names is not None: oprot.writeFieldBegin('tbl_names', TType.LIST, 2) oprot.writeListBegin(TType.STRING, len(self.tbl_names)) - for iter964 in self.tbl_names: - oprot.writeString(iter964) + for iter971 in self.tbl_names: + oprot.writeString(iter971) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -21119,12 +21119,12 @@ def read(self, iprot): if fid == 0: if ftype == TType.MAP: self.success = {} - (_ktype966, _vtype967, _size965 ) = iprot.readMapBegin() - for _i969 in xrange(_size965): - _key970 = iprot.readString() - _val971 = Materialization() - _val971.read(iprot) - self.success[_key970] = _val971 + (_ktype973, _vtype974, _size972 ) = iprot.readMapBegin() + for _i976 in xrange(_size972): + _key977 = iprot.readString() + _val978 = Materialization() + _val978.read(iprot) + self.success[_key977] = _val978 iprot.readMapEnd() else: iprot.skip(ftype) @@ -21159,9 +21159,9 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.MAP, 0) oprot.writeMapBegin(TType.STRING, TType.STRUCT, len(self.success)) - for kiter972,viter973 in self.success.items(): - oprot.writeString(kiter972) - viter973.write(oprot) + for kiter979,viter980 in self.success.items(): + oprot.writeString(kiter979) + viter980.write(oprot) oprot.writeMapEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -21526,10 +21526,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype977, _size974) = iprot.readListBegin() - for _i978 in xrange(_size974): - _elem979 = iprot.readString() - self.success.append(_elem979) + (_etype984, _size981) = iprot.readListBegin() + for _i985 in xrange(_size981): + _elem986 = iprot.readString() + self.success.append(_elem986) iprot.readListEnd() else: iprot.skip(ftype) @@ -21564,8 +21564,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter980 in self.success: - oprot.writeString(iter980) + for iter987 in self.success: + oprot.writeString(iter987) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -22535,11 +22535,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.new_parts = [] - (_etype984, _size981) = iprot.readListBegin() - for _i985 in xrange(_size981): - _elem986 = Partition() - _elem986.read(iprot) - self.new_parts.append(_elem986) + (_etype991, _size988) = iprot.readListBegin() + for _i992 in xrange(_size988): + _elem993 = Partition() + _elem993.read(iprot) + self.new_parts.append(_elem993) iprot.readListEnd() else: iprot.skip(ftype) @@ -22556,8 +22556,8 @@ def write(self, oprot): if self.new_parts is not None: oprot.writeFieldBegin('new_parts', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.new_parts)) - for iter987 in self.new_parts: - iter987.write(oprot) + for iter994 in self.new_parts: + iter994.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -22715,11 +22715,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.new_parts = [] - (_etype991, _size988) = iprot.readListBegin() - for _i992 in xrange(_size988): - _elem993 = PartitionSpec() - _elem993.read(iprot) - self.new_parts.append(_elem993) + (_etype998, _size995) = iprot.readListBegin() + for _i999 in xrange(_size995): + _elem1000 = PartitionSpec() + _elem1000.read(iprot) + self.new_parts.append(_elem1000) iprot.readListEnd() else: iprot.skip(ftype) @@ -22736,8 +22736,8 @@ def write(self, oprot): if self.new_parts is not None: oprot.writeFieldBegin('new_parts', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.new_parts)) - for iter994 in self.new_parts: - iter994.write(oprot) + for iter1001 in self.new_parts: + iter1001.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -22911,10 +22911,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype998, _size995) = iprot.readListBegin() - for _i999 in xrange(_size995): - _elem1000 = iprot.readString() - self.part_vals.append(_elem1000) + (_etype1005, _size1002) = iprot.readListBegin() + for _i1006 in xrange(_size1002): + _elem1007 = iprot.readString() + self.part_vals.append(_elem1007) iprot.readListEnd() else: iprot.skip(ftype) @@ -22939,8 +22939,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1001 in self.part_vals: - oprot.writeString(iter1001) + for iter1008 in self.part_vals: + oprot.writeString(iter1008) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -23293,10 +23293,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1005, _size1002) = iprot.readListBegin() - for _i1006 in xrange(_size1002): - _elem1007 = iprot.readString() - self.part_vals.append(_elem1007) + (_etype1012, _size1009) = iprot.readListBegin() + for _i1013 in xrange(_size1009): + _elem1014 = iprot.readString() + self.part_vals.append(_elem1014) iprot.readListEnd() else: iprot.skip(ftype) @@ -23327,8 +23327,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1008 in self.part_vals: - oprot.writeString(iter1008) + for iter1015 in self.part_vals: + oprot.writeString(iter1015) oprot.writeListEnd() oprot.writeFieldEnd() if self.environment_context is not None: @@ -23923,10 +23923,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1012, _size1009) = iprot.readListBegin() - for _i1013 in xrange(_size1009): - _elem1014 = iprot.readString() - self.part_vals.append(_elem1014) + (_etype1019, _size1016) = iprot.readListBegin() + for _i1020 in xrange(_size1016): + _elem1021 = iprot.readString() + self.part_vals.append(_elem1021) iprot.readListEnd() else: iprot.skip(ftype) @@ -23956,8 +23956,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1015 in self.part_vals: - oprot.writeString(iter1015) + for iter1022 in self.part_vals: + oprot.writeString(iter1022) oprot.writeListEnd() oprot.writeFieldEnd() if self.deleteData is not None: @@ -24130,10 +24130,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1019, _size1016) = iprot.readListBegin() - for _i1020 in xrange(_size1016): - _elem1021 = iprot.readString() - self.part_vals.append(_elem1021) + (_etype1026, _size1023) = iprot.readListBegin() + for _i1027 in xrange(_size1023): + _elem1028 = iprot.readString() + self.part_vals.append(_elem1028) iprot.readListEnd() else: iprot.skip(ftype) @@ -24169,8 +24169,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1022 in self.part_vals: - oprot.writeString(iter1022) + for iter1029 in self.part_vals: + oprot.writeString(iter1029) oprot.writeListEnd() oprot.writeFieldEnd() if self.deleteData is not None: @@ -24907,10 +24907,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1026, _size1023) = iprot.readListBegin() - for _i1027 in xrange(_size1023): - _elem1028 = iprot.readString() - self.part_vals.append(_elem1028) + (_etype1033, _size1030) = iprot.readListBegin() + for _i1034 in xrange(_size1030): + _elem1035 = iprot.readString() + self.part_vals.append(_elem1035) iprot.readListEnd() else: iprot.skip(ftype) @@ -24935,8 +24935,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1029 in self.part_vals: - oprot.writeString(iter1029) + for iter1036 in self.part_vals: + oprot.writeString(iter1036) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -25095,11 +25095,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.MAP: self.partitionSpecs = {} - (_ktype1031, _vtype1032, _size1030 ) = iprot.readMapBegin() - for _i1034 in xrange(_size1030): - _key1035 = iprot.readString() - _val1036 = iprot.readString() - self.partitionSpecs[_key1035] = _val1036 + (_ktype1038, _vtype1039, _size1037 ) = iprot.readMapBegin() + for _i1041 in xrange(_size1037): + _key1042 = iprot.readString() + _val1043 = iprot.readString() + self.partitionSpecs[_key1042] = _val1043 iprot.readMapEnd() else: iprot.skip(ftype) @@ -25136,9 +25136,9 @@ def write(self, oprot): if self.partitionSpecs is not None: oprot.writeFieldBegin('partitionSpecs', TType.MAP, 1) oprot.writeMapBegin(TType.STRING, TType.STRING, len(self.partitionSpecs)) - for kiter1037,viter1038 in self.partitionSpecs.items(): - oprot.writeString(kiter1037) - oprot.writeString(viter1038) + for kiter1044,viter1045 in self.partitionSpecs.items(): + oprot.writeString(kiter1044) + oprot.writeString(viter1045) oprot.writeMapEnd() oprot.writeFieldEnd() if self.source_db is not None: @@ -25343,11 +25343,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.MAP: self.partitionSpecs = {} - (_ktype1040, _vtype1041, _size1039 ) = iprot.readMapBegin() - for _i1043 in xrange(_size1039): - _key1044 = iprot.readString() - _val1045 = iprot.readString() - self.partitionSpecs[_key1044] = _val1045 + (_ktype1047, _vtype1048, _size1046 ) = iprot.readMapBegin() + for _i1050 in xrange(_size1046): + _key1051 = iprot.readString() + _val1052 = iprot.readString() + self.partitionSpecs[_key1051] = _val1052 iprot.readMapEnd() else: iprot.skip(ftype) @@ -25384,9 +25384,9 @@ def write(self, oprot): if self.partitionSpecs is not None: oprot.writeFieldBegin('partitionSpecs', TType.MAP, 1) oprot.writeMapBegin(TType.STRING, TType.STRING, len(self.partitionSpecs)) - for kiter1046,viter1047 in self.partitionSpecs.items(): - oprot.writeString(kiter1046) - oprot.writeString(viter1047) + for kiter1053,viter1054 in self.partitionSpecs.items(): + oprot.writeString(kiter1053) + oprot.writeString(viter1054) oprot.writeMapEnd() oprot.writeFieldEnd() if self.source_db is not None: @@ -25469,11 +25469,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1051, _size1048) = iprot.readListBegin() - for _i1052 in xrange(_size1048): - _elem1053 = Partition() - _elem1053.read(iprot) - self.success.append(_elem1053) + (_etype1058, _size1055) = iprot.readListBegin() + for _i1059 in xrange(_size1055): + _elem1060 = Partition() + _elem1060.read(iprot) + self.success.append(_elem1060) iprot.readListEnd() else: iprot.skip(ftype) @@ -25514,8 +25514,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1054 in self.success: - iter1054.write(oprot) + for iter1061 in self.success: + iter1061.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -25609,10 +25609,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1058, _size1055) = iprot.readListBegin() - for _i1059 in xrange(_size1055): - _elem1060 = iprot.readString() - self.part_vals.append(_elem1060) + (_etype1065, _size1062) = iprot.readListBegin() + for _i1066 in xrange(_size1062): + _elem1067 = iprot.readString() + self.part_vals.append(_elem1067) iprot.readListEnd() else: iprot.skip(ftype) @@ -25624,10 +25624,10 @@ def read(self, iprot): elif fid == 5: if ftype == TType.LIST: self.group_names = [] - (_etype1064, _size1061) = iprot.readListBegin() - for _i1065 in xrange(_size1061): - _elem1066 = iprot.readString() - self.group_names.append(_elem1066) + (_etype1071, _size1068) = iprot.readListBegin() + for _i1072 in xrange(_size1068): + _elem1073 = iprot.readString() + self.group_names.append(_elem1073) iprot.readListEnd() else: iprot.skip(ftype) @@ -25652,8 +25652,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1067 in self.part_vals: - oprot.writeString(iter1067) + for iter1074 in self.part_vals: + oprot.writeString(iter1074) oprot.writeListEnd() oprot.writeFieldEnd() if self.user_name is not None: @@ -25663,8 +25663,8 @@ def write(self, oprot): if self.group_names is not None: oprot.writeFieldBegin('group_names', TType.LIST, 5) oprot.writeListBegin(TType.STRING, len(self.group_names)) - for iter1068 in self.group_names: - oprot.writeString(iter1068) + for iter1075 in self.group_names: + oprot.writeString(iter1075) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -26093,11 +26093,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1072, _size1069) = iprot.readListBegin() - for _i1073 in xrange(_size1069): - _elem1074 = Partition() - _elem1074.read(iprot) - self.success.append(_elem1074) + (_etype1079, _size1076) = iprot.readListBegin() + for _i1080 in xrange(_size1076): + _elem1081 = Partition() + _elem1081.read(iprot) + self.success.append(_elem1081) iprot.readListEnd() else: iprot.skip(ftype) @@ -26126,8 +26126,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1075 in self.success: - iter1075.write(oprot) + for iter1082 in self.success: + iter1082.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -26221,10 +26221,10 @@ def read(self, iprot): elif fid == 5: if ftype == TType.LIST: self.group_names = [] - (_etype1079, _size1076) = iprot.readListBegin() - for _i1080 in xrange(_size1076): - _elem1081 = iprot.readString() - self.group_names.append(_elem1081) + (_etype1086, _size1083) = iprot.readListBegin() + for _i1087 in xrange(_size1083): + _elem1088 = iprot.readString() + self.group_names.append(_elem1088) iprot.readListEnd() else: iprot.skip(ftype) @@ -26257,8 +26257,8 @@ def write(self, oprot): if self.group_names is not None: oprot.writeFieldBegin('group_names', TType.LIST, 5) oprot.writeListBegin(TType.STRING, len(self.group_names)) - for iter1082 in self.group_names: - oprot.writeString(iter1082) + for iter1089 in self.group_names: + oprot.writeString(iter1089) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -26319,11 +26319,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1086, _size1083) = iprot.readListBegin() - for _i1087 in xrange(_size1083): - _elem1088 = Partition() - _elem1088.read(iprot) - self.success.append(_elem1088) + (_etype1093, _size1090) = iprot.readListBegin() + for _i1094 in xrange(_size1090): + _elem1095 = Partition() + _elem1095.read(iprot) + self.success.append(_elem1095) iprot.readListEnd() else: iprot.skip(ftype) @@ -26352,8 +26352,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1089 in self.success: - iter1089.write(oprot) + for iter1096 in self.success: + iter1096.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -26511,11 +26511,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1093, _size1090) = iprot.readListBegin() - for _i1094 in xrange(_size1090): - _elem1095 = PartitionSpec() - _elem1095.read(iprot) - self.success.append(_elem1095) + (_etype1100, _size1097) = iprot.readListBegin() + for _i1101 in xrange(_size1097): + _elem1102 = PartitionSpec() + _elem1102.read(iprot) + self.success.append(_elem1102) iprot.readListEnd() else: iprot.skip(ftype) @@ -26544,8 +26544,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1096 in self.success: - iter1096.write(oprot) + for iter1103 in self.success: + iter1103.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -26703,10 +26703,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1100, _size1097) = iprot.readListBegin() - for _i1101 in xrange(_size1097): - _elem1102 = iprot.readString() - self.success.append(_elem1102) + (_etype1107, _size1104) = iprot.readListBegin() + for _i1108 in xrange(_size1104): + _elem1109 = iprot.readString() + self.success.append(_elem1109) iprot.readListEnd() else: iprot.skip(ftype) @@ -26735,8 +26735,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1103 in self.success: - oprot.writeString(iter1103) + for iter1110 in self.success: + oprot.writeString(iter1110) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -26976,10 +26976,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1107, _size1104) = iprot.readListBegin() - for _i1108 in xrange(_size1104): - _elem1109 = iprot.readString() - self.part_vals.append(_elem1109) + (_etype1114, _size1111) = iprot.readListBegin() + for _i1115 in xrange(_size1111): + _elem1116 = iprot.readString() + self.part_vals.append(_elem1116) iprot.readListEnd() else: iprot.skip(ftype) @@ -27009,8 +27009,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1110 in self.part_vals: - oprot.writeString(iter1110) + for iter1117 in self.part_vals: + oprot.writeString(iter1117) oprot.writeListEnd() oprot.writeFieldEnd() if self.max_parts is not None: @@ -27074,11 +27074,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1114, _size1111) = iprot.readListBegin() - for _i1115 in xrange(_size1111): - _elem1116 = Partition() - _elem1116.read(iprot) - self.success.append(_elem1116) + (_etype1121, _size1118) = iprot.readListBegin() + for _i1122 in xrange(_size1118): + _elem1123 = Partition() + _elem1123.read(iprot) + self.success.append(_elem1123) iprot.readListEnd() else: iprot.skip(ftype) @@ -27107,8 +27107,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1117 in self.success: - iter1117.write(oprot) + for iter1124 in self.success: + iter1124.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -27195,10 +27195,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1121, _size1118) = iprot.readListBegin() - for _i1122 in xrange(_size1118): - _elem1123 = iprot.readString() - self.part_vals.append(_elem1123) + (_etype1128, _size1125) = iprot.readListBegin() + for _i1129 in xrange(_size1125): + _elem1130 = iprot.readString() + self.part_vals.append(_elem1130) iprot.readListEnd() else: iprot.skip(ftype) @@ -27215,10 +27215,10 @@ def read(self, iprot): elif fid == 6: if ftype == TType.LIST: self.group_names = [] - (_etype1127, _size1124) = iprot.readListBegin() - for _i1128 in xrange(_size1124): - _elem1129 = iprot.readString() - self.group_names.append(_elem1129) + (_etype1134, _size1131) = iprot.readListBegin() + for _i1135 in xrange(_size1131): + _elem1136 = iprot.readString() + self.group_names.append(_elem1136) iprot.readListEnd() else: iprot.skip(ftype) @@ -27243,8 +27243,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1130 in self.part_vals: - oprot.writeString(iter1130) + for iter1137 in self.part_vals: + oprot.writeString(iter1137) oprot.writeListEnd() oprot.writeFieldEnd() if self.max_parts is not None: @@ -27258,8 +27258,8 @@ def write(self, oprot): if self.group_names is not None: oprot.writeFieldBegin('group_names', TType.LIST, 6) oprot.writeListBegin(TType.STRING, len(self.group_names)) - for iter1131 in self.group_names: - oprot.writeString(iter1131) + for iter1138 in self.group_names: + oprot.writeString(iter1138) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -27321,11 +27321,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1135, _size1132) = iprot.readListBegin() - for _i1136 in xrange(_size1132): - _elem1137 = Partition() - _elem1137.read(iprot) - self.success.append(_elem1137) + (_etype1142, _size1139) = iprot.readListBegin() + for _i1143 in xrange(_size1139): + _elem1144 = Partition() + _elem1144.read(iprot) + self.success.append(_elem1144) iprot.readListEnd() else: iprot.skip(ftype) @@ -27354,8 +27354,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1138 in self.success: - iter1138.write(oprot) + for iter1145 in self.success: + iter1145.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -27436,10 +27436,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1142, _size1139) = iprot.readListBegin() - for _i1143 in xrange(_size1139): - _elem1144 = iprot.readString() - self.part_vals.append(_elem1144) + (_etype1149, _size1146) = iprot.readListBegin() + for _i1150 in xrange(_size1146): + _elem1151 = iprot.readString() + self.part_vals.append(_elem1151) iprot.readListEnd() else: iprot.skip(ftype) @@ -27469,8 +27469,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1145 in self.part_vals: - oprot.writeString(iter1145) + for iter1152 in self.part_vals: + oprot.writeString(iter1152) oprot.writeListEnd() oprot.writeFieldEnd() if self.max_parts is not None: @@ -27534,10 +27534,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1149, _size1146) = iprot.readListBegin() - for _i1150 in xrange(_size1146): - _elem1151 = iprot.readString() - self.success.append(_elem1151) + (_etype1156, _size1153) = iprot.readListBegin() + for _i1157 in xrange(_size1153): + _elem1158 = iprot.readString() + self.success.append(_elem1158) iprot.readListEnd() else: iprot.skip(ftype) @@ -27566,8 +27566,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1152 in self.success: - oprot.writeString(iter1152) + for iter1159 in self.success: + oprot.writeString(iter1159) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -27738,11 +27738,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1156, _size1153) = iprot.readListBegin() - for _i1157 in xrange(_size1153): - _elem1158 = Partition() - _elem1158.read(iprot) - self.success.append(_elem1158) + (_etype1163, _size1160) = iprot.readListBegin() + for _i1164 in xrange(_size1160): + _elem1165 = Partition() + _elem1165.read(iprot) + self.success.append(_elem1165) iprot.readListEnd() else: iprot.skip(ftype) @@ -27771,8 +27771,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1159 in self.success: - iter1159.write(oprot) + for iter1166 in self.success: + iter1166.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -27943,11 +27943,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1163, _size1160) = iprot.readListBegin() - for _i1164 in xrange(_size1160): - _elem1165 = PartitionSpec() - _elem1165.read(iprot) - self.success.append(_elem1165) + (_etype1170, _size1167) = iprot.readListBegin() + for _i1171 in xrange(_size1167): + _elem1172 = PartitionSpec() + _elem1172.read(iprot) + self.success.append(_elem1172) iprot.readListEnd() else: iprot.skip(ftype) @@ -27976,8 +27976,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1166 in self.success: - iter1166.write(oprot) + for iter1173 in self.success: + iter1173.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -28397,10 +28397,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.names = [] - (_etype1170, _size1167) = iprot.readListBegin() - for _i1171 in xrange(_size1167): - _elem1172 = iprot.readString() - self.names.append(_elem1172) + (_etype1177, _size1174) = iprot.readListBegin() + for _i1178 in xrange(_size1174): + _elem1179 = iprot.readString() + self.names.append(_elem1179) iprot.readListEnd() else: iprot.skip(ftype) @@ -28425,8 +28425,8 @@ def write(self, oprot): if self.names is not None: oprot.writeFieldBegin('names', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.names)) - for iter1173 in self.names: - oprot.writeString(iter1173) + for iter1180 in self.names: + oprot.writeString(iter1180) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -28485,11 +28485,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1177, _size1174) = iprot.readListBegin() - for _i1178 in xrange(_size1174): - _elem1179 = Partition() - _elem1179.read(iprot) - self.success.append(_elem1179) + (_etype1184, _size1181) = iprot.readListBegin() + for _i1185 in xrange(_size1181): + _elem1186 = Partition() + _elem1186.read(iprot) + self.success.append(_elem1186) iprot.readListEnd() else: iprot.skip(ftype) @@ -28518,8 +28518,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1180 in self.success: - iter1180.write(oprot) + for iter1187 in self.success: + iter1187.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -28769,11 +28769,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.new_parts = [] - (_etype1184, _size1181) = iprot.readListBegin() - for _i1185 in xrange(_size1181): - _elem1186 = Partition() - _elem1186.read(iprot) - self.new_parts.append(_elem1186) + (_etype1191, _size1188) = iprot.readListBegin() + for _i1192 in xrange(_size1188): + _elem1193 = Partition() + _elem1193.read(iprot) + self.new_parts.append(_elem1193) iprot.readListEnd() else: iprot.skip(ftype) @@ -28798,8 +28798,8 @@ def write(self, oprot): if self.new_parts is not None: oprot.writeFieldBegin('new_parts', TType.LIST, 3) oprot.writeListBegin(TType.STRUCT, len(self.new_parts)) - for iter1187 in self.new_parts: - iter1187.write(oprot) + for iter1194 in self.new_parts: + iter1194.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -28952,11 +28952,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.new_parts = [] - (_etype1191, _size1188) = iprot.readListBegin() - for _i1192 in xrange(_size1188): - _elem1193 = Partition() - _elem1193.read(iprot) - self.new_parts.append(_elem1193) + (_etype1198, _size1195) = iprot.readListBegin() + for _i1199 in xrange(_size1195): + _elem1200 = Partition() + _elem1200.read(iprot) + self.new_parts.append(_elem1200) iprot.readListEnd() else: iprot.skip(ftype) @@ -28987,8 +28987,8 @@ def write(self, oprot): if self.new_parts is not None: oprot.writeFieldBegin('new_parts', TType.LIST, 3) oprot.writeListBegin(TType.STRUCT, len(self.new_parts)) - for iter1194 in self.new_parts: - iter1194.write(oprot) + for iter1201 in self.new_parts: + iter1201.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.environment_context is not None: @@ -29332,10 +29332,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1198, _size1195) = iprot.readListBegin() - for _i1199 in xrange(_size1195): - _elem1200 = iprot.readString() - self.part_vals.append(_elem1200) + (_etype1205, _size1202) = iprot.readListBegin() + for _i1206 in xrange(_size1202): + _elem1207 = iprot.readString() + self.part_vals.append(_elem1207) iprot.readListEnd() else: iprot.skip(ftype) @@ -29366,8 +29366,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1201 in self.part_vals: - oprot.writeString(iter1201) + for iter1208 in self.part_vals: + oprot.writeString(iter1208) oprot.writeListEnd() oprot.writeFieldEnd() if self.new_part is not None: @@ -29509,10 +29509,10 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.part_vals = [] - (_etype1205, _size1202) = iprot.readListBegin() - for _i1206 in xrange(_size1202): - _elem1207 = iprot.readString() - self.part_vals.append(_elem1207) + (_etype1212, _size1209) = iprot.readListBegin() + for _i1213 in xrange(_size1209): + _elem1214 = iprot.readString() + self.part_vals.append(_elem1214) iprot.readListEnd() else: iprot.skip(ftype) @@ -29534,8 +29534,8 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.LIST, 1) oprot.writeListBegin(TType.STRING, len(self.part_vals)) - for iter1208 in self.part_vals: - oprot.writeString(iter1208) + for iter1215 in self.part_vals: + oprot.writeString(iter1215) oprot.writeListEnd() oprot.writeFieldEnd() if self.throw_exception is not None: @@ -29893,10 +29893,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1212, _size1209) = iprot.readListBegin() - for _i1213 in xrange(_size1209): - _elem1214 = iprot.readString() - self.success.append(_elem1214) + (_etype1219, _size1216) = iprot.readListBegin() + for _i1220 in xrange(_size1216): + _elem1221 = iprot.readString() + self.success.append(_elem1221) iprot.readListEnd() else: iprot.skip(ftype) @@ -29919,8 +29919,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1215 in self.success: - oprot.writeString(iter1215) + for iter1222 in self.success: + oprot.writeString(iter1222) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -30044,11 +30044,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.MAP: self.success = {} - (_ktype1217, _vtype1218, _size1216 ) = iprot.readMapBegin() - for _i1220 in xrange(_size1216): - _key1221 = iprot.readString() - _val1222 = iprot.readString() - self.success[_key1221] = _val1222 + (_ktype1224, _vtype1225, _size1223 ) = iprot.readMapBegin() + for _i1227 in xrange(_size1223): + _key1228 = iprot.readString() + _val1229 = iprot.readString() + self.success[_key1228] = _val1229 iprot.readMapEnd() else: iprot.skip(ftype) @@ -30071,9 +30071,9 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.MAP, 0) oprot.writeMapBegin(TType.STRING, TType.STRING, len(self.success)) - for kiter1223,viter1224 in self.success.items(): - oprot.writeString(kiter1223) - oprot.writeString(viter1224) + for kiter1230,viter1231 in self.success.items(): + oprot.writeString(kiter1230) + oprot.writeString(viter1231) oprot.writeMapEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -30149,11 +30149,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.MAP: self.part_vals = {} - (_ktype1226, _vtype1227, _size1225 ) = iprot.readMapBegin() - for _i1229 in xrange(_size1225): - _key1230 = iprot.readString() - _val1231 = iprot.readString() - self.part_vals[_key1230] = _val1231 + (_ktype1233, _vtype1234, _size1232 ) = iprot.readMapBegin() + for _i1236 in xrange(_size1232): + _key1237 = iprot.readString() + _val1238 = iprot.readString() + self.part_vals[_key1237] = _val1238 iprot.readMapEnd() else: iprot.skip(ftype) @@ -30183,9 +30183,9 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.MAP, 3) oprot.writeMapBegin(TType.STRING, TType.STRING, len(self.part_vals)) - for kiter1232,viter1233 in self.part_vals.items(): - oprot.writeString(kiter1232) - oprot.writeString(viter1233) + for kiter1239,viter1240 in self.part_vals.items(): + oprot.writeString(kiter1239) + oprot.writeString(viter1240) oprot.writeMapEnd() oprot.writeFieldEnd() if self.eventType is not None: @@ -30399,11 +30399,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.MAP: self.part_vals = {} - (_ktype1235, _vtype1236, _size1234 ) = iprot.readMapBegin() - for _i1238 in xrange(_size1234): - _key1239 = iprot.readString() - _val1240 = iprot.readString() - self.part_vals[_key1239] = _val1240 + (_ktype1242, _vtype1243, _size1241 ) = iprot.readMapBegin() + for _i1245 in xrange(_size1241): + _key1246 = iprot.readString() + _val1247 = iprot.readString() + self.part_vals[_key1246] = _val1247 iprot.readMapEnd() else: iprot.skip(ftype) @@ -30433,9 +30433,9 @@ def write(self, oprot): if self.part_vals is not None: oprot.writeFieldBegin('part_vals', TType.MAP, 3) oprot.writeMapBegin(TType.STRING, TType.STRING, len(self.part_vals)) - for kiter1241,viter1242 in self.part_vals.items(): - oprot.writeString(kiter1241) - oprot.writeString(viter1242) + for kiter1248,viter1249 in self.part_vals.items(): + oprot.writeString(kiter1248) + oprot.writeString(viter1249) oprot.writeMapEnd() oprot.writeFieldEnd() if self.eventType is not None: @@ -34087,10 +34087,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1246, _size1243) = iprot.readListBegin() - for _i1247 in xrange(_size1243): - _elem1248 = iprot.readString() - self.success.append(_elem1248) + (_etype1253, _size1250) = iprot.readListBegin() + for _i1254 in xrange(_size1250): + _elem1255 = iprot.readString() + self.success.append(_elem1255) iprot.readListEnd() else: iprot.skip(ftype) @@ -34113,8 +34113,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1249 in self.success: - oprot.writeString(iter1249) + for iter1256 in self.success: + oprot.writeString(iter1256) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -34802,10 +34802,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1253, _size1250) = iprot.readListBegin() - for _i1254 in xrange(_size1250): - _elem1255 = iprot.readString() - self.success.append(_elem1255) + (_etype1260, _size1257) = iprot.readListBegin() + for _i1261 in xrange(_size1257): + _elem1262 = iprot.readString() + self.success.append(_elem1262) iprot.readListEnd() else: iprot.skip(ftype) @@ -34828,8 +34828,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1256 in self.success: - oprot.writeString(iter1256) + for iter1263 in self.success: + oprot.writeString(iter1263) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -35343,11 +35343,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1260, _size1257) = iprot.readListBegin() - for _i1261 in xrange(_size1257): - _elem1262 = Role() - _elem1262.read(iprot) - self.success.append(_elem1262) + (_etype1267, _size1264) = iprot.readListBegin() + for _i1268 in xrange(_size1264): + _elem1269 = Role() + _elem1269.read(iprot) + self.success.append(_elem1269) iprot.readListEnd() else: iprot.skip(ftype) @@ -35370,8 +35370,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1263 in self.success: - iter1263.write(oprot) + for iter1270 in self.success: + iter1270.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -35880,10 +35880,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.group_names = [] - (_etype1267, _size1264) = iprot.readListBegin() - for _i1268 in xrange(_size1264): - _elem1269 = iprot.readString() - self.group_names.append(_elem1269) + (_etype1274, _size1271) = iprot.readListBegin() + for _i1275 in xrange(_size1271): + _elem1276 = iprot.readString() + self.group_names.append(_elem1276) iprot.readListEnd() else: iprot.skip(ftype) @@ -35908,8 +35908,8 @@ def write(self, oprot): if self.group_names is not None: oprot.writeFieldBegin('group_names', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.group_names)) - for iter1270 in self.group_names: - oprot.writeString(iter1270) + for iter1277 in self.group_names: + oprot.writeString(iter1277) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -36136,11 +36136,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1274, _size1271) = iprot.readListBegin() - for _i1275 in xrange(_size1271): - _elem1276 = HiveObjectPrivilege() - _elem1276.read(iprot) - self.success.append(_elem1276) + (_etype1281, _size1278) = iprot.readListBegin() + for _i1282 in xrange(_size1278): + _elem1283 = HiveObjectPrivilege() + _elem1283.read(iprot) + self.success.append(_elem1283) iprot.readListEnd() else: iprot.skip(ftype) @@ -36163,8 +36163,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1277 in self.success: - iter1277.write(oprot) + for iter1284 in self.success: + iter1284.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -36662,10 +36662,10 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.group_names = [] - (_etype1281, _size1278) = iprot.readListBegin() - for _i1282 in xrange(_size1278): - _elem1283 = iprot.readString() - self.group_names.append(_elem1283) + (_etype1288, _size1285) = iprot.readListBegin() + for _i1289 in xrange(_size1285): + _elem1290 = iprot.readString() + self.group_names.append(_elem1290) iprot.readListEnd() else: iprot.skip(ftype) @@ -36686,8 +36686,8 @@ def write(self, oprot): if self.group_names is not None: oprot.writeFieldBegin('group_names', TType.LIST, 2) oprot.writeListBegin(TType.STRING, len(self.group_names)) - for iter1284 in self.group_names: - oprot.writeString(iter1284) + for iter1291 in self.group_names: + oprot.writeString(iter1291) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -36742,10 +36742,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1288, _size1285) = iprot.readListBegin() - for _i1289 in xrange(_size1285): - _elem1290 = iprot.readString() - self.success.append(_elem1290) + (_etype1295, _size1292) = iprot.readListBegin() + for _i1296 in xrange(_size1292): + _elem1297 = iprot.readString() + self.success.append(_elem1297) iprot.readListEnd() else: iprot.skip(ftype) @@ -36768,8 +36768,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1291 in self.success: - oprot.writeString(iter1291) + for iter1298 in self.success: + oprot.writeString(iter1298) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -37701,10 +37701,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1295, _size1292) = iprot.readListBegin() - for _i1296 in xrange(_size1292): - _elem1297 = iprot.readString() - self.success.append(_elem1297) + (_etype1302, _size1299) = iprot.readListBegin() + for _i1303 in xrange(_size1299): + _elem1304 = iprot.readString() + self.success.append(_elem1304) iprot.readListEnd() else: iprot.skip(ftype) @@ -37721,8 +37721,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1298 in self.success: - oprot.writeString(iter1298) + for iter1305 in self.success: + oprot.writeString(iter1305) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -38249,10 +38249,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1302, _size1299) = iprot.readListBegin() - for _i1303 in xrange(_size1299): - _elem1304 = iprot.readString() - self.success.append(_elem1304) + (_etype1309, _size1306) = iprot.readListBegin() + for _i1310 in xrange(_size1306): + _elem1311 = iprot.readString() + self.success.append(_elem1311) iprot.readListEnd() else: iprot.skip(ftype) @@ -38269,8 +38269,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRING, len(self.success)) - for iter1305 in self.success: - oprot.writeString(iter1305) + for iter1312 in self.success: + oprot.writeString(iter1312) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -46438,11 +46438,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1309, _size1306) = iprot.readListBegin() - for _i1310 in xrange(_size1306): - _elem1311 = SchemaVersion() - _elem1311.read(iprot) - self.success.append(_elem1311) + (_etype1316, _size1313) = iprot.readListBegin() + for _i1317 in xrange(_size1313): + _elem1318 = SchemaVersion() + _elem1318.read(iprot) + self.success.append(_elem1318) iprot.readListEnd() else: iprot.skip(ftype) @@ -46471,8 +46471,8 @@ def write(self, oprot): if self.success is not None: oprot.writeFieldBegin('success', TType.LIST, 0) oprot.writeListBegin(TType.STRUCT, len(self.success)) - for iter1312 in self.success: - iter1312.write(oprot) + for iter1319 in self.success: + iter1319.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: diff --git a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ttypes.py b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ttypes.py index f2f61e0499..9bf9843314 100644 --- a/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ttypes.py +++ b/standalone-metastore/src/gen/thrift/gen-py/hive_metastore/ttypes.py @@ -11834,22 +11834,28 @@ def __ne__(self, other): class AllocateTableWriteIdsRequest: """ Attributes: - - txnIds - dbName - tableName + - txnIds + - replPolicy + - srcTxnToWriteIdList """ thrift_spec = ( None, # 0 - (1, TType.LIST, 'txnIds', (TType.I64,None), None, ), # 1 - (2, TType.STRING, 'dbName', None, None, ), # 2 - (3, TType.STRING, 'tableName', None, None, ), # 3 + (1, TType.STRING, 'dbName', None, None, ), # 1 + (2, TType.STRING, 'tableName', None, None, ), # 2 + (3, TType.LIST, 'txnIds', (TType.I64,None), None, ), # 3 + (4, TType.STRING, 'replPolicy', None, None, ), # 4 + (5, TType.LIST, 'srcTxnToWriteIdList', (TType.STRUCT,(TxnToWriteId, TxnToWriteId.thrift_spec)), None, ), # 5 ) - def __init__(self, txnIds=None, dbName=None, tableName=None,): - self.txnIds = txnIds + def __init__(self, dbName=None, tableName=None, txnIds=None, replPolicy=None, srcTxnToWriteIdList=None,): self.dbName = dbName self.tableName = tableName + self.txnIds = txnIds + self.replPolicy = replPolicy + self.srcTxnToWriteIdList = srcTxnToWriteIdList def read(self, iprot): if iprot.__class__ == TBinaryProtocol.TBinaryProtocolAccelerated and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None and fastbinary is not None: @@ -11861,6 +11867,16 @@ def read(self, iprot): if ftype == TType.STOP: break if fid == 1: + if ftype == TType.STRING: + self.dbName = iprot.readString() + else: + iprot.skip(ftype) + elif fid == 2: + if ftype == TType.STRING: + self.tableName = iprot.readString() + else: + iprot.skip(ftype) + elif fid == 3: if ftype == TType.LIST: self.txnIds = [] (_etype547, _size544) = iprot.readListBegin() @@ -11870,14 +11886,20 @@ def read(self, iprot): iprot.readListEnd() else: iprot.skip(ftype) - elif fid == 2: + elif fid == 4: if ftype == TType.STRING: - self.dbName = iprot.readString() + self.replPolicy = iprot.readString() else: iprot.skip(ftype) - elif fid == 3: - if ftype == TType.STRING: - self.tableName = iprot.readString() + elif fid == 5: + if ftype == TType.LIST: + self.srcTxnToWriteIdList = [] + (_etype553, _size550) = iprot.readListBegin() + for _i554 in xrange(_size550): + _elem555 = TxnToWriteId() + _elem555.read(iprot) + self.srcTxnToWriteIdList.append(_elem555) + iprot.readListEnd() else: iprot.skip(ftype) else: @@ -11890,27 +11912,36 @@ def write(self, oprot): oprot.trans.write(fastbinary.encode_binary(self, (self.__class__, self.thrift_spec))) return oprot.writeStructBegin('AllocateTableWriteIdsRequest') - if self.txnIds is not None: - oprot.writeFieldBegin('txnIds', TType.LIST, 1) - oprot.writeListBegin(TType.I64, len(self.txnIds)) - for iter550 in self.txnIds: - oprot.writeI64(iter550) - oprot.writeListEnd() - oprot.writeFieldEnd() if self.dbName is not None: - oprot.writeFieldBegin('dbName', TType.STRING, 2) + oprot.writeFieldBegin('dbName', TType.STRING, 1) oprot.writeString(self.dbName) oprot.writeFieldEnd() if self.tableName is not None: - oprot.writeFieldBegin('tableName', TType.STRING, 3) + oprot.writeFieldBegin('tableName', TType.STRING, 2) oprot.writeString(self.tableName) oprot.writeFieldEnd() + if self.txnIds is not None: + oprot.writeFieldBegin('txnIds', TType.LIST, 3) + oprot.writeListBegin(TType.I64, len(self.txnIds)) + for iter556 in self.txnIds: + oprot.writeI64(iter556) + oprot.writeListEnd() + oprot.writeFieldEnd() + if self.replPolicy is not None: + oprot.writeFieldBegin('replPolicy', TType.STRING, 4) + oprot.writeString(self.replPolicy) + oprot.writeFieldEnd() + if self.srcTxnToWriteIdList is not None: + oprot.writeFieldBegin('srcTxnToWriteIdList', TType.LIST, 5) + oprot.writeListBegin(TType.STRUCT, len(self.srcTxnToWriteIdList)) + for iter557 in self.srcTxnToWriteIdList: + iter557.write(oprot) + oprot.writeListEnd() + oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() def validate(self): - if self.txnIds is None: - raise TProtocol.TProtocolException(message='Required field txnIds is unset!') if self.dbName is None: raise TProtocol.TProtocolException(message='Required field dbName is unset!') if self.tableName is None: @@ -11920,9 +11951,11 @@ def validate(self): def __hash__(self): value = 17 - value = (value * 31) ^ hash(self.txnIds) value = (value * 31) ^ hash(self.dbName) value = (value * 31) ^ hash(self.tableName) + value = (value * 31) ^ hash(self.txnIds) + value = (value * 31) ^ hash(self.replPolicy) + value = (value * 31) ^ hash(self.srcTxnToWriteIdList) return value def __repr__(self): @@ -12044,11 +12077,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.txnToWriteIds = [] - (_etype554, _size551) = iprot.readListBegin() - for _i555 in xrange(_size551): - _elem556 = TxnToWriteId() - _elem556.read(iprot) - self.txnToWriteIds.append(_elem556) + (_etype561, _size558) = iprot.readListBegin() + for _i562 in xrange(_size558): + _elem563 = TxnToWriteId() + _elem563.read(iprot) + self.txnToWriteIds.append(_elem563) iprot.readListEnd() else: iprot.skip(ftype) @@ -12065,8 +12098,8 @@ def write(self, oprot): if self.txnToWriteIds is not None: oprot.writeFieldBegin('txnToWriteIds', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.txnToWriteIds)) - for iter557 in self.txnToWriteIds: - iter557.write(oprot) + for iter564 in self.txnToWriteIds: + iter564.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -12294,11 +12327,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.component = [] - (_etype561, _size558) = iprot.readListBegin() - for _i562 in xrange(_size558): - _elem563 = LockComponent() - _elem563.read(iprot) - self.component.append(_elem563) + (_etype568, _size565) = iprot.readListBegin() + for _i569 in xrange(_size565): + _elem570 = LockComponent() + _elem570.read(iprot) + self.component.append(_elem570) iprot.readListEnd() else: iprot.skip(ftype) @@ -12335,8 +12368,8 @@ def write(self, oprot): if self.component is not None: oprot.writeFieldBegin('component', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.component)) - for iter564 in self.component: - iter564.write(oprot) + for iter571 in self.component: + iter571.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.txnid is not None: @@ -13034,11 +13067,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.locks = [] - (_etype568, _size565) = iprot.readListBegin() - for _i569 in xrange(_size565): - _elem570 = ShowLocksResponseElement() - _elem570.read(iprot) - self.locks.append(_elem570) + (_etype575, _size572) = iprot.readListBegin() + for _i576 in xrange(_size572): + _elem577 = ShowLocksResponseElement() + _elem577.read(iprot) + self.locks.append(_elem577) iprot.readListEnd() else: iprot.skip(ftype) @@ -13055,8 +13088,8 @@ def write(self, oprot): if self.locks is not None: oprot.writeFieldBegin('locks', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.locks)) - for iter571 in self.locks: - iter571.write(oprot) + for iter578 in self.locks: + iter578.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -13271,20 +13304,20 @@ def read(self, iprot): if fid == 1: if ftype == TType.SET: self.aborted = set() - (_etype575, _size572) = iprot.readSetBegin() - for _i576 in xrange(_size572): - _elem577 = iprot.readI64() - self.aborted.add(_elem577) + (_etype582, _size579) = iprot.readSetBegin() + for _i583 in xrange(_size579): + _elem584 = iprot.readI64() + self.aborted.add(_elem584) iprot.readSetEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.SET: self.nosuch = set() - (_etype581, _size578) = iprot.readSetBegin() - for _i582 in xrange(_size578): - _elem583 = iprot.readI64() - self.nosuch.add(_elem583) + (_etype588, _size585) = iprot.readSetBegin() + for _i589 in xrange(_size585): + _elem590 = iprot.readI64() + self.nosuch.add(_elem590) iprot.readSetEnd() else: iprot.skip(ftype) @@ -13301,15 +13334,15 @@ def write(self, oprot): if self.aborted is not None: oprot.writeFieldBegin('aborted', TType.SET, 1) oprot.writeSetBegin(TType.I64, len(self.aborted)) - for iter584 in self.aborted: - oprot.writeI64(iter584) + for iter591 in self.aborted: + oprot.writeI64(iter591) oprot.writeSetEnd() oprot.writeFieldEnd() if self.nosuch is not None: oprot.writeFieldBegin('nosuch', TType.SET, 2) oprot.writeSetBegin(TType.I64, len(self.nosuch)) - for iter585 in self.nosuch: - oprot.writeI64(iter585) + for iter592 in self.nosuch: + oprot.writeI64(iter592) oprot.writeSetEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -13406,11 +13439,11 @@ def read(self, iprot): elif fid == 6: if ftype == TType.MAP: self.properties = {} - (_ktype587, _vtype588, _size586 ) = iprot.readMapBegin() - for _i590 in xrange(_size586): - _key591 = iprot.readString() - _val592 = iprot.readString() - self.properties[_key591] = _val592 + (_ktype594, _vtype595, _size593 ) = iprot.readMapBegin() + for _i597 in xrange(_size593): + _key598 = iprot.readString() + _val599 = iprot.readString() + self.properties[_key598] = _val599 iprot.readMapEnd() else: iprot.skip(ftype) @@ -13447,9 +13480,9 @@ def write(self, oprot): if self.properties is not None: oprot.writeFieldBegin('properties', TType.MAP, 6) oprot.writeMapBegin(TType.STRING, TType.STRING, len(self.properties)) - for kiter593,viter594 in self.properties.items(): - oprot.writeString(kiter593) - oprot.writeString(viter594) + for kiter600,viter601 in self.properties.items(): + oprot.writeString(kiter600) + oprot.writeString(viter601) oprot.writeMapEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -13884,11 +13917,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.compacts = [] - (_etype598, _size595) = iprot.readListBegin() - for _i599 in xrange(_size595): - _elem600 = ShowCompactResponseElement() - _elem600.read(iprot) - self.compacts.append(_elem600) + (_etype605, _size602) = iprot.readListBegin() + for _i606 in xrange(_size602): + _elem607 = ShowCompactResponseElement() + _elem607.read(iprot) + self.compacts.append(_elem607) iprot.readListEnd() else: iprot.skip(ftype) @@ -13905,8 +13938,8 @@ def write(self, oprot): if self.compacts is not None: oprot.writeFieldBegin('compacts', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.compacts)) - for iter601 in self.compacts: - iter601.write(oprot) + for iter608 in self.compacts: + iter608.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -13995,10 +14028,10 @@ def read(self, iprot): elif fid == 5: if ftype == TType.LIST: self.partitionnames = [] - (_etype605, _size602) = iprot.readListBegin() - for _i606 in xrange(_size602): - _elem607 = iprot.readString() - self.partitionnames.append(_elem607) + (_etype612, _size609) = iprot.readListBegin() + for _i613 in xrange(_size609): + _elem614 = iprot.readString() + self.partitionnames.append(_elem614) iprot.readListEnd() else: iprot.skip(ftype) @@ -14036,8 +14069,8 @@ def write(self, oprot): if self.partitionnames is not None: oprot.writeFieldBegin('partitionnames', TType.LIST, 5) oprot.writeListBegin(TType.STRING, len(self.partitionnames)) - for iter608 in self.partitionnames: - oprot.writeString(iter608) + for iter615 in self.partitionnames: + oprot.writeString(iter615) oprot.writeListEnd() oprot.writeFieldEnd() if self.operationType is not None: @@ -14267,10 +14300,10 @@ def read(self, iprot): elif fid == 4: if ftype == TType.SET: self.tablesUsed = set() - (_etype612, _size609) = iprot.readSetBegin() - for _i613 in xrange(_size609): - _elem614 = iprot.readString() - self.tablesUsed.add(_elem614) + (_etype619, _size616) = iprot.readSetBegin() + for _i620 in xrange(_size616): + _elem621 = iprot.readString() + self.tablesUsed.add(_elem621) iprot.readSetEnd() else: iprot.skip(ftype) @@ -14304,8 +14337,8 @@ def write(self, oprot): if self.tablesUsed is not None: oprot.writeFieldBegin('tablesUsed', TType.SET, 4) oprot.writeSetBegin(TType.STRING, len(self.tablesUsed)) - for iter615 in self.tablesUsed: - oprot.writeString(iter615) + for iter622 in self.tablesUsed: + oprot.writeString(iter622) oprot.writeSetEnd() oprot.writeFieldEnd() if self.validTxnList is not None: @@ -14617,11 +14650,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.events = [] - (_etype619, _size616) = iprot.readListBegin() - for _i620 in xrange(_size616): - _elem621 = NotificationEvent() - _elem621.read(iprot) - self.events.append(_elem621) + (_etype626, _size623) = iprot.readListBegin() + for _i627 in xrange(_size623): + _elem628 = NotificationEvent() + _elem628.read(iprot) + self.events.append(_elem628) iprot.readListEnd() else: iprot.skip(ftype) @@ -14638,8 +14671,8 @@ def write(self, oprot): if self.events is not None: oprot.writeFieldBegin('events', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.events)) - for iter622 in self.events: - iter622.write(oprot) + for iter629 in self.events: + iter629.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -14933,20 +14966,20 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.filesAdded = [] - (_etype626, _size623) = iprot.readListBegin() - for _i627 in xrange(_size623): - _elem628 = iprot.readString() - self.filesAdded.append(_elem628) + (_etype633, _size630) = iprot.readListBegin() + for _i634 in xrange(_size630): + _elem635 = iprot.readString() + self.filesAdded.append(_elem635) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.LIST: self.filesAddedChecksum = [] - (_etype632, _size629) = iprot.readListBegin() - for _i633 in xrange(_size629): - _elem634 = iprot.readString() - self.filesAddedChecksum.append(_elem634) + (_etype639, _size636) = iprot.readListBegin() + for _i640 in xrange(_size636): + _elem641 = iprot.readString() + self.filesAddedChecksum.append(_elem641) iprot.readListEnd() else: iprot.skip(ftype) @@ -14967,15 +15000,15 @@ def write(self, oprot): if self.filesAdded is not None: oprot.writeFieldBegin('filesAdded', TType.LIST, 2) oprot.writeListBegin(TType.STRING, len(self.filesAdded)) - for iter635 in self.filesAdded: - oprot.writeString(iter635) + for iter642 in self.filesAdded: + oprot.writeString(iter642) oprot.writeListEnd() oprot.writeFieldEnd() if self.filesAddedChecksum is not None: oprot.writeFieldBegin('filesAddedChecksum', TType.LIST, 3) oprot.writeListBegin(TType.STRING, len(self.filesAddedChecksum)) - for iter636 in self.filesAddedChecksum: - oprot.writeString(iter636) + for iter643 in self.filesAddedChecksum: + oprot.writeString(iter643) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -15133,10 +15166,10 @@ def read(self, iprot): elif fid == 5: if ftype == TType.LIST: self.partitionVals = [] - (_etype640, _size637) = iprot.readListBegin() - for _i641 in xrange(_size637): - _elem642 = iprot.readString() - self.partitionVals.append(_elem642) + (_etype647, _size644) = iprot.readListBegin() + for _i648 in xrange(_size644): + _elem649 = iprot.readString() + self.partitionVals.append(_elem649) iprot.readListEnd() else: iprot.skip(ftype) @@ -15174,8 +15207,8 @@ def write(self, oprot): if self.partitionVals is not None: oprot.writeFieldBegin('partitionVals', TType.LIST, 5) oprot.writeListBegin(TType.STRING, len(self.partitionVals)) - for iter643 in self.partitionVals: - oprot.writeString(iter643) + for iter650 in self.partitionVals: + oprot.writeString(iter650) oprot.writeListEnd() oprot.writeFieldEnd() if self.catName is not None: @@ -15367,12 +15400,12 @@ def read(self, iprot): if fid == 1: if ftype == TType.MAP: self.metadata = {} - (_ktype645, _vtype646, _size644 ) = iprot.readMapBegin() - for _i648 in xrange(_size644): - _key649 = iprot.readI64() - _val650 = MetadataPpdResult() - _val650.read(iprot) - self.metadata[_key649] = _val650 + (_ktype652, _vtype653, _size651 ) = iprot.readMapBegin() + for _i655 in xrange(_size651): + _key656 = iprot.readI64() + _val657 = MetadataPpdResult() + _val657.read(iprot) + self.metadata[_key656] = _val657 iprot.readMapEnd() else: iprot.skip(ftype) @@ -15394,9 +15427,9 @@ def write(self, oprot): if self.metadata is not None: oprot.writeFieldBegin('metadata', TType.MAP, 1) oprot.writeMapBegin(TType.I64, TType.STRUCT, len(self.metadata)) - for kiter651,viter652 in self.metadata.items(): - oprot.writeI64(kiter651) - viter652.write(oprot) + for kiter658,viter659 in self.metadata.items(): + oprot.writeI64(kiter658) + viter659.write(oprot) oprot.writeMapEnd() oprot.writeFieldEnd() if self.isSupported is not None: @@ -15466,10 +15499,10 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.fileIds = [] - (_etype656, _size653) = iprot.readListBegin() - for _i657 in xrange(_size653): - _elem658 = iprot.readI64() - self.fileIds.append(_elem658) + (_etype663, _size660) = iprot.readListBegin() + for _i664 in xrange(_size660): + _elem665 = iprot.readI64() + self.fileIds.append(_elem665) iprot.readListEnd() else: iprot.skip(ftype) @@ -15501,8 +15534,8 @@ def write(self, oprot): if self.fileIds is not None: oprot.writeFieldBegin('fileIds', TType.LIST, 1) oprot.writeListBegin(TType.I64, len(self.fileIds)) - for iter659 in self.fileIds: - oprot.writeI64(iter659) + for iter666 in self.fileIds: + oprot.writeI64(iter666) oprot.writeListEnd() oprot.writeFieldEnd() if self.expr is not None: @@ -15576,11 +15609,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.MAP: self.metadata = {} - (_ktype661, _vtype662, _size660 ) = iprot.readMapBegin() - for _i664 in xrange(_size660): - _key665 = iprot.readI64() - _val666 = iprot.readString() - self.metadata[_key665] = _val666 + (_ktype668, _vtype669, _size667 ) = iprot.readMapBegin() + for _i671 in xrange(_size667): + _key672 = iprot.readI64() + _val673 = iprot.readString() + self.metadata[_key672] = _val673 iprot.readMapEnd() else: iprot.skip(ftype) @@ -15602,9 +15635,9 @@ def write(self, oprot): if self.metadata is not None: oprot.writeFieldBegin('metadata', TType.MAP, 1) oprot.writeMapBegin(TType.I64, TType.STRING, len(self.metadata)) - for kiter667,viter668 in self.metadata.items(): - oprot.writeI64(kiter667) - oprot.writeString(viter668) + for kiter674,viter675 in self.metadata.items(): + oprot.writeI64(kiter674) + oprot.writeString(viter675) oprot.writeMapEnd() oprot.writeFieldEnd() if self.isSupported is not None: @@ -15665,10 +15698,10 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.fileIds = [] - (_etype672, _size669) = iprot.readListBegin() - for _i673 in xrange(_size669): - _elem674 = iprot.readI64() - self.fileIds.append(_elem674) + (_etype679, _size676) = iprot.readListBegin() + for _i680 in xrange(_size676): + _elem681 = iprot.readI64() + self.fileIds.append(_elem681) iprot.readListEnd() else: iprot.skip(ftype) @@ -15685,8 +15718,8 @@ def write(self, oprot): if self.fileIds is not None: oprot.writeFieldBegin('fileIds', TType.LIST, 1) oprot.writeListBegin(TType.I64, len(self.fileIds)) - for iter675 in self.fileIds: - oprot.writeI64(iter675) + for iter682 in self.fileIds: + oprot.writeI64(iter682) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -15792,20 +15825,20 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.fileIds = [] - (_etype679, _size676) = iprot.readListBegin() - for _i680 in xrange(_size676): - _elem681 = iprot.readI64() - self.fileIds.append(_elem681) + (_etype686, _size683) = iprot.readListBegin() + for _i687 in xrange(_size683): + _elem688 = iprot.readI64() + self.fileIds.append(_elem688) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.LIST: self.metadata = [] - (_etype685, _size682) = iprot.readListBegin() - for _i686 in xrange(_size682): - _elem687 = iprot.readString() - self.metadata.append(_elem687) + (_etype692, _size689) = iprot.readListBegin() + for _i693 in xrange(_size689): + _elem694 = iprot.readString() + self.metadata.append(_elem694) iprot.readListEnd() else: iprot.skip(ftype) @@ -15827,15 +15860,15 @@ def write(self, oprot): if self.fileIds is not None: oprot.writeFieldBegin('fileIds', TType.LIST, 1) oprot.writeListBegin(TType.I64, len(self.fileIds)) - for iter688 in self.fileIds: - oprot.writeI64(iter688) + for iter695 in self.fileIds: + oprot.writeI64(iter695) oprot.writeListEnd() oprot.writeFieldEnd() if self.metadata is not None: oprot.writeFieldBegin('metadata', TType.LIST, 2) oprot.writeListBegin(TType.STRING, len(self.metadata)) - for iter689 in self.metadata: - oprot.writeString(iter689) + for iter696 in self.metadata: + oprot.writeString(iter696) oprot.writeListEnd() oprot.writeFieldEnd() if self.type is not None: @@ -15943,10 +15976,10 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.fileIds = [] - (_etype693, _size690) = iprot.readListBegin() - for _i694 in xrange(_size690): - _elem695 = iprot.readI64() - self.fileIds.append(_elem695) + (_etype700, _size697) = iprot.readListBegin() + for _i701 in xrange(_size697): + _elem702 = iprot.readI64() + self.fileIds.append(_elem702) iprot.readListEnd() else: iprot.skip(ftype) @@ -15963,8 +15996,8 @@ def write(self, oprot): if self.fileIds is not None: oprot.writeFieldBegin('fileIds', TType.LIST, 1) oprot.writeListBegin(TType.I64, len(self.fileIds)) - for iter696 in self.fileIds: - oprot.writeI64(iter696) + for iter703 in self.fileIds: + oprot.writeI64(iter703) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -16193,11 +16226,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.functions = [] - (_etype700, _size697) = iprot.readListBegin() - for _i701 in xrange(_size697): - _elem702 = Function() - _elem702.read(iprot) - self.functions.append(_elem702) + (_etype707, _size704) = iprot.readListBegin() + for _i708 in xrange(_size704): + _elem709 = Function() + _elem709.read(iprot) + self.functions.append(_elem709) iprot.readListEnd() else: iprot.skip(ftype) @@ -16214,8 +16247,8 @@ def write(self, oprot): if self.functions is not None: oprot.writeFieldBegin('functions', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.functions)) - for iter703 in self.functions: - iter703.write(oprot) + for iter710 in self.functions: + iter710.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -16267,10 +16300,10 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.values = [] - (_etype707, _size704) = iprot.readListBegin() - for _i708 in xrange(_size704): - _elem709 = iprot.readI32() - self.values.append(_elem709) + (_etype714, _size711) = iprot.readListBegin() + for _i715 in xrange(_size711): + _elem716 = iprot.readI32() + self.values.append(_elem716) iprot.readListEnd() else: iprot.skip(ftype) @@ -16287,8 +16320,8 @@ def write(self, oprot): if self.values is not None: oprot.writeFieldBegin('values', TType.LIST, 1) oprot.writeListBegin(TType.I32, len(self.values)) - for iter710 in self.values: - oprot.writeI32(iter710) + for iter717 in self.values: + oprot.writeI32(iter717) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -16533,10 +16566,10 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.tblNames = [] - (_etype714, _size711) = iprot.readListBegin() - for _i715 in xrange(_size711): - _elem716 = iprot.readString() - self.tblNames.append(_elem716) + (_etype721, _size718) = iprot.readListBegin() + for _i722 in xrange(_size718): + _elem723 = iprot.readString() + self.tblNames.append(_elem723) iprot.readListEnd() else: iprot.skip(ftype) @@ -16568,8 +16601,8 @@ def write(self, oprot): if self.tblNames is not None: oprot.writeFieldBegin('tblNames', TType.LIST, 2) oprot.writeListBegin(TType.STRING, len(self.tblNames)) - for iter717 in self.tblNames: - oprot.writeString(iter717) + for iter724 in self.tblNames: + oprot.writeString(iter724) oprot.writeListEnd() oprot.writeFieldEnd() if self.capabilities is not None: @@ -16634,11 +16667,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.tables = [] - (_etype721, _size718) = iprot.readListBegin() - for _i722 in xrange(_size718): - _elem723 = Table() - _elem723.read(iprot) - self.tables.append(_elem723) + (_etype728, _size725) = iprot.readListBegin() + for _i729 in xrange(_size725): + _elem730 = Table() + _elem730.read(iprot) + self.tables.append(_elem730) iprot.readListEnd() else: iprot.skip(ftype) @@ -16655,8 +16688,8 @@ def write(self, oprot): if self.tables is not None: oprot.writeFieldBegin('tables', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.tables)) - for iter724 in self.tables: - iter724.write(oprot) + for iter731 in self.tables: + iter731.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -16970,10 +17003,10 @@ def read(self, iprot): if fid == 1: if ftype == TType.SET: self.tablesUsed = set() - (_etype728, _size725) = iprot.readSetBegin() - for _i729 in xrange(_size725): - _elem730 = iprot.readString() - self.tablesUsed.add(_elem730) + (_etype735, _size732) = iprot.readSetBegin() + for _i736 in xrange(_size732): + _elem737 = iprot.readString() + self.tablesUsed.add(_elem737) iprot.readSetEnd() else: iprot.skip(ftype) @@ -17005,8 +17038,8 @@ def write(self, oprot): if self.tablesUsed is not None: oprot.writeFieldBegin('tablesUsed', TType.SET, 1) oprot.writeSetBegin(TType.STRING, len(self.tablesUsed)) - for iter731 in self.tablesUsed: - oprot.writeString(iter731) + for iter738 in self.tablesUsed: + oprot.writeString(iter738) oprot.writeSetEnd() oprot.writeFieldEnd() if self.validTxnList is not None: @@ -17911,44 +17944,44 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.pools = [] - (_etype735, _size732) = iprot.readListBegin() - for _i736 in xrange(_size732): - _elem737 = WMPool() - _elem737.read(iprot) - self.pools.append(_elem737) + (_etype742, _size739) = iprot.readListBegin() + for _i743 in xrange(_size739): + _elem744 = WMPool() + _elem744.read(iprot) + self.pools.append(_elem744) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.LIST: self.mappings = [] - (_etype741, _size738) = iprot.readListBegin() - for _i742 in xrange(_size738): - _elem743 = WMMapping() - _elem743.read(iprot) - self.mappings.append(_elem743) + (_etype748, _size745) = iprot.readListBegin() + for _i749 in xrange(_size745): + _elem750 = WMMapping() + _elem750.read(iprot) + self.mappings.append(_elem750) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.LIST: self.triggers = [] - (_etype747, _size744) = iprot.readListBegin() - for _i748 in xrange(_size744): - _elem749 = WMTrigger() - _elem749.read(iprot) - self.triggers.append(_elem749) + (_etype754, _size751) = iprot.readListBegin() + for _i755 in xrange(_size751): + _elem756 = WMTrigger() + _elem756.read(iprot) + self.triggers.append(_elem756) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.LIST: self.poolTriggers = [] - (_etype753, _size750) = iprot.readListBegin() - for _i754 in xrange(_size750): - _elem755 = WMPoolTrigger() - _elem755.read(iprot) - self.poolTriggers.append(_elem755) + (_etype760, _size757) = iprot.readListBegin() + for _i761 in xrange(_size757): + _elem762 = WMPoolTrigger() + _elem762.read(iprot) + self.poolTriggers.append(_elem762) iprot.readListEnd() else: iprot.skip(ftype) @@ -17969,29 +18002,29 @@ def write(self, oprot): if self.pools is not None: oprot.writeFieldBegin('pools', TType.LIST, 2) oprot.writeListBegin(TType.STRUCT, len(self.pools)) - for iter756 in self.pools: - iter756.write(oprot) + for iter763 in self.pools: + iter763.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.mappings is not None: oprot.writeFieldBegin('mappings', TType.LIST, 3) oprot.writeListBegin(TType.STRUCT, len(self.mappings)) - for iter757 in self.mappings: - iter757.write(oprot) + for iter764 in self.mappings: + iter764.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.triggers is not None: oprot.writeFieldBegin('triggers', TType.LIST, 4) oprot.writeListBegin(TType.STRUCT, len(self.triggers)) - for iter758 in self.triggers: - iter758.write(oprot) + for iter765 in self.triggers: + iter765.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.poolTriggers is not None: oprot.writeFieldBegin('poolTriggers', TType.LIST, 5) oprot.writeListBegin(TType.STRUCT, len(self.poolTriggers)) - for iter759 in self.poolTriggers: - iter759.write(oprot) + for iter766 in self.poolTriggers: + iter766.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -18465,11 +18498,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.resourcePlans = [] - (_etype763, _size760) = iprot.readListBegin() - for _i764 in xrange(_size760): - _elem765 = WMResourcePlan() - _elem765.read(iprot) - self.resourcePlans.append(_elem765) + (_etype770, _size767) = iprot.readListBegin() + for _i771 in xrange(_size767): + _elem772 = WMResourcePlan() + _elem772.read(iprot) + self.resourcePlans.append(_elem772) iprot.readListEnd() else: iprot.skip(ftype) @@ -18486,8 +18519,8 @@ def write(self, oprot): if self.resourcePlans is not None: oprot.writeFieldBegin('resourcePlans', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.resourcePlans)) - for iter766 in self.resourcePlans: - iter766.write(oprot) + for iter773 in self.resourcePlans: + iter773.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -18791,20 +18824,20 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.errors = [] - (_etype770, _size767) = iprot.readListBegin() - for _i771 in xrange(_size767): - _elem772 = iprot.readString() - self.errors.append(_elem772) + (_etype777, _size774) = iprot.readListBegin() + for _i778 in xrange(_size774): + _elem779 = iprot.readString() + self.errors.append(_elem779) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 2: if ftype == TType.LIST: self.warnings = [] - (_etype776, _size773) = iprot.readListBegin() - for _i777 in xrange(_size773): - _elem778 = iprot.readString() - self.warnings.append(_elem778) + (_etype783, _size780) = iprot.readListBegin() + for _i784 in xrange(_size780): + _elem785 = iprot.readString() + self.warnings.append(_elem785) iprot.readListEnd() else: iprot.skip(ftype) @@ -18821,15 +18854,15 @@ def write(self, oprot): if self.errors is not None: oprot.writeFieldBegin('errors', TType.LIST, 1) oprot.writeListBegin(TType.STRING, len(self.errors)) - for iter779 in self.errors: - oprot.writeString(iter779) + for iter786 in self.errors: + oprot.writeString(iter786) oprot.writeListEnd() oprot.writeFieldEnd() if self.warnings is not None: oprot.writeFieldBegin('warnings', TType.LIST, 2) oprot.writeListBegin(TType.STRING, len(self.warnings)) - for iter780 in self.warnings: - oprot.writeString(iter780) + for iter787 in self.warnings: + oprot.writeString(iter787) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -19406,11 +19439,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.triggers = [] - (_etype784, _size781) = iprot.readListBegin() - for _i785 in xrange(_size781): - _elem786 = WMTrigger() - _elem786.read(iprot) - self.triggers.append(_elem786) + (_etype791, _size788) = iprot.readListBegin() + for _i792 in xrange(_size788): + _elem793 = WMTrigger() + _elem793.read(iprot) + self.triggers.append(_elem793) iprot.readListEnd() else: iprot.skip(ftype) @@ -19427,8 +19460,8 @@ def write(self, oprot): if self.triggers is not None: oprot.writeFieldBegin('triggers', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.triggers)) - for iter787 in self.triggers: - iter787.write(oprot) + for iter794 in self.triggers: + iter794.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -20612,11 +20645,11 @@ def read(self, iprot): elif fid == 4: if ftype == TType.LIST: self.cols = [] - (_etype791, _size788) = iprot.readListBegin() - for _i792 in xrange(_size788): - _elem793 = FieldSchema() - _elem793.read(iprot) - self.cols.append(_elem793) + (_etype798, _size795) = iprot.readListBegin() + for _i799 in xrange(_size795): + _elem800 = FieldSchema() + _elem800.read(iprot) + self.cols.append(_elem800) iprot.readListEnd() else: iprot.skip(ftype) @@ -20676,8 +20709,8 @@ def write(self, oprot): if self.cols is not None: oprot.writeFieldBegin('cols', TType.LIST, 4) oprot.writeListBegin(TType.STRUCT, len(self.cols)) - for iter794 in self.cols: - iter794.write(oprot) + for iter801 in self.cols: + iter801.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.state is not None: @@ -20932,11 +20965,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.schemaVersions = [] - (_etype798, _size795) = iprot.readListBegin() - for _i799 in xrange(_size795): - _elem800 = SchemaVersionDescriptor() - _elem800.read(iprot) - self.schemaVersions.append(_elem800) + (_etype805, _size802) = iprot.readListBegin() + for _i806 in xrange(_size802): + _elem807 = SchemaVersionDescriptor() + _elem807.read(iprot) + self.schemaVersions.append(_elem807) iprot.readListEnd() else: iprot.skip(ftype) @@ -20953,8 +20986,8 @@ def write(self, oprot): if self.schemaVersions is not None: oprot.writeFieldBegin('schemaVersions', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.schemaVersions)) - for iter801 in self.schemaVersions: - iter801.write(oprot) + for iter808 in self.schemaVersions: + iter808.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() diff --git a/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_types.rb b/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_types.rb index 0e70e8900d..3dbe4d8068 100644 --- a/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_types.rb +++ b/standalone-metastore/src/gen/thrift/gen-rb/hive_metastore_types.rb @@ -2639,20 +2639,23 @@ end class AllocateTableWriteIdsRequest include ::Thrift::Struct, ::Thrift::Struct_Union - TXNIDS = 1 - DBNAME = 2 - TABLENAME = 3 + DBNAME = 1 + TABLENAME = 2 + TXNIDS = 3 + REPLPOLICY = 4 + SRCTXNTOWRITEIDLIST = 5 FIELDS = { - TXNIDS => {:type => ::Thrift::Types::LIST, :name => 'txnIds', :element => {:type => ::Thrift::Types::I64}}, DBNAME => {:type => ::Thrift::Types::STRING, :name => 'dbName'}, - TABLENAME => {:type => ::Thrift::Types::STRING, :name => 'tableName'} + TABLENAME => {:type => ::Thrift::Types::STRING, :name => 'tableName'}, + TXNIDS => {:type => ::Thrift::Types::LIST, :name => 'txnIds', :element => {:type => ::Thrift::Types::I64}, :optional => true}, + REPLPOLICY => {:type => ::Thrift::Types::STRING, :name => 'replPolicy', :optional => true}, + SRCTXNTOWRITEIDLIST => {:type => ::Thrift::Types::LIST, :name => 'srcTxnToWriteIdList', :element => {:type => ::Thrift::Types::STRUCT, :class => ::TxnToWriteId}, :optional => true} } def struct_fields; FIELDS; end def validate - raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field txnIds is unset!') unless @txnIds raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field dbName is unset!') unless @dbName raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field tableName is unset!') unless @tableName end diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java index 565549a2c4..ae9ec5cad8 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java @@ -62,7 +62,6 @@ import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; -import java.util.function.Consumer; import java.util.regex.Pattern; import javax.jdo.JDOException; @@ -88,6 +87,7 @@ import org.apache.hadoop.hive.metastore.events.AddPartitionEvent; import org.apache.hadoop.hive.metastore.events.AddPrimaryKeyEvent; import org.apache.hadoop.hive.metastore.events.AddUniqueConstraintEvent; +import org.apache.hadoop.hive.metastore.events.AllocWriteIdEvent; import org.apache.hadoop.hive.metastore.events.AlterDatabaseEvent; import org.apache.hadoop.hive.metastore.events.AlterISchemaEvent; import org.apache.hadoop.hive.metastore.events.AlterPartitionEvent; @@ -177,7 +177,6 @@ import org.apache.thrift.transport.TServerSocket; import org.apache.thrift.transport.TTransport; import org.apache.thrift.transport.TTransportFactory; -import org.iq80.leveldb.DB; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -7106,7 +7105,13 @@ public GetValidWriteIdsResponse get_valid_write_ids(GetValidWriteIdsRequest rqst @Override public AllocateTableWriteIdsResponse allocate_table_write_ids( AllocateTableWriteIdsRequest rqst) throws TException { - return getTxnHandler().allocateTableWriteIds(rqst); + AllocateTableWriteIdsResponse response = getTxnHandler().allocateTableWriteIds(rqst); + if (listeners != null && !listeners.isEmpty()) { + MetaStoreListenerNotifier.notifyEvent(listeners, EventType.ALLOC_WRITE_ID, + new AllocWriteIdEvent(response.getTxnToWriteIds(), rqst.getDbName(), + rqst.getTableName(), this)); + } + return response; } @Override diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java index 9a43b2c798..108add0a1e 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java @@ -72,7 +72,6 @@ import org.apache.hadoop.util.ReflectionUtils; import org.apache.hadoop.util.StringUtils; import org.apache.thrift.TApplicationException; -import org.apache.thrift.TBase; import org.apache.thrift.TException; import org.apache.thrift.protocol.TBinaryProtocol; import org.apache.thrift.protocol.TCompactProtocol; @@ -2436,9 +2435,22 @@ public long allocateTableWriteId(long txnId, String dbName, String tableName) th @Override public List allocateTableWriteIdsBatch(List txnIds, String dbName, String tableName) throws TException { - AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest(txnIds, dbName, tableName); - AllocateTableWriteIdsResponse writeIds = client.allocate_table_write_ids(rqst); - return writeIds.getTxnToWriteIds(); + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest(dbName, tableName); + rqst.setTxnIds(txnIds); + return allocateTableWriteIdsBatchIntr(rqst); + } + + @Override + public List replAllocateTableWriteIdsBatch(String dbName, String tableName, + String replPolicy, List srcTxnToWriteIdList) throws TException { + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest(dbName, tableName); + rqst.setReplPolicy(replPolicy); + rqst.setSrcTxnToWriteIdList(srcTxnToWriteIdList); + return allocateTableWriteIdsBatchIntr(rqst); + } + + private List allocateTableWriteIdsBatchIntr(AllocateTableWriteIdsRequest rqst) throws TException { + return client.allocate_table_write_ids(rqst).getTxnToWriteIds(); } @Override diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java index 98674cf7de..27f8775a10 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/IMetaStoreClient.java @@ -27,7 +27,6 @@ import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceStability; -import org.apache.hadoop.conf.Configurable; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hive.common.ValidTxnList; import org.apache.hadoop.hive.common.ValidTxnWriteIdList; @@ -36,7 +35,6 @@ import org.apache.hadoop.hive.metastore.annotation.NoReconnect; import org.apache.hadoop.hive.metastore.api.AggrStats; import org.apache.hadoop.hive.metastore.api.AlreadyExistsException; -import org.apache.hadoop.hive.metastore.api.BasicTxnInfo; import org.apache.hadoop.hive.metastore.api.CheckConstraintsRequest; import org.apache.hadoop.hive.metastore.api.Catalog; import org.apache.hadoop.hive.metastore.api.CmRecycleRequest; @@ -127,7 +125,6 @@ import org.apache.hadoop.hive.metastore.api.WMTrigger; import org.apache.hadoop.hive.metastore.api.WMValidateResourcePlanResponse; import org.apache.hadoop.hive.metastore.partition.spec.PartitionSpecProxy; -import org.apache.hadoop.hive.metastore.utils.MetaStoreUtils; import org.apache.hadoop.hive.metastore.utils.ObjectPair; import org.apache.thrift.TException; @@ -2883,6 +2880,16 @@ void replCommitTxn(long txnid, String replPolicy) */ List allocateTableWriteIdsBatch(List txnIds, String dbName, String tableName) throws TException; + /** + * Allocate a per table write ID and associate it with the given transaction. Used by replication load task. + * @param dbName name of DB in which the table belongs. + * @param tableName table to which the write ID to be allocated + * @param replPolicy Used by replication task to identify the source cluster. + * @param srcTxnToWriteIdList List of txn to write id map sent from the source cluster. + * @throws TException + */ + List replAllocateTableWriteIdsBatch(String dbName, String tableName, String replPolicy, + List srcTxnToWriteIdList) throws TException; /** * Show the list of currently open transactions. This is for use by "show transactions" in the * grammar, not for applications that want to find a list of current transactions to work with. diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreEventListener.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreEventListener.java index 7b3a80ca4a..92505af4f8 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreEventListener.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreEventListener.java @@ -53,6 +53,9 @@ import org.apache.hadoop.hive.metastore.events.OpenTxnEvent; import org.apache.hadoop.hive.metastore.events.CommitTxnEvent; import org.apache.hadoop.hive.metastore.events.AbortTxnEvent; +import org.apache.hadoop.hive.metastore.events.AllocWriteIdEvent; +import org.apache.hadoop.hive.metastore.tools.SQLGenerator; +import java.sql.Connection; /** * This abstract class needs to be extended to provide implementation of actions that needs @@ -234,26 +237,45 @@ public void onDropCatalog(DropCatalogEvent dropCatalogEvent) throws MetaExceptio /** * This will be called when a new transaction is started. - * @param openTxnEvent + * @param openTxnEvent event to be processed + * @param dbConn jdbc connection to remote meta store db. + * @param sqlGenerator helper class to generate db specific sql string. * @throws MetaException */ - public void onOpenTxn(OpenTxnEvent openTxnEvent) throws MetaException { + public void onOpenTxn(OpenTxnEvent openTxnEvent, Connection dbConn, SQLGenerator sqlGenerator) throws MetaException { } /** * This will be called to commit a transaction. - * @param commitTxnEvent + * @param commitTxnEvent event to be processed + * @param dbConn jdbc connection to remote meta store db. + * @param sqlGenerator helper class to generate db specific sql string. * @throws MetaException */ - public void onCommitTxn(CommitTxnEvent commitTxnEvent) throws MetaException { + public void onCommitTxn(CommitTxnEvent commitTxnEvent, Connection dbConn, SQLGenerator sqlGenerator) throws + MetaException { } /** * This will be called to abort a transaction. - * @param abortTxnEvent + * @param abortTxnEvent event to be processed + * @param dbConn jdbc connection to remote meta store db. + * @param sqlGenerator helper class to generate db specific sql string. * @throws MetaException */ - public void onAbortTxn(AbortTxnEvent abortTxnEvent) throws MetaException { + public void onAbortTxn(AbortTxnEvent abortTxnEvent, Connection dbConn, SQLGenerator sqlGenerator) + throws MetaException { + } + + /** + * This will be called to alloc a new write id. + * @param allocWriteIdEvent event to be processed + * @param dbConn jdbc connection to remote meta store db. + * @param sqlGenerator helper class to generate db specific sql string. + * @throws MetaException + */ + public void onAllocWriteId(AllocWriteIdEvent allocWriteIdEvent, Connection dbConn, SQLGenerator sqlGenerator) + throws MetaException { } @Override diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreListenerNotifier.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreListenerNotifier.java index e9bbfdcc0a..b2856e2520 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreListenerNotifier.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreListenerNotifier.java @@ -52,10 +52,11 @@ import org.apache.hadoop.hive.metastore.events.OpenTxnEvent; import org.apache.hadoop.hive.metastore.events.CommitTxnEvent; import org.apache.hadoop.hive.metastore.events.AbortTxnEvent; - +import org.apache.hadoop.hive.metastore.events.AllocWriteIdEvent; +import org.apache.hadoop.hive.metastore.tools.SQLGenerator; +import java.sql.Connection; import java.util.List; import java.util.Map; - import static org.apache.hadoop.hive.metastore.MetaStoreEventListenerConstants.HIVE_METASTORE_TRANSACTION_ACTIVE; import static org.apache.hadoop.hive.metastore.messaging.EventMessage.EventType; @@ -209,29 +210,37 @@ public void notify(MetaStoreEventListener listener, ListenerEvent event) throws (listener, event) -> listener.onCreateCatalog((CreateCatalogEvent)event)) .put(EventType.DROP_CATALOG, (listener, event) -> listener.onDropCatalog((DropCatalogEvent)event)) - .put(EventType.OPEN_TXN, new EventNotifier() { - @Override - public void notify(MetaStoreEventListener listener, ListenerEvent event) throws MetaException { - listener.onOpenTxn((OpenTxnEvent)event); - } - }) - .put(EventType.COMMIT_TXN, new EventNotifier() { - @Override - public void notify(MetaStoreEventListener listener, ListenerEvent event) - throws MetaException { - listener.onCommitTxn((CommitTxnEvent) event); - } - }) - .put(EventType.ABORT_TXN, new EventNotifier() { - @Override - public void notify(MetaStoreEventListener listener, ListenerEvent event) - throws MetaException { - listener.onAbortTxn((AbortTxnEvent) event); - } - }) + .put(EventType.OPEN_TXN, + (listener, event) -> listener.onOpenTxn((OpenTxnEvent) event, null, null)) + .put(EventType.COMMIT_TXN, + (listener, event) -> listener.onCommitTxn((CommitTxnEvent) event, null, null)) + .put(EventType.ABORT_TXN, + (listener, event) -> listener.onAbortTxn((AbortTxnEvent) event, null, null)) + .put(EventType.ALLOC_WRITE_ID, + (listener, event) -> listener.onAllocWriteId((AllocWriteIdEvent) event, null, null)) .build() ); + + private interface TxnEventNotifier { + void notify(MetaStoreEventListener listener, ListenerEvent event, Connection dbConn, SQLGenerator sqlGenerator) + throws MetaException; + } + + private static Map txnNotificationEvents = Maps.newHashMap( + ImmutableMap.builder() + .put(EventType.OPEN_TXN, + (listener, event, dbConn, sqlGenerator) -> listener.onOpenTxn((OpenTxnEvent) event, dbConn, sqlGenerator)) + .put(EventType.COMMIT_TXN, + (listener, event, dbConn, sqlGenerator) -> listener.onCommitTxn((CommitTxnEvent) event, dbConn, sqlGenerator)) + .put(EventType.ABORT_TXN, + (listener, event, dbConn, sqlGenerator) -> listener.onAbortTxn((AbortTxnEvent) event, dbConn, sqlGenerator)) + .put(EventType.ALLOC_WRITE_ID, + (listener, event, dbConn, sqlGenerator) -> + listener.onAllocWriteId((AllocWriteIdEvent) event, dbConn, sqlGenerator)) + .build() + ); + /** * Notify a list of listeners about a specific metastore event. Each listener notified might update * the (ListenerEvent) event by setting a parameter key/value pair. These updated parameters will @@ -261,6 +270,38 @@ public void notify(MetaStoreEventListener listener, ListenerEvent event) return event.getParameters(); } + /** + * Notify a list of listeners about a specific metastore event to be executed within a txn. Each listener notified + * might update the (ListenerEvent) event by setting a parameter key/value pair. These updated parameters will + * be returned to the caller. + * + * @param listeners List of MetaStoreEventListener listeners. + * @param eventType Type of the notification event. + * @param event The ListenerEvent with information about the event. + * @param dbConn The JDBC connection to the remote meta store db. + * @param sqlGenerator The helper class to generate db specific SQL string. + * @return A list of key/value pair parameters that the listeners set. The returned object will return an empty + * map if no parameters were updated or if no listeners were notified. + * @throws MetaException If an error occurred while calling the listeners. + */ + public static Map notifyEventWithDirectSql(List listeners, + EventType eventType, + ListenerEvent event, + Connection dbConn, SQLGenerator sqlGenerator) throws MetaException { + + Preconditions.checkNotNull(listeners, "Listeners must not be null."); + Preconditions.checkNotNull(event, "The event must not be null."); + + for (MetaStoreEventListener listener : listeners) { + txnNotificationEvents.get(eventType).notify(listener, event, dbConn, sqlGenerator); + } + + // Each listener called above might set a different parameter on the event. + // This write permission is allowed on the listener side to avoid breaking compatibility if we change the API + // method calls. + return event.getParameters(); + } + /** * Notify a list of listeners about a specific metastore event. Each listener notified might update * the (ListenerEvent) event by setting a parameter key/value pair. These updated parameters will diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/AbortTxnEvent.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/AbortTxnEvent.java index 062e719f2b..fe4b97432a 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/AbortTxnEvent.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/AbortTxnEvent.java @@ -21,8 +21,6 @@ import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceStability; import org.apache.hadoop.hive.metastore.IHMSHandler; -import org.apache.hadoop.hive.metastore.tools.SQLGenerator; -import java.sql.Connection; /** * AbortTxnEvent @@ -33,8 +31,6 @@ public class AbortTxnEvent extends ListenerEvent { private final Long txnId; - Connection connection; - SQLGenerator sqlGenerator; /** * @@ -44,20 +40,6 @@ public AbortTxnEvent(Long transactionId, IHMSHandler handler) { super(true, handler); txnId = transactionId; - connection = null; - sqlGenerator = null; - } - - /** - * @param transactionId Unique identification for the transaction just got aborted. - * @param connection connection to execute direct SQL statement within same transaction - * @param sqlGenerator generates db specific SQL query - */ - public AbortTxnEvent(Long transactionId, Connection connection, SQLGenerator sqlGenerator) { - super(true, null); - this.txnId = transactionId; - this.connection = connection; - this.sqlGenerator = sqlGenerator; } /** @@ -66,18 +48,4 @@ public AbortTxnEvent(Long transactionId, Connection connection, SQLGenerator sql public Long getTxnId() { return txnId; } - - /** - * @return Connection connection - used only by DbNotificationListener - */ - public Connection getConnection() { - return connection; - } - - /** - * @return SQLGenerator sqlGenerator - used only by DbNotificationListener - */ - public SQLGenerator getSqlGenerator() { - return sqlGenerator; - } } diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/AllocWriteIdEvent.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/AllocWriteIdEvent.java new file mode 100644 index 0000000000..84a9a4e811 --- /dev/null +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/AllocWriteIdEvent.java @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.hadoop.hive.metastore.events; + +import org.apache.hadoop.classification.InterfaceAudience; +import org.apache.hadoop.classification.InterfaceStability; +import org.apache.hadoop.hive.metastore.IHMSHandler; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; +import java.util.List; + +/** + * AllocWriteIdEvent. + * Event for allocating write id. + */ +@InterfaceAudience.Public +@InterfaceStability.Stable +public class AllocWriteIdEvent extends ListenerEvent { + + private final List txnToWriteIdList; + private final String tableName; + private final String dbName; + + public AllocWriteIdEvent(List txnToWriteIdList, String dbName, String tableName, IHMSHandler handler) { + super(true, handler); + this.txnToWriteIdList = txnToWriteIdList; + this.tableName = tableName; + this.dbName = dbName; + } + + public List getTxnToWriteIdList() { + return txnToWriteIdList; + } + + public String getTableName() { + return tableName; + } + + public String getDbName() { + return dbName; + } +} diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/CommitTxnEvent.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/CommitTxnEvent.java index 7262e6bc3d..ba382cd175 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/CommitTxnEvent.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/CommitTxnEvent.java @@ -21,8 +21,6 @@ import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceStability; import org.apache.hadoop.hive.metastore.IHMSHandler; -import org.apache.hadoop.hive.metastore.tools.SQLGenerator; -import java.sql.Connection; /** * CommitTxnEvent @@ -33,8 +31,6 @@ public class CommitTxnEvent extends ListenerEvent { private final Long txnId; - Connection connection; - SQLGenerator sqlGenerator; /** * @@ -44,20 +40,6 @@ public CommitTxnEvent(Long transactionId, IHMSHandler handler) { super(true, handler); this.txnId = transactionId; - this.connection = null; - this.sqlGenerator = null; - } - - /** - * @param transactionId Unique identification for the transaction just got committed. - * @param connection connection to execute direct SQL statement within same transaction - * @param sqlGenerator generates db specific SQL query - */ - public CommitTxnEvent(Long transactionId, Connection connection, SQLGenerator sqlGenerator) { - super(true, null); - this.txnId = transactionId; - this.connection = connection; - this.sqlGenerator = sqlGenerator; } /** @@ -66,18 +48,4 @@ public CommitTxnEvent(Long transactionId, Connection connection, SQLGenerator sq public Long getTxnId() { return txnId; } - - /** - * @return Connection connection - used only by DbNotificationListener - */ - public Connection getConnection() { - return connection; - } - - /** - * @return SQLGenerator sqlGenerator - used only by DbNotificationListener - */ - public SQLGenerator getSqlGenerator() { - return sqlGenerator; - } } diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/ListenerEvent.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/ListenerEvent.java index b542afccae..93f1c2b968 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/ListenerEvent.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/ListenerEvent.java @@ -23,9 +23,7 @@ import org.apache.hadoop.hive.metastore.HiveMetaStore; import org.apache.hadoop.hive.metastore.IHMSHandler; import org.apache.hadoop.hive.metastore.api.EnvironmentContext; -import org.apache.hadoop.hive.metastore.tools.SQLGenerator; import javax.annotation.concurrent.NotThreadSafe; -import java.sql.Connection; import java.util.Collections; import java.util.HashMap; import java.util.Map; @@ -162,20 +160,6 @@ public void putParameters(final Map parameters) { } } - /** - * Used by ACID/transaction related events for generating direct SQL in DBNotificationListener. - */ - public Connection getConnection() { - return null; - } - - /** - * Used by ACID/transaction related events for generating direct SQL in DBNotificationListener. - */ - public SQLGenerator getSqlGenerator() { - return null; - } - /** * Put a parameter to the listener event only if the parameter is absent. * diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/OpenTxnEvent.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/OpenTxnEvent.java index 088a6a1698..547c43e388 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/OpenTxnEvent.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/events/OpenTxnEvent.java @@ -22,8 +22,6 @@ import org.apache.hadoop.classification.InterfaceStability; import org.apache.hadoop.hive.metastore.IHMSHandler; import com.google.common.collect.Lists; -import org.apache.hadoop.hive.metastore.tools.SQLGenerator; -import java.sql.Connection; import java.util.List; /** @@ -34,8 +32,6 @@ @InterfaceStability.Stable public class OpenTxnEvent extends ListenerEvent { private List txnIds; - Connection connection; - SQLGenerator sqlGenerator; /** * @param txnIds List of unique identification for the transaction just opened. @@ -44,20 +40,6 @@ public OpenTxnEvent(List txnIds, IHMSHandler handler) { super(true, handler); this.txnIds = Lists.newArrayList(txnIds); - this.connection = null; - this.sqlGenerator = null; - } - - /** - * @param txnIds List of unique identification for the transaction just opened. - * @param connection connection to execute direct SQL statement within same transaction - * @param sqlGenerator generates db specific SQL query - */ - public OpenTxnEvent(List txnIds, Connection connection, SQLGenerator sqlGenerator) { - super(true, null); - this.txnIds = Lists.newArrayList(txnIds); - this.connection = connection; - this.sqlGenerator = sqlGenerator; } /** @@ -66,18 +48,4 @@ public OpenTxnEvent(List txnIds, Connection connection, SQLGenerator sqlGe public List getTxnIds() { return txnIds; } - - /** - * @return Connection connection - used only by DbNotificationListener - */ - public Connection getConnection() { - return connection; - } - - /** - * @return SQLGenerator sqlGenerator - used only by DbNotificationListener - */ - public SQLGenerator getSqlGenerator() { - return sqlGenerator; - } } diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/AllocWriteIdMessage.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/AllocWriteIdMessage.java new file mode 100644 index 0000000000..0766d02d49 --- /dev/null +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/AllocWriteIdMessage.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.hadoop.hive.metastore.messaging; + +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; + +import java.util.List; + +/** + * HCat message sent when an alloc write id is done. + */ +public abstract class AllocWriteIdMessage extends EventMessage { + protected AllocWriteIdMessage() { + super(EventType.ALLOC_WRITE_ID); + } + + public abstract String getTableName(); + + public abstract List getTxnToWriteIdList(); +} diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/EventMessage.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/EventMessage.java index 5137c8608c..ffbce1d13b 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/EventMessage.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/EventMessage.java @@ -58,7 +58,8 @@ DROP_CATALOG(MessageFactory.DROP_CATALOG_EVENT), OPEN_TXN(MessageFactory.OPEN_TXN_EVENT), COMMIT_TXN(MessageFactory.COMMIT_TXN_EVENT), - ABORT_TXN(MessageFactory.ABORT_TXN_EVENT); + ABORT_TXN(MessageFactory.ABORT_TXN_EVENT), + ALLOC_WRITE_ID(MessageFactory.ALLOC_WRITE_ID_EVENT); private String typeString; diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageDeserializer.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageDeserializer.java index 6583cc7c72..ca335790ce 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageDeserializer.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageDeserializer.java @@ -181,6 +181,11 @@ public EventMessage getEventMessage(String eventTypeString, String messageBody) */ public abstract AbortTxnMessage getAbortTxnMessage(String messageBody); + /* + * Method to de-serialize AllocWriteIdMessage instance. + */ + public abstract AllocWriteIdMessage getAllocWriteIdMessage(String messageBody); + // Protection against construction. protected MessageDeserializer() {} } diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageFactory.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageFactory.java index dc4420ebdc..75ca6eceb5 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageFactory.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/MessageFactory.java @@ -30,6 +30,7 @@ import org.apache.hadoop.hive.metastore.api.SQLPrimaryKey; import org.apache.hadoop.hive.metastore.api.SQLUniqueConstraint; import org.apache.hadoop.hive.metastore.api.Table; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; import org.apache.hadoop.hive.metastore.conf.MetastoreConf; import org.apache.hadoop.hive.metastore.conf.MetastoreConf.ConfVars; import org.apache.hadoop.hive.metastore.utils.JavaUtils; @@ -71,6 +72,7 @@ public static final String OPEN_TXN_EVENT = "OPEN_TXN"; public static final String COMMIT_TXN_EVENT = "COMMIT_TXN"; public static final String ABORT_TXN_EVENT = "ABORT_TXN"; + public static final String ALLOC_WRITE_ID_EVENT = "ALLOC_WRITE_ID_EVENT"; private static MessageFactory instance = null; @@ -265,6 +267,17 @@ public abstract InsertMessage buildInsertMessage(Table tableObj, Partition ptnOb */ public abstract AbortTxnMessage buildAbortTxnMessage(Long txnId); + /** + * Factory method for building alloc write id message + * + * @param txnToWriteIdList List of Txn Ids and write id map + * @param dbName db for which write ids to be allocated + * @param tableName table for which write ids to be allocated + * @return instance of AllocWriteIdMessage + */ + public abstract AllocWriteIdMessage buildAllocWriteIdMessage(List txnToWriteIdList, String dbName, + String tableName); + /*** * Factory method for building add primary key message * diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/event/filters/DatabaseAndTableFilter.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/event/filters/DatabaseAndTableFilter.java index 09292a32a7..fdb69429e3 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/event/filters/DatabaseAndTableFilter.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/event/filters/DatabaseAndTableFilter.java @@ -43,8 +43,7 @@ public DatabaseAndTableFilter(final String databaseNameOrPattern, final String t private boolean isTxnRelatedEvent(final NotificationEvent event) { return ((event.getEventType().equals(MessageFactory.OPEN_TXN_EVENT)) || (event.getEventType().equals(MessageFactory.COMMIT_TXN_EVENT)) || - (event.getEventType().equals(MessageFactory.ABORT_TXN_EVENT)) - ); + (event.getEventType().equals(MessageFactory.ABORT_TXN_EVENT))); } @Override diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONAllocWriteIdMessage.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONAllocWriteIdMessage.java new file mode 100644 index 0000000000..d4aba11aa3 --- /dev/null +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONAllocWriteIdMessage.java @@ -0,0 +1,111 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.hadoop.hive.metastore.messaging.json; + +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; +import org.apache.hadoop.hive.metastore.messaging.AllocWriteIdMessage; +import org.codehaus.jackson.annotate.JsonProperty; +import java.util.ArrayList; +import java.util.List; + +/** + * JSON implementation of AllocWriteId + */ +public class JSONAllocWriteIdMessage extends AllocWriteIdMessage { + + @JsonProperty + private String server, servicePrincipal, dbName, tableName; + + @JsonProperty + private List txnIdList, writeIdList; + + @JsonProperty + private Long timestamp; + + private List txnToWriteIdList; + + /** + * Default constructor, needed for Jackson. + */ + public JSONAllocWriteIdMessage() { + } + + public JSONAllocWriteIdMessage(String server, String servicePrincipal, + List txnToWriteIdList, String dbName, String tableName, Long timestamp) { + this.server = server; + this.servicePrincipal = servicePrincipal; + this.timestamp = timestamp; + this.txnIdList = new ArrayList<>(); + this.writeIdList = new ArrayList<>(); + for (TxnToWriteId txnToWriteId : txnToWriteIdList) { + this.txnIdList.add(txnToWriteId.getTxnId()); + this.writeIdList.add(txnToWriteId.getWriteId()); + } + this.tableName = tableName; + this.dbName = dbName; + this.txnToWriteIdList = txnToWriteIdList; + } + + @Override + public String getServer() { + return server; + } + + @Override + public String getServicePrincipal() { + return servicePrincipal; + } + + @Override + public String getDB() { + return dbName; + } + + @Override + public Long getTimestamp() { + return timestamp; + } + + @Override + public String getTableName() { + return tableName; + } + + @Override + public List getTxnToWriteIdList() { + // after deserialization, need to recreate the txnToWriteIdList as its not under JsonProperty. + if (txnToWriteIdList == null) { + txnToWriteIdList = new ArrayList<>(); + for (int idx = 0; idx < txnIdList.size(); idx++) { + txnToWriteIdList.add(new TxnToWriteId(txnIdList.get(idx), writeIdList.get(idx))); + } + } + return txnToWriteIdList; + } + + @Override + public String toString() { + try { + return JSONMessageDeserializer.mapper.writeValueAsString(this); + } catch (Exception exception) { + throw new IllegalArgumentException("Could not serialize: ", exception); + } + } +} diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageDeserializer.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageDeserializer.java index d019ec1263..f54e24d41f 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageDeserializer.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageDeserializer.java @@ -40,6 +40,7 @@ import org.apache.hadoop.hive.metastore.messaging.OpenTxnMessage; import org.apache.hadoop.hive.metastore.messaging.CommitTxnMessage; import org.apache.hadoop.hive.metastore.messaging.AbortTxnMessage; +import org.apache.hadoop.hive.metastore.messaging.AllocWriteIdMessage; import org.codehaus.jackson.map.DeserializationConfig; import org.codehaus.jackson.map.ObjectMapper; import org.codehaus.jackson.map.SerializationConfig; @@ -250,4 +251,12 @@ public AbortTxnMessage getAbortTxnMessage(String messageBody) { throw new IllegalArgumentException("Could not construct AbortTxnMessage", e); } } + + public AllocWriteIdMessage getAllocWriteIdMessage(String messageBody) { + try { + return mapper.readValue(messageBody, JSONAllocWriteIdMessage.class); + } catch (Exception e) { + throw new IllegalArgumentException("Could not construct AllocWriteIdMessage", e); + } + } } diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageFactory.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageFactory.java index 65a6f78978..f0c5f4f287 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageFactory.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/messaging/json/JSONMessageFactory.java @@ -38,6 +38,7 @@ import org.apache.hadoop.hive.metastore.api.SQLPrimaryKey; import org.apache.hadoop.hive.metastore.api.SQLUniqueConstraint; import org.apache.hadoop.hive.metastore.api.Table; +import org.apache.hadoop.hive.metastore.api.TxnToWriteId; import org.apache.hadoop.hive.metastore.messaging.AddForeignKeyMessage; import org.apache.hadoop.hive.metastore.messaging.AddNotNullConstraintMessage; import org.apache.hadoop.hive.metastore.messaging.AddPartitionMessage; @@ -63,6 +64,7 @@ import org.apache.hadoop.hive.metastore.messaging.OpenTxnMessage; import org.apache.hadoop.hive.metastore.messaging.CommitTxnMessage; import org.apache.hadoop.hive.metastore.messaging.AbortTxnMessage; +import org.apache.hadoop.hive.metastore.messaging.AllocWriteIdMessage; import org.apache.thrift.TBase; import org.apache.thrift.TDeserializer; import org.apache.thrift.TException; @@ -221,6 +223,11 @@ public AbortTxnMessage buildAbortTxnMessage(Long txnId) { return new JSONAbortTxnMessage(MS_SERVER_URL, MS_SERVICE_PRINCIPAL, txnId, now()); } + public AllocWriteIdMessage buildAllocWriteIdMessage(List txnToWriteIdList, + String dbName, String tableName) { + return new JSONAllocWriteIdMessage(MS_SERVER_URL, MS_SERVICE_PRINCIPAL, txnToWriteIdList, dbName, tableName, now()); + } + private long now() { return System.currentTimeMillis() / 1000; } diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java index 9256b7a323..39a0f315e2 100644 --- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java +++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/txn/TxnHandler.java @@ -124,6 +124,7 @@ import org.apache.hadoop.hive.metastore.datasource.DataSourceProvider; import org.apache.hadoop.hive.metastore.datasource.HikariCPDataSourceProvider; import org.apache.hadoop.hive.metastore.events.AbortTxnEvent; +import org.apache.hadoop.hive.metastore.events.AllocWriteIdEvent; import org.apache.hadoop.hive.metastore.events.CommitTxnEvent; import org.apache.hadoop.hive.metastore.events.OpenTxnEvent; import org.apache.hadoop.hive.metastore.messaging.EventMessage; @@ -584,24 +585,15 @@ public OpenTxnsResponse openTxns(OpenTxnRequest rqst) throws MetaException { stmt = dbConn.createStatement(); if (rqst.isSetReplPolicy()) { - List inQueries = new ArrayList<>(); - StringBuilder prefix = new StringBuilder(); - StringBuilder suffix = new StringBuilder(); - - prefix.append("select RTM_TARGET_TXN_ID from REPL_TXN_MAP where "); - suffix.append(" and RTM_REPL_POLICY = " + quoteString(rqst.getReplPolicy())); - - TxnUtils.buildQueryWithINClause(conf, inQueries, prefix, suffix, rqst.getReplSrcTxnIds(), - "RTM_SRC_TXN_ID", false, false); - - for (String query : inQueries) { - LOG.debug("Going to execute select <" + query + ">"); - rs = stmt.executeQuery(query); - if (rs.next()) { - LOG.info("Transactions " + rqst.getReplSrcTxnIds().toString() + - " are already present for repl policy " + rqst.getReplPolicy()); - return new OpenTxnsResponse(new ArrayList<>()); + List targetTxnIdList = getTargetTxnIdList(rqst.getReplPolicy(), rqst.getReplSrcTxnIds(), stmt); + if (!targetTxnIdList.isEmpty()) { + if (targetTxnIdList.size() != rqst.getReplSrcTxnIds().size()) { + LOG.warn("target txn id number " + targetTxnIdList.toString() + + " is not matching with source txn id number " + rqst.getReplSrcTxnIds().toString()); } + LOG.info("Target transactions " + targetTxnIdList.toString() + " are present for repl policy :" + + rqst.getReplPolicy() + " and Source transaction id : " + rqst.getReplSrcTxnIds().toString()); + return new OpenTxnsResponse(targetTxnIdList); } } @@ -677,8 +669,8 @@ public OpenTxnsResponse openTxns(OpenTxnRequest rqst) throws MetaException { } if (transactionalListeners != null) { - MetaStoreListenerNotifier.notifyEvent(transactionalListeners, - EventMessage.EventType.OPEN_TXN, new OpenTxnEvent(txnIds, dbConn, sqlGenerator)); + MetaStoreListenerNotifier.notifyEventWithDirectSql(transactionalListeners, + EventMessage.EventType.OPEN_TXN, new OpenTxnEvent(txnIds, null), dbConn, sqlGenerator); } LOG.debug("Going to commit"); @@ -699,21 +691,27 @@ public OpenTxnsResponse openTxns(OpenTxnRequest rqst) throws MetaException { } } - private Long getTargetTxnId(String replPolicy, long sourceTxnId, Statement stmt) throws SQLException { + private List getTargetTxnIdList(String replPolicy, List sourceTxnIdList, Statement stmt) + throws SQLException { ResultSet rs = null; try { - String s = "select RTM_TARGET_TXN_ID from REPL_TXN_MAP where RTM_SRC_TXN_ID = " + sourceTxnId + - - " and RTM_REPL_POLICY = " + quoteString(replPolicy); - LOG.debug("Going to execute query <" + s + ">"); - rs = stmt.executeQuery(s); - if (!rs.next()) { - LOG.info("Target txn is missing for the input source txn for ReplPolicy: " + - quoteString(replPolicy) + " , srcTxnId: " + sourceTxnId); - return -1L; + List inQueries = new ArrayList<>(); + StringBuilder prefix = new StringBuilder(); + StringBuilder suffix = new StringBuilder(); + List targetTxnIdList = new ArrayList<>(); + prefix.append("select RTM_TARGET_TXN_ID from REPL_TXN_MAP where "); + suffix.append(" and RTM_REPL_POLICY = " + quoteString(replPolicy)); + TxnUtils.buildQueryWithINClause(conf, inQueries, prefix, suffix, sourceTxnIdList, + "RTM_SRC_TXN_ID", false, false); + for (String query : inQueries) { + LOG.debug("Going to execute select <" + query + ">"); + rs = stmt.executeQuery(query); + while (rs.next()) { + targetTxnIdList.add(rs.getLong(1)); + } } - LOG.debug("targetTxnid for srcTxnId " + sourceTxnId + " is " + rs.getLong(1)); - return rs.getLong(1); + LOG.debug("targetTxnid for srcTxnId " + sourceTxnIdList.toString() + " is " + targetTxnIdList.toString()); + return targetTxnIdList; } catch (SQLException e) { LOG.warn("failed to get target txn ids " + e.getMessage()); throw e; @@ -737,10 +735,15 @@ public void abortTxn(AbortTxnRequest rqst) throws NoSuchTxnException, MetaExcept if (rqst.isSetReplPolicy()) { sourceTxnId = rqst.getTxnid(); - txnid = getTargetTxnId(rqst.getReplPolicy(), sourceTxnId, stmt); - if (txnid == -1) { + List targetTxnIds = getTargetTxnIdList(rqst.getReplPolicy(), + Collections.singletonList(sourceTxnId), stmt); + if (targetTxnIds.isEmpty()) { + LOG.info("Target txn id is missing for source txn id : " + sourceTxnId + + " and repl policy " + rqst.getReplPolicy()); return; } + assert targetTxnIds.size() == 1; + txnid = targetTxnIds.get(0); } if (abortTxns(dbConn, Collections.singletonList(txnid), true) != 1) { @@ -769,8 +772,8 @@ public void abortTxn(AbortTxnRequest rqst) throws NoSuchTxnException, MetaExcept } if (transactionalListeners != null) { - MetaStoreListenerNotifier.notifyEvent(transactionalListeners, - EventMessage.EventType.ABORT_TXN, new AbortTxnEvent(txnid, dbConn, sqlGenerator)); + MetaStoreListenerNotifier.notifyEventWithDirectSql(transactionalListeners, + EventMessage.EventType.ABORT_TXN, new AbortTxnEvent(txnid, null), dbConn, sqlGenerator); } LOG.debug("Going to commit"); @@ -808,8 +811,8 @@ public void abortTxns(AbortTxnsRequest rqst) throws NoSuchTxnException, MetaExce for (Long txnId : txnids) { if (transactionalListeners != null) { - MetaStoreListenerNotifier.notifyEvent(transactionalListeners, - EventMessage.EventType.ABORT_TXN, new AbortTxnEvent(txnId, dbConn, sqlGenerator)); + MetaStoreListenerNotifier.notifyEventWithDirectSql(transactionalListeners, + EventMessage.EventType.ABORT_TXN, new AbortTxnEvent(txnId, null), dbConn, sqlGenerator); } } LOG.debug("Going to commit"); @@ -880,10 +883,15 @@ public void commitTxn(CommitTxnRequest rqst) if (rqst.isSetReplPolicy()) { sourceTxnId = rqst.getTxnid(); - txnid = getTargetTxnId(rqst.getReplPolicy(), sourceTxnId, stmt); - if (txnid == -1) { + List targetTxnIds = getTargetTxnIdList(rqst.getReplPolicy(), + Collections.singletonList(sourceTxnId), stmt); + if (targetTxnIds.isEmpty()) { + LOG.info("Target txn id is missing for source txn id : " + sourceTxnId + + " and repl policy " + rqst.getReplPolicy()); return; } + assert targetTxnIds.size() == 1; + txnid = targetTxnIds.get(0); } /** @@ -1052,8 +1060,8 @@ public void commitTxn(CommitTxnRequest rqst) } if (transactionalListeners != null) { - MetaStoreListenerNotifier.notifyEvent(transactionalListeners, - EventMessage.EventType.COMMIT_TXN, new CommitTxnEvent(txnid, dbConn, sqlGenerator)); + MetaStoreListenerNotifier.notifyEventWithDirectSql(transactionalListeners, + EventMessage.EventType.COMMIT_TXN, new CommitTxnEvent(txnid, null), dbConn, sqlGenerator); } MaterializationsInvalidationCache materializationsInvalidationCache = @@ -1225,9 +1233,10 @@ private TableValidWriteIds getValidWriteIdsForTable(Statement stmt, String fullT } @Override + @RetrySemantics.Idempotent public AllocateTableWriteIdsResponse allocateTableWriteIds(AllocateTableWriteIdsRequest rqst) throws NoSuchTxnException, TxnAbortedException, MetaException { - List txnIds = rqst.getTxnIds(); + List txnIds; String dbName = rqst.getDbName().toLowerCase(); String tblName = rqst.getTableName().toLowerCase(); try { @@ -1235,12 +1244,36 @@ public AllocateTableWriteIdsResponse allocateTableWriteIds(AllocateTableWriteIds Statement stmt = null; ResultSet rs = null; TxnStore.MutexAPI.LockHandle handle = null; + List txnToWriteIds = new ArrayList<>(); + List srcTxnToWriteIds = null; try { lockInternal(); dbConn = getDbConn(Connection.TRANSACTION_READ_COMMITTED); stmt = dbConn.createStatement(); - Collections.sort(txnIds); //easier to read logs + if (rqst.isSetReplPolicy()) { + srcTxnToWriteIds = rqst.getSrcTxnToWriteIdList(); + List srcTxnIds = new ArrayList<>(); + assert (rqst.isSetSrcTxnToWriteIdList()); + assert (!rqst.isSetTxnIds()); + assert (!srcTxnToWriteIds.isEmpty()); + + for (TxnToWriteId txnToWriteId : srcTxnToWriteIds) { + srcTxnIds.add(txnToWriteId.getTxnId()); + } + txnIds = getTargetTxnIdList(rqst.getReplPolicy(), srcTxnIds, stmt); + if (srcTxnIds.size() != txnIds.size()) { + LOG.warn("Target txn id is missing for source txn id : " + srcTxnIds.toString() + + " and repl policy " + rqst.getReplPolicy()); + throw new RuntimeException("This should never happen for txnIds: " + txnIds); + } + } else { + assert (!rqst.isSetSrcTxnToWriteIdList()); + assert (rqst.isSetTxnIds()); + txnIds = rqst.getTxnIds(); + } + + Collections.sort(txnIds); //easier to read logs and for assumption done in replication flow // Check if all the input txns are in open state. Write ID should be allocated only for open transactions. if (!isTxnsInOpenState(txnIds, stmt)) { @@ -1248,10 +1281,10 @@ public AllocateTableWriteIdsResponse allocateTableWriteIds(AllocateTableWriteIds throw new RuntimeException("This should never happen for txnIds: " + txnIds); } - List txnToWriteIds = new ArrayList<>(); - List allocatedTxns = new ArrayList<>(); - long txnId; long writeId; + String s; + long allocatedTxnsCount = 0; + long txnId; List queries = new ArrayList<>(); StringBuilder prefix = new StringBuilder(); StringBuilder suffix = new StringBuilder(); @@ -1274,25 +1307,26 @@ public AllocateTableWriteIdsResponse allocateTableWriteIds(AllocateTableWriteIds txnId = rs.getLong(1); writeId = rs.getLong(2); txnToWriteIds.add(new TxnToWriteId(txnId, writeId)); - allocatedTxns.add(txnId); + allocatedTxnsCount++; LOG.info("Reused already allocated writeID: " + writeId + " for txnId: " + txnId); } } - // If all the txns in the list have already allocated write ids, then just skip new allocations - long numOfWriteIds = txnIds.size() - allocatedTxns.size(); - assert(numOfWriteIds >= 0); - if (0 == numOfWriteIds) { - // If all the txns in the list have pre-allocated write ids for the given table, then just return + // Batch allocation should always happen atomically. Either write ids for all txns is allocated or none. + long numOfWriteIds = txnIds.size(); + assert ((allocatedTxnsCount == 0) || (numOfWriteIds == allocatedTxnsCount)); + if (allocatedTxnsCount == numOfWriteIds) { + // If all the txns in the list have pre-allocated write ids for the given table, then just return. + // This is for idempotent case. return new AllocateTableWriteIdsResponse(txnToWriteIds); } handle = getMutexAPI().acquireLock(MUTEX_KEY.WriteIdAllocator.name()); - // There are some txns in the list which has no write id allocated and hence go ahead and do it. + // There are some txns in the list which does not have write id allocated and hence go ahead and do it. // Get the next write id for the given table and update it with new next write id. // This is select for update query which takes a lock if the table entry is already there in NEXT_WRITE_ID - String s = sqlGenerator.addForUpdateClause( + s = sqlGenerator.addForUpdateClause( "select nwi_next from NEXT_WRITE_ID where nwi_database = " + quoteString(dbName) + " and nwi_table = " + quoteString(tblName)); LOG.debug("Going to execute query <" + s + ">"); @@ -1300,14 +1334,14 @@ public AllocateTableWriteIdsResponse allocateTableWriteIds(AllocateTableWriteIds if (!rs.next()) { // First allocation of write id should add the table to the next_write_id meta table // The initial value for write id should be 1 and hence we add 1 with number of write ids allocated here + writeId = 1; s = "insert into NEXT_WRITE_ID (nwi_database, nwi_table, nwi_next) values (" + quoteString(dbName) + "," + quoteString(tblName) + "," + String.valueOf(numOfWriteIds + 1) + ")"; LOG.debug("Going to execute insert <" + s + ">"); stmt.execute(s); - writeId = 1; } else { - // Update the NEXT_WRITE_ID for the given table after incrementing by number of write ids allocated writeId = rs.getLong(1); + // Update the NEXT_WRITE_ID for the given table after incrementing by number of write ids allocated s = "update NEXT_WRITE_ID set nwi_next = " + (writeId + numOfWriteIds) + " where nwi_database = " + quoteString(dbName) + " and nwi_table = " + quoteString(tblName); @@ -1319,15 +1353,22 @@ public AllocateTableWriteIdsResponse allocateTableWriteIds(AllocateTableWriteIds // write ids List rows = new ArrayList<>(); for (long txn : txnIds) { - if (allocatedTxns.contains(txn)) { - continue; - } rows.add(txn + ", " + quoteString(dbName) + ", " + quoteString(tblName) + ", " + writeId); txnToWriteIds.add(new TxnToWriteId(txn, writeId)); LOG.info("Allocated writeID: " + writeId + " for txnId: " + txn); writeId++; } + if (rqst.isSetReplPolicy()) { + int lastIdx = txnToWriteIds.size()-1; + if ((txnToWriteIds.get(0).getWriteId() != srcTxnToWriteIds.get(0).getWriteId()) || + (txnToWriteIds.get(lastIdx).getWriteId() != srcTxnToWriteIds.get(lastIdx).getWriteId())) { + LOG.error("Allocated write id range {} is not matching with the input write id range {}.", + txnToWriteIds, srcTxnToWriteIds); + throw new IllegalStateException("Write id allocation failed for: " + srcTxnToWriteIds); + } + } + // Insert entries to TXN_TO_WRITE_ID for newly allocated write ids List inserts = sqlGenerator.createInsertValuesStmt( "TXN_TO_WRITE_ID (t2w_txnid, t2w_database, t2w_table, t2w_writeid)", rows); @@ -1336,6 +1377,13 @@ public AllocateTableWriteIdsResponse allocateTableWriteIds(AllocateTableWriteIds stmt.execute(insert); } + if (transactionalListeners != null) { + MetaStoreListenerNotifier.notifyEventWithDirectSql(transactionalListeners, + EventMessage.EventType.ALLOC_WRITE_ID, + new AllocWriteIdEvent(txnToWriteIds, rqst.getDbName(), rqst.getTableName(), null), + dbConn, sqlGenerator); + } + LOG.debug("Going to commit"); dbConn.commit(); return new AllocateTableWriteIdsResponse(txnToWriteIds); diff --git a/standalone-metastore/src/main/thrift/hive_metastore.thrift b/standalone-metastore/src/main/thrift/hive_metastore.thrift index 612afe1cc0..5bba3294fa 100644 --- a/standalone-metastore/src/main/thrift/hive_metastore.thrift +++ b/standalone-metastore/src/main/thrift/hive_metastore.thrift @@ -884,9 +884,14 @@ struct GetValidWriteIdsResponse { // Request msg to allocate table write ids for the given list of txns struct AllocateTableWriteIdsRequest { - 1: required list txnIds, - 2: required string dbName, - 3: required string tableName, + 1: required string dbName, + 2: required string tableName, + // Either txnIds or replPolicy+srcTxnToWriteIdList can exist in a call. txnIds is used by normal flow and + // replPolicy+srcTxnToWriteIdList is used by replication task. + 3: optional list txnIds, + 4: optional string replPolicy, + // The list is assumed to be sorted by both txnids and write ids. The write id list is assumed to be contiguous. + 5: optional list srcTxnToWriteIdList, } // Map for allocated write id against the txn for which it is allocated diff --git a/standalone-metastore/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java b/standalone-metastore/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java index ecddc7bf28..74c057bc26 100644 --- a/standalone-metastore/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java +++ b/standalone-metastore/src/test/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClientPreCatalog.java @@ -2231,9 +2231,22 @@ public long allocateTableWriteId(long txnId, String dbName, String tableName) th @Override public List allocateTableWriteIdsBatch(List txnIds, String dbName, String tableName) throws TException { - AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest(txnIds, dbName, tableName); - AllocateTableWriteIdsResponse writeIds = client.allocate_table_write_ids(rqst); - return writeIds.getTxnToWriteIds(); + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest(dbName, tableName); + rqst.setTxnIds(txnIds); + return allocateTableWriteIdsBatchIntr(rqst); + } + + @Override + public List replAllocateTableWriteIdsBatch(String dbName, String tableName, + String replPolicy, List srcTxnToWriteIdList) throws TException { + AllocateTableWriteIdsRequest rqst = new AllocateTableWriteIdsRequest(dbName, tableName); + rqst.setReplPolicy(replPolicy); + rqst.setSrcTxnToWriteIdList(srcTxnToWriteIdList); + return allocateTableWriteIdsBatchIntr(rqst); + } + + private List allocateTableWriteIdsBatchIntr(AllocateTableWriteIdsRequest rqst) throws TException { + return client.allocate_table_write_ids(rqst).getTxnToWriteIds(); } @Override