diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java index 73f185a1f3..028bc684ca 100644 --- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java +++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java @@ -2456,6 +2456,8 @@ private static void populateLlapDaemonVarsSet(Set llapDaemonVarsSetLocal "org.apache.hadoop.hive.serde2.avro.AvroSerDe", "The comma-separated list of SerDe classes that are considered when enhancing table-properties \n" + "during logical optimization."), + HIVE_COMPILER_PARTITION_SPEC_API("hive.compiler.partition.spec.api", true, + "Use partition spec API instead of get_partition_by_expr"), // CTE HIVE_CTE_MATERIALIZE_THRESHOLD("hive.optimize.cte.materialize.threshold", -1, diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java index 900642e73c..325987b36d 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/Utilities.java @@ -2121,6 +2121,9 @@ public static String formatBinaryString(byte[] array, int start, int length) { } public static List getColumnNamesFromSortCols(List sortCols) { + if(sortCols == null) { + return Collections.emptyList(); + } List names = new ArrayList(); for (Order o : sortCols) { names.add(o.getCol()); diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java index 1f9fb3b897..97d4d5d64d 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java @@ -79,6 +79,7 @@ import org.apache.calcite.rel.core.TableScan; import org.apache.calcite.rex.RexBuilder; import org.apache.commons.io.FilenameUtils; +import org.apache.commons.lang3.ArrayUtils; import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.exception.ExceptionUtils; import org.apache.commons.lang3.tuple.Pair; @@ -116,63 +117,7 @@ import org.apache.hadoop.hive.metastore.SynchronizedMetaStoreClient; import org.apache.hadoop.hive.metastore.TableType; import org.apache.hadoop.hive.metastore.Warehouse; -import org.apache.hadoop.hive.metastore.api.AggrStats; -import org.apache.hadoop.hive.metastore.api.AlreadyExistsException; -import org.apache.hadoop.hive.metastore.api.CheckConstraintsRequest; -import org.apache.hadoop.hive.metastore.api.CmRecycleRequest; -import org.apache.hadoop.hive.metastore.api.ColumnStatistics; -import org.apache.hadoop.hive.metastore.api.ColumnStatisticsDesc; -import org.apache.hadoop.hive.metastore.api.ColumnStatisticsObj; -import org.apache.hadoop.hive.metastore.api.CompactionResponse; -import org.apache.hadoop.hive.metastore.api.CompactionType; -import org.apache.hadoop.hive.metastore.api.CreationMetadata; -import org.apache.hadoop.hive.metastore.api.Database; -import org.apache.hadoop.hive.metastore.api.DefaultConstraintsRequest; -import org.apache.hadoop.hive.metastore.api.EnvironmentContext; -import org.apache.hadoop.hive.metastore.api.FieldSchema; -import org.apache.hadoop.hive.metastore.api.FireEventRequest; -import org.apache.hadoop.hive.metastore.api.FireEventRequestData; -import org.apache.hadoop.hive.metastore.api.ForeignKeysRequest; -import org.apache.hadoop.hive.metastore.api.Function; -import org.apache.hadoop.hive.metastore.api.GetOpenTxnsInfoResponse; -import org.apache.hadoop.hive.metastore.api.GetRoleGrantsForPrincipalRequest; -import org.apache.hadoop.hive.metastore.api.GetRoleGrantsForPrincipalResponse; -import org.apache.hadoop.hive.metastore.api.HiveObjectPrivilege; -import org.apache.hadoop.hive.metastore.api.HiveObjectRef; -import org.apache.hadoop.hive.metastore.api.HiveObjectType; -import org.apache.hadoop.hive.metastore.api.InsertEventRequestData; -import org.apache.hadoop.hive.metastore.api.InvalidOperationException; -import org.apache.hadoop.hive.metastore.api.Materialization; -import org.apache.hadoop.hive.metastore.api.MetaException; -import org.apache.hadoop.hive.metastore.api.MetadataPpdResult; -import org.apache.hadoop.hive.metastore.api.NoSuchObjectException; -import org.apache.hadoop.hive.metastore.api.NotNullConstraintsRequest; -import org.apache.hadoop.hive.metastore.api.PrimaryKeysRequest; -import org.apache.hadoop.hive.metastore.api.PrincipalPrivilegeSet; -import org.apache.hadoop.hive.metastore.api.PrincipalType; -import org.apache.hadoop.hive.metastore.api.PrivilegeBag; -import org.apache.hadoop.hive.metastore.api.Role; -import org.apache.hadoop.hive.metastore.api.RolePrincipalGrant; -import org.apache.hadoop.hive.metastore.api.SQLCheckConstraint; -import org.apache.hadoop.hive.metastore.api.SQLDefaultConstraint; -import org.apache.hadoop.hive.metastore.api.SQLForeignKey; -import org.apache.hadoop.hive.metastore.api.SQLNotNullConstraint; -import org.apache.hadoop.hive.metastore.api.SQLPrimaryKey; -import org.apache.hadoop.hive.metastore.api.SQLUniqueConstraint; -import org.apache.hadoop.hive.metastore.api.SetPartitionsStatsRequest; -import org.apache.hadoop.hive.metastore.api.ShowCompactResponse; -import org.apache.hadoop.hive.metastore.api.SkewedInfo; -import org.apache.hadoop.hive.metastore.api.UniqueConstraintsRequest; -import org.apache.hadoop.hive.metastore.api.WMFullResourcePlan; -import org.apache.hadoop.hive.metastore.api.WMMapping; -import org.apache.hadoop.hive.metastore.api.WMNullablePool; -import org.apache.hadoop.hive.metastore.api.WMNullableResourcePlan; -import org.apache.hadoop.hive.metastore.api.WMPool; -import org.apache.hadoop.hive.metastore.api.WMResourcePlan; -import org.apache.hadoop.hive.metastore.api.WMTrigger; -import org.apache.hadoop.hive.metastore.api.WMValidateResourcePlanResponse; -import org.apache.hadoop.hive.metastore.api.WriteNotificationLogRequest; -import org.apache.hadoop.hive.metastore.api.hive_metastoreConstants; +import org.apache.hadoop.hive.metastore.api.*; import org.apache.hadoop.hive.metastore.ReplChangeManager; import org.apache.hadoop.hive.metastore.conf.MetastoreConf; import org.apache.hadoop.hive.metastore.utils.MetaStoreServerUtils; @@ -3856,6 +3801,63 @@ public boolean getPartitionsByExpr(Table tbl, ExprNodeGenericFuncDesc expr, Hive return hasUnknownParts; } + public boolean getPartitionsByPartSpec(Table tbl, ExprNodeGenericFuncDesc expr, HiveConf conf, + List result) throws HiveException, TException { + GetPartitionsFilterSpec filterSpec = new GetPartitionsFilterSpec(); + filterSpec.setFilterMode(PartitionFilterMode.BY_EXPR); + filterSpec.setFilterExpr(Arrays.asList( + ArrayUtils.toObject(SerializationUtilities.serializeExpressionToKryo(expr)))); + filterSpec.setDefaultPartName(HiveConf.getVar(conf, ConfVars.DEFAULTPARTITIONNAME)); + // create projection spec + GetPartitionsProjectionSpec projSpec = new GetPartitionsProjectionSpec(); + projSpec + .setFieldList(Arrays.asList("dbName", "tableName", "catName", "parameters", "values","sd")); + projSpec.setIncludeParamKeyPattern("%"); + GetPartitionsRequest request = new GetPartitionsRequest(); + request.setTblName(tbl.getTableName()); + request.setDbName(tbl.getDbName()); + request.setProjectionSpec(projSpec); + request.setFilterSpec(filterSpec); + PerfLogger perfLogger = SessionState.getPerfLogger(); + perfLogger.PerfLogBegin("fetch partitions", "get_partitions_by_spec"); + GetPartitionsResponse response = getMSC().getPartitionsWithSpecs(request); + perfLogger.PerfLogEnd("fetch partitions", "get_partitions_by_spec"); + + perfLogger.PerfLogBegin("convert partition spec to partitions", "get_partitions_by_spec"); + result.addAll(convertFromPartSpec(response, tbl)); + perfLogger.PerfLogEnd("convert partition spec to partitions", "get_partitions_by_spec"); + return false; + } + + private List convertFromPartSpec(GetPartitionsResponse response, Table tbl) + throws HiveException { + if(!response.getPartitionSpecIterator().hasNext()) { + return Collections.emptyList(); + } + List results = new ArrayList<>(); + List metastorePart = new ArrayList<>(); + + PartitionSpec partitionSpec = response.getPartitionSpecIterator().next(); + + for(PartitionWithoutSD partitionWithoutSD:partitionSpec.getSharedSDPartitionSpec().getPartitions()) { + org.apache.hadoop.hive.metastore.api.Partition part = new org.apache.hadoop.hive.metastore.api.Partition(); + part.setTableName(partitionSpec.getTableName()); + part.setDbName(partitionSpec.getDbName()); + part.setCatName(partitionSpec.getCatName()); + part.setCreateTime(partitionWithoutSD.getCreateTime()); + part.setLastAccessTime(partitionWithoutSD.getLastAccessTime()); + part.setParameters(partitionWithoutSD.getParameters()); + part.setPrivileges(partitionWithoutSD.getPrivileges()); + part.setSd(partitionSpec.getSharedSDPartitionSpec().getSd()); + part.setValues(partitionWithoutSD.getValues()); + part.setWriteId(partitionSpec.getWriteId()); + Partition hivePart = new Partition(tbl,part); + assert(partitionWithoutSD.getRelativePath() != null); + hivePart.setRelativePath(partitionWithoutSD.getRelativePath()); + results.add(hivePart); + } + return results; + } /** * Get a number of Partitions by filter. * @param tbl The table containing the partitions. diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Partition.java b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Partition.java index 136709c6dc..00f86a714d 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Partition.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Partition.java @@ -64,6 +64,9 @@ private Table table; private org.apache.hadoop.hive.metastore.api.Partition tPartition; + private String relativePath = null; + + /** * These fields are cached. The information comes from tPartition. */ @@ -216,8 +219,13 @@ public Path getDataLocation() { if (table.isPartitioned()) { if (tPartition.getSd() == null) return null; - else - return new Path(tPartition.getSd().getLocation()); + else { + String pathLocation = tPartition.getSd().getLocation(); + if(relativePath != null) { + pathLocation += relativePath; + } + return new Path(pathLocation); + } } else { if (table.getTTable() == null || table.getTTable().getSd() == null) return null; @@ -332,6 +340,10 @@ public void setBucketCount(int newBucketNum) { return tPartition.getSd().getBucketCols(); } + public void setRelativePath(String relativePath) { + this.relativePath = relativePath; + } + public List getSortCols() { return tPartition.getSd().getSortCols(); } diff --git a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/ppr/PartitionPruner.java b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/ppr/PartitionPruner.java index 673d8580d5..16930f1791 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/ppr/PartitionPruner.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/ppr/PartitionPruner.java @@ -451,8 +451,15 @@ private static PrunedPartitionList getPartitionsFromServer(Table tab, final Stri if (!doEvalClientSide) { perfLogger.PerfLogBegin(CLASS_NAME, PerfLogger.PARTITION_RETRIEVING); try { - hasUnknownPartitions = Hive.get().getPartitionsByExpr( - tab, compactExpr, conf, partitions); + boolean useNewApi = HiveConf.getBoolVar(conf, HiveConf.ConfVars.HIVE_COMPILER_PARTITION_SPEC_API); + if(useNewApi) { + hasUnknownPartitions = + Hive.get().getPartitionsByPartSpec(tab, compactExpr, conf, partitions); + + } else { + hasUnknownPartitions = + Hive.get().getPartitionsByExpr(tab, compactExpr, conf, partitions); + } } catch (IMetaStoreClient.IncompatibleMetastoreException ime) { // TODO: backward compat for Hive <= 0.12. Can be removed later. LOG.warn("Metastore doesn't support getPartitionsByExpr", ime); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java index a96741f887..345271bdba 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java @@ -40,6 +40,8 @@ private static final org.apache.thrift.protocol.TField FILTER_MODE_FIELD_DESC = new org.apache.thrift.protocol.TField("filterMode", org.apache.thrift.protocol.TType.I32, (short)7); private static final org.apache.thrift.protocol.TField FILTERS_FIELD_DESC = new org.apache.thrift.protocol.TField("filters", org.apache.thrift.protocol.TType.LIST, (short)8); + private static final org.apache.thrift.protocol.TField FILTER_EXPR_FIELD_DESC = new org.apache.thrift.protocol.TField("filterExpr", org.apache.thrift.protocol.TType.LIST, (short)9); + private static final org.apache.thrift.protocol.TField DEFAULT_PART_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("defaultPartName", org.apache.thrift.protocol.TType.STRING, (short)10); private static final Map, SchemeFactory> schemes = new HashMap, SchemeFactory>(); static { @@ -49,6 +51,8 @@ private PartitionFilterMode filterMode; // optional private List filters; // optional + private List filterExpr; // optional + private String defaultPartName; // 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 { @@ -57,7 +61,9 @@ * @see PartitionFilterMode */ FILTER_MODE((short)7, "filterMode"), - FILTERS((short)8, "filters"); + FILTERS((short)8, "filters"), + FILTER_EXPR((short)9, "filterExpr"), + DEFAULT_PART_NAME((short)10, "defaultPartName"); private static final Map byName = new HashMap(); @@ -76,6 +82,10 @@ public static _Fields findByThriftId(int fieldId) { return FILTER_MODE; case 8: // FILTERS return FILTERS; + case 9: // FILTER_EXPR + return FILTER_EXPR; + case 10: // DEFAULT_PART_NAME + return DEFAULT_PART_NAME; default: return null; } @@ -116,7 +126,7 @@ public String getFieldName() { } // isset id assignments - private static final _Fields optionals[] = {_Fields.FILTER_MODE,_Fields.FILTERS}; + private static final _Fields optionals[] = {_Fields.FILTER_MODE,_Fields.FILTERS,_Fields.FILTER_EXPR,_Fields.DEFAULT_PART_NAME}; 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); @@ -125,6 +135,11 @@ public String getFieldName() { tmpMap.put(_Fields.FILTERS, new org.apache.thrift.meta_data.FieldMetaData("filters", 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.STRING)))); + tmpMap.put(_Fields.FILTER_EXPR, new org.apache.thrift.meta_data.FieldMetaData("filterExpr", 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.BYTE)))); + tmpMap.put(_Fields.DEFAULT_PART_NAME, new org.apache.thrift.meta_data.FieldMetaData("defaultPartName", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(GetPartitionsFilterSpec.class, metaDataMap); } @@ -143,6 +158,13 @@ public GetPartitionsFilterSpec(GetPartitionsFilterSpec other) { List __this__filters = new ArrayList(other.filters); this.filters = __this__filters; } + if (other.isSetFilterExpr()) { + List __this__filterExpr = new ArrayList(other.filterExpr); + this.filterExpr = __this__filterExpr; + } + if (other.isSetDefaultPartName()) { + this.defaultPartName = other.defaultPartName; + } } public GetPartitionsFilterSpec deepCopy() { @@ -153,6 +175,8 @@ public GetPartitionsFilterSpec deepCopy() { public void clear() { this.filterMode = null; this.filters = null; + this.filterExpr = null; + this.defaultPartName = null; } /** @@ -224,6 +248,67 @@ public void setFiltersIsSet(boolean value) { } } + public int getFilterExprSize() { + return (this.filterExpr == null) ? 0 : this.filterExpr.size(); + } + + public java.util.Iterator getFilterExprIterator() { + return (this.filterExpr == null) ? null : this.filterExpr.iterator(); + } + + public void addToFilterExpr(byte elem) { + if (this.filterExpr == null) { + this.filterExpr = new ArrayList(); + } + this.filterExpr.add(elem); + } + + public List getFilterExpr() { + return this.filterExpr; + } + + public void setFilterExpr(List filterExpr) { + this.filterExpr = filterExpr; + } + + public void unsetFilterExpr() { + this.filterExpr = null; + } + + /** Returns true if field filterExpr is set (has been assigned a value) and false otherwise */ + public boolean isSetFilterExpr() { + return this.filterExpr != null; + } + + public void setFilterExprIsSet(boolean value) { + if (!value) { + this.filterExpr = null; + } + } + + public String getDefaultPartName() { + return this.defaultPartName; + } + + public void setDefaultPartName(String defaultPartName) { + this.defaultPartName = defaultPartName; + } + + public void unsetDefaultPartName() { + this.defaultPartName = null; + } + + /** Returns true if field defaultPartName is set (has been assigned a value) and false otherwise */ + public boolean isSetDefaultPartName() { + return this.defaultPartName != null; + } + + public void setDefaultPartNameIsSet(boolean value) { + if (!value) { + this.defaultPartName = null; + } + } + public void setFieldValue(_Fields field, Object value) { switch (field) { case FILTER_MODE: @@ -242,6 +327,22 @@ public void setFieldValue(_Fields field, Object value) { } break; + case FILTER_EXPR: + if (value == null) { + unsetFilterExpr(); + } else { + setFilterExpr((List)value); + } + break; + + case DEFAULT_PART_NAME: + if (value == null) { + unsetDefaultPartName(); + } else { + setDefaultPartName((String)value); + } + break; + } } @@ -253,6 +354,12 @@ public Object getFieldValue(_Fields field) { case FILTERS: return getFilters(); + case FILTER_EXPR: + return getFilterExpr(); + + case DEFAULT_PART_NAME: + return getDefaultPartName(); + } throw new IllegalStateException(); } @@ -268,6 +375,10 @@ public boolean isSet(_Fields field) { return isSetFilterMode(); case FILTERS: return isSetFilters(); + case FILTER_EXPR: + return isSetFilterExpr(); + case DEFAULT_PART_NAME: + return isSetDefaultPartName(); } throw new IllegalStateException(); } @@ -303,6 +414,24 @@ public boolean equals(GetPartitionsFilterSpec that) { return false; } + boolean this_present_filterExpr = true && this.isSetFilterExpr(); + boolean that_present_filterExpr = true && that.isSetFilterExpr(); + if (this_present_filterExpr || that_present_filterExpr) { + if (!(this_present_filterExpr && that_present_filterExpr)) + return false; + if (!this.filterExpr.equals(that.filterExpr)) + return false; + } + + boolean this_present_defaultPartName = true && this.isSetDefaultPartName(); + boolean that_present_defaultPartName = true && that.isSetDefaultPartName(); + if (this_present_defaultPartName || that_present_defaultPartName) { + if (!(this_present_defaultPartName && that_present_defaultPartName)) + return false; + if (!this.defaultPartName.equals(that.defaultPartName)) + return false; + } + return true; } @@ -320,6 +449,16 @@ public int hashCode() { if (present_filters) list.add(filters); + boolean present_filterExpr = true && (isSetFilterExpr()); + list.add(present_filterExpr); + if (present_filterExpr) + list.add(filterExpr); + + boolean present_defaultPartName = true && (isSetDefaultPartName()); + list.add(present_defaultPartName); + if (present_defaultPartName) + list.add(defaultPartName); + return list.hashCode(); } @@ -351,6 +490,26 @@ public int compareTo(GetPartitionsFilterSpec other) { return lastComparison; } } + lastComparison = Boolean.valueOf(isSetFilterExpr()).compareTo(other.isSetFilterExpr()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetFilterExpr()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.filterExpr, other.filterExpr); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetDefaultPartName()).compareTo(other.isSetDefaultPartName()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetDefaultPartName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.defaultPartName, other.defaultPartName); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -390,6 +549,26 @@ public String toString() { } first = false; } + if (isSetFilterExpr()) { + if (!first) sb.append(", "); + sb.append("filterExpr:"); + if (this.filterExpr == null) { + sb.append("null"); + } else { + sb.append(this.filterExpr); + } + first = false; + } + if (isSetDefaultPartName()) { + if (!first) sb.append(", "); + sb.append("defaultPartName:"); + if (this.defaultPartName == null) { + sb.append("null"); + } else { + sb.append(this.defaultPartName); + } + first = false; + } sb.append(")"); return sb.toString(); } @@ -459,6 +638,32 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetPartitionsFilter org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 9: // FILTER_EXPR + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list1171 = iprot.readListBegin(); + struct.filterExpr = new ArrayList(_list1171.size); + byte _elem1172; + for (int _i1173 = 0; _i1173 < _list1171.size; ++_i1173) + { + _elem1172 = iprot.readByte(); + struct.filterExpr.add(_elem1172); + } + iprot.readListEnd(); + } + struct.setFilterExprIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 10: // DEFAULT_PART_NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.defaultPartName = iprot.readString(); + struct.setDefaultPartNameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -484,15 +689,36 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetPartitionsFilte oprot.writeFieldBegin(FILTERS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.filters.size())); - for (String _iter1171 : struct.filters) + for (String _iter1174 : struct.filters) { - oprot.writeString(_iter1171); + oprot.writeString(_iter1174); } oprot.writeListEnd(); } oprot.writeFieldEnd(); } } + if (struct.filterExpr != null) { + if (struct.isSetFilterExpr()) { + oprot.writeFieldBegin(FILTER_EXPR_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.BYTE, struct.filterExpr.size())); + for (byte _iter1175 : struct.filterExpr) + { + oprot.writeByte(_iter1175); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + } + if (struct.defaultPartName != null) { + if (struct.isSetDefaultPartName()) { + oprot.writeFieldBegin(DEFAULT_PART_NAME_FIELD_DESC); + oprot.writeString(struct.defaultPartName); + oprot.writeFieldEnd(); + } + } oprot.writeFieldStop(); oprot.writeStructEnd(); } @@ -517,42 +743,77 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPartitionsFilter if (struct.isSetFilters()) { optionals.set(1); } - oprot.writeBitSet(optionals, 2); + if (struct.isSetFilterExpr()) { + optionals.set(2); + } + if (struct.isSetDefaultPartName()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); if (struct.isSetFilterMode()) { oprot.writeI32(struct.filterMode.getValue()); } if (struct.isSetFilters()) { { oprot.writeI32(struct.filters.size()); - for (String _iter1172 : struct.filters) + for (String _iter1176 : struct.filters) + { + oprot.writeString(_iter1176); + } + } + } + if (struct.isSetFilterExpr()) { + { + oprot.writeI32(struct.filterExpr.size()); + for (byte _iter1177 : struct.filterExpr) { - oprot.writeString(_iter1172); + oprot.writeByte(_iter1177); } } } + if (struct.isSetDefaultPartName()) { + oprot.writeString(struct.defaultPartName); + } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsFilterSpec struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(2); + BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.filterMode = org.apache.hadoop.hive.metastore.api.PartitionFilterMode.findByValue(iprot.readI32()); struct.setFilterModeIsSet(true); } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1173 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.filters = new ArrayList(_list1173.size); - String _elem1174; - for (int _i1175 = 0; _i1175 < _list1173.size; ++_i1175) + org.apache.thrift.protocol.TList _list1178 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.filters = new ArrayList(_list1178.size); + String _elem1179; + for (int _i1180 = 0; _i1180 < _list1178.size; ++_i1180) { - _elem1174 = iprot.readString(); - struct.filters.add(_elem1174); + _elem1179 = iprot.readString(); + struct.filters.add(_elem1179); } } struct.setFiltersIsSet(true); } + if (incoming.get(2)) { + { + org.apache.thrift.protocol.TList _list1181 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.BYTE, iprot.readI32()); + struct.filterExpr = new ArrayList(_list1181.size); + byte _elem1182; + for (int _i1183 = 0; _i1183 < _list1181.size; ++_i1183) + { + _elem1182 = iprot.readByte(); + struct.filterExpr.add(_elem1182); + } + } + struct.setFilterExprIsSet(true); + } + if (incoming.get(3)) { + struct.defaultPartName = iprot.readString(); + struct.setDefaultPartNameIsSet(true); + } } } diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java index bb3743cd0e..c927bbca17 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java @@ -1139,13 +1139,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetPartitionsReques case 6: // GROUP_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1184 = iprot.readListBegin(); - struct.groupNames = new ArrayList(_list1184.size); - String _elem1185; - for (int _i1186 = 0; _i1186 < _list1184.size; ++_i1186) + org.apache.thrift.protocol.TList _list1192 = iprot.readListBegin(); + struct.groupNames = new ArrayList(_list1192.size); + String _elem1193; + for (int _i1194 = 0; _i1194 < _list1192.size; ++_i1194) { - _elem1185 = iprot.readString(); - struct.groupNames.add(_elem1185); + _elem1193 = iprot.readString(); + struct.groupNames.add(_elem1193); } iprot.readListEnd(); } @@ -1175,13 +1175,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetPartitionsReques case 9: // PROCESSOR_CAPABILITIES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1187 = iprot.readListBegin(); - struct.processorCapabilities = new ArrayList(_list1187.size); - String _elem1188; - for (int _i1189 = 0; _i1189 < _list1187.size; ++_i1189) + org.apache.thrift.protocol.TList _list1195 = iprot.readListBegin(); + struct.processorCapabilities = new ArrayList(_list1195.size); + String _elem1196; + for (int _i1197 = 0; _i1197 < _list1195.size; ++_i1197) { - _elem1188 = iprot.readString(); - struct.processorCapabilities.add(_elem1188); + _elem1196 = iprot.readString(); + struct.processorCapabilities.add(_elem1196); } iprot.readListEnd(); } @@ -1245,9 +1245,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetPartitionsReque oprot.writeFieldBegin(GROUP_NAMES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.groupNames.size())); - for (String _iter1190 : struct.groupNames) + for (String _iter1198 : struct.groupNames) { - oprot.writeString(_iter1190); + oprot.writeString(_iter1198); } oprot.writeListEnd(); } @@ -1269,9 +1269,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetPartitionsReque oprot.writeFieldBegin(PROCESSOR_CAPABILITIES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.processorCapabilities.size())); - for (String _iter1191 : struct.processorCapabilities) + for (String _iter1199 : struct.processorCapabilities) { - oprot.writeString(_iter1191); + oprot.writeString(_iter1199); } oprot.writeListEnd(); } @@ -1352,9 +1352,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPartitionsReques if (struct.isSetGroupNames()) { { oprot.writeI32(struct.groupNames.size()); - for (String _iter1192 : struct.groupNames) + for (String _iter1200 : struct.groupNames) { - oprot.writeString(_iter1192); + oprot.writeString(_iter1200); } } } @@ -1367,9 +1367,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPartitionsReques if (struct.isSetProcessorCapabilities()) { { oprot.writeI32(struct.processorCapabilities.size()); - for (String _iter1193 : struct.processorCapabilities) + for (String _iter1201 : struct.processorCapabilities) { - oprot.writeString(_iter1193); + oprot.writeString(_iter1201); } } } @@ -1404,13 +1404,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsRequest } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1194 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.groupNames = new ArrayList(_list1194.size); - String _elem1195; - for (int _i1196 = 0; _i1196 < _list1194.size; ++_i1196) + org.apache.thrift.protocol.TList _list1202 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.groupNames = new ArrayList(_list1202.size); + String _elem1203; + for (int _i1204 = 0; _i1204 < _list1202.size; ++_i1204) { - _elem1195 = iprot.readString(); - struct.groupNames.add(_elem1195); + _elem1203 = iprot.readString(); + struct.groupNames.add(_elem1203); } } struct.setGroupNamesIsSet(true); @@ -1427,13 +1427,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsRequest } if (incoming.get(8)) { { - org.apache.thrift.protocol.TList _list1197 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.processorCapabilities = new ArrayList(_list1197.size); - String _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.STRING, iprot.readI32()); + struct.processorCapabilities = new ArrayList(_list1205.size); + String _elem1206; + for (int _i1207 = 0; _i1207 < _list1205.size; ++_i1207) { - _elem1198 = iprot.readString(); - struct.processorCapabilities.add(_elem1198); + _elem1206 = iprot.readString(); + struct.processorCapabilities.add(_elem1206); } } struct.setProcessorCapabilitiesIsSet(true); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java index 42f78a6199..342f05e5c3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java @@ -350,14 +350,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, GetPartitionsRespon case 1: // PARTITION_SPEC if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1176 = iprot.readListBegin(); - struct.partitionSpec = new ArrayList(_list1176.size); - PartitionSpec _elem1177; - for (int _i1178 = 0; _i1178 < _list1176.size; ++_i1178) + org.apache.thrift.protocol.TList _list1184 = iprot.readListBegin(); + struct.partitionSpec = new ArrayList(_list1184.size); + PartitionSpec _elem1185; + for (int _i1186 = 0; _i1186 < _list1184.size; ++_i1186) { - _elem1177 = new PartitionSpec(); - _elem1177.read(iprot); - struct.partitionSpec.add(_elem1177); + _elem1185 = new PartitionSpec(); + _elem1185.read(iprot); + struct.partitionSpec.add(_elem1185); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, GetPartitionsRespo oprot.writeFieldBegin(PARTITION_SPEC_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.partitionSpec.size())); - for (PartitionSpec _iter1179 : struct.partitionSpec) + for (PartitionSpec _iter1187 : struct.partitionSpec) { - _iter1179.write(oprot); + _iter1187.write(oprot); } oprot.writeListEnd(); } @@ -416,9 +416,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, GetPartitionsRespon if (struct.isSetPartitionSpec()) { { oprot.writeI32(struct.partitionSpec.size()); - for (PartitionSpec _iter1180 : struct.partitionSpec) + for (PartitionSpec _iter1188 : struct.partitionSpec) { - _iter1180.write(oprot); + _iter1188.write(oprot); } } } @@ -430,14 +430,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, GetPartitionsRespons BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1181 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.partitionSpec = new ArrayList(_list1181.size); - PartitionSpec _elem1182; - for (int _i1183 = 0; _i1183 < _list1181.size; ++_i1183) + org.apache.thrift.protocol.TList _list1189 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.partitionSpec = new ArrayList(_list1189.size); + PartitionSpec _elem1190; + for (int _i1191 = 0; _i1191 < _list1189.size; ++_i1191) { - _elem1182 = new PartitionSpec(); - _elem1182.read(iprot); - struct.partitionSpec.add(_elem1182); + _elem1190 = new PartitionSpec(); + _elem1190.read(iprot); + struct.partitionSpec.add(_elem1190); } } struct.setPartitionSpecIsSet(true); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java index 26cc9dd137..7326906832 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java @@ -46788,13 +46788,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 _list1200 = iprot.readListBegin(); - struct.success = new ArrayList(_list1200.size); - String _elem1201; - for (int _i1202 = 0; _i1202 < _list1200.size; ++_i1202) + org.apache.thrift.protocol.TList _list1208 = iprot.readListBegin(); + struct.success = new ArrayList(_list1208.size); + String _elem1209; + for (int _i1210 = 0; _i1210 < _list1208.size; ++_i1210) { - _elem1201 = iprot.readString(); - struct.success.add(_elem1201); + _elem1209 = iprot.readString(); + struct.success.add(_elem1209); } iprot.readListEnd(); } @@ -46829,9 +46829,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 _iter1203 : struct.success) + for (String _iter1211 : struct.success) { - oprot.writeString(_iter1203); + oprot.writeString(_iter1211); } oprot.writeListEnd(); } @@ -46870,9 +46870,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_databases_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1204 : struct.success) + for (String _iter1212 : struct.success) { - oprot.writeString(_iter1204); + oprot.writeString(_iter1212); } } } @@ -46887,13 +46887,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 _list1205 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1205.size); - String _elem1206; - for (int _i1207 = 0; _i1207 < _list1205.size; ++_i1207) + org.apache.thrift.protocol.TList _list1213 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1213.size); + String _elem1214; + for (int _i1215 = 0; _i1215 < _list1213.size; ++_i1215) { - _elem1206 = iprot.readString(); - struct.success.add(_elem1206); + _elem1214 = iprot.readString(); + struct.success.add(_elem1214); } } struct.setSuccessIsSet(true); @@ -47547,13 +47547,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 _list1208 = iprot.readListBegin(); - struct.success = new ArrayList(_list1208.size); - String _elem1209; - for (int _i1210 = 0; _i1210 < _list1208.size; ++_i1210) + org.apache.thrift.protocol.TList _list1216 = iprot.readListBegin(); + struct.success = new ArrayList(_list1216.size); + String _elem1217; + for (int _i1218 = 0; _i1218 < _list1216.size; ++_i1218) { - _elem1209 = iprot.readString(); - struct.success.add(_elem1209); + _elem1217 = iprot.readString(); + struct.success.add(_elem1217); } iprot.readListEnd(); } @@ -47588,9 +47588,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 _iter1211 : struct.success) + for (String _iter1219 : struct.success) { - oprot.writeString(_iter1211); + oprot.writeString(_iter1219); } oprot.writeListEnd(); } @@ -47629,9 +47629,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_all_databases_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1212 : struct.success) + for (String _iter1220 : struct.success) { - oprot.writeString(_iter1212); + oprot.writeString(_iter1220); } } } @@ -47646,13 +47646,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 _list1213 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = 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.success = new ArrayList(_list1221.size); + String _elem1222; + for (int _i1223 = 0; _i1223 < _list1221.size; ++_i1223) { - _elem1214 = iprot.readString(); - struct.success.add(_elem1214); + _elem1222 = iprot.readString(); + struct.success.add(_elem1222); } } struct.setSuccessIsSet(true); @@ -52259,16 +52259,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 _map1216 = iprot.readMapBegin(); - struct.success = new HashMap(2*_map1216.size); - String _key1217; - Type _val1218; - for (int _i1219 = 0; _i1219 < _map1216.size; ++_i1219) + org.apache.thrift.protocol.TMap _map1224 = iprot.readMapBegin(); + struct.success = new HashMap(2*_map1224.size); + String _key1225; + Type _val1226; + for (int _i1227 = 0; _i1227 < _map1224.size; ++_i1227) { - _key1217 = iprot.readString(); - _val1218 = new Type(); - _val1218.read(iprot); - struct.success.put(_key1217, _val1218); + _key1225 = iprot.readString(); + _val1226 = new Type(); + _val1226.read(iprot); + struct.success.put(_key1225, _val1226); } iprot.readMapEnd(); } @@ -52303,10 +52303,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 _iter1220 : struct.success.entrySet()) + for (Map.Entry _iter1228 : struct.success.entrySet()) { - oprot.writeString(_iter1220.getKey()); - _iter1220.getValue().write(oprot); + oprot.writeString(_iter1228.getKey()); + _iter1228.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -52345,10 +52345,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 _iter1221 : struct.success.entrySet()) + for (Map.Entry _iter1229 : struct.success.entrySet()) { - oprot.writeString(_iter1221.getKey()); - _iter1221.getValue().write(oprot); + oprot.writeString(_iter1229.getKey()); + _iter1229.getValue().write(oprot); } } } @@ -52363,16 +52363,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 _map1222 = 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*_map1222.size); - String _key1223; - Type _val1224; - for (int _i1225 = 0; _i1225 < _map1222.size; ++_i1225) + org.apache.thrift.protocol.TMap _map1230 = 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*_map1230.size); + String _key1231; + Type _val1232; + for (int _i1233 = 0; _i1233 < _map1230.size; ++_i1233) { - _key1223 = iprot.readString(); - _val1224 = new Type(); - _val1224.read(iprot); - struct.success.put(_key1223, _val1224); + _key1231 = iprot.readString(); + _val1232 = new Type(); + _val1232.read(iprot); + struct.success.put(_key1231, _val1232); } } struct.setSuccessIsSet(true); @@ -53407,14 +53407,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 _list1226 = iprot.readListBegin(); - struct.success = new ArrayList(_list1226.size); - FieldSchema _elem1227; - for (int _i1228 = 0; _i1228 < _list1226.size; ++_i1228) + org.apache.thrift.protocol.TList _list1234 = iprot.readListBegin(); + struct.success = new ArrayList(_list1234.size); + FieldSchema _elem1235; + for (int _i1236 = 0; _i1236 < _list1234.size; ++_i1236) { - _elem1227 = new FieldSchema(); - _elem1227.read(iprot); - struct.success.add(_elem1227); + _elem1235 = new FieldSchema(); + _elem1235.read(iprot); + struct.success.add(_elem1235); } iprot.readListEnd(); } @@ -53467,9 +53467,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 _iter1229 : struct.success) + for (FieldSchema _iter1237 : struct.success) { - _iter1229.write(oprot); + _iter1237.write(oprot); } oprot.writeListEnd(); } @@ -53524,9 +53524,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_fields_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter1230 : struct.success) + for (FieldSchema _iter1238 : struct.success) { - _iter1230.write(oprot); + _iter1238.write(oprot); } } } @@ -53547,14 +53547,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 _list1231 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1231.size); - FieldSchema _elem1232; - for (int _i1233 = 0; _i1233 < _list1231.size; ++_i1233) + org.apache.thrift.protocol.TList _list1239 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1239.size); + FieldSchema _elem1240; + for (int _i1241 = 0; _i1241 < _list1239.size; ++_i1241) { - _elem1232 = new FieldSchema(); - _elem1232.read(iprot); - struct.success.add(_elem1232); + _elem1240 = new FieldSchema(); + _elem1240.read(iprot); + struct.success.add(_elem1240); } } struct.setSuccessIsSet(true); @@ -54708,14 +54708,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 _list1234 = iprot.readListBegin(); - struct.success = new ArrayList(_list1234.size); - FieldSchema _elem1235; - for (int _i1236 = 0; _i1236 < _list1234.size; ++_i1236) + org.apache.thrift.protocol.TList _list1242 = iprot.readListBegin(); + struct.success = new ArrayList(_list1242.size); + FieldSchema _elem1243; + for (int _i1244 = 0; _i1244 < _list1242.size; ++_i1244) { - _elem1235 = new FieldSchema(); - _elem1235.read(iprot); - struct.success.add(_elem1235); + _elem1243 = new FieldSchema(); + _elem1243.read(iprot); + struct.success.add(_elem1243); } iprot.readListEnd(); } @@ -54768,9 +54768,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 _iter1237 : struct.success) + for (FieldSchema _iter1245 : struct.success) { - _iter1237.write(oprot); + _iter1245.write(oprot); } oprot.writeListEnd(); } @@ -54825,9 +54825,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_fields_with_env if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter1238 : struct.success) + for (FieldSchema _iter1246 : struct.success) { - _iter1238.write(oprot); + _iter1246.write(oprot); } } } @@ -54848,14 +54848,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 _list1239 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1239.size); - FieldSchema _elem1240; - for (int _i1241 = 0; _i1241 < _list1239.size; ++_i1241) + org.apache.thrift.protocol.TList _list1247 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1247.size); + FieldSchema _elem1248; + for (int _i1249 = 0; _i1249 < _list1247.size; ++_i1249) { - _elem1240 = new FieldSchema(); - _elem1240.read(iprot); - struct.success.add(_elem1240); + _elem1248 = new FieldSchema(); + _elem1248.read(iprot); + struct.success.add(_elem1248); } } struct.setSuccessIsSet(true); @@ -55900,14 +55900,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 _list1242 = iprot.readListBegin(); - struct.success = new ArrayList(_list1242.size); - FieldSchema _elem1243; - for (int _i1244 = 0; _i1244 < _list1242.size; ++_i1244) + org.apache.thrift.protocol.TList _list1250 = iprot.readListBegin(); + struct.success = new ArrayList(_list1250.size); + FieldSchema _elem1251; + for (int _i1252 = 0; _i1252 < _list1250.size; ++_i1252) { - _elem1243 = new FieldSchema(); - _elem1243.read(iprot); - struct.success.add(_elem1243); + _elem1251 = new FieldSchema(); + _elem1251.read(iprot); + struct.success.add(_elem1251); } iprot.readListEnd(); } @@ -55960,9 +55960,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 _iter1245 : struct.success) + for (FieldSchema _iter1253 : struct.success) { - _iter1245.write(oprot); + _iter1253.write(oprot); } oprot.writeListEnd(); } @@ -56017,9 +56017,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_schema_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter1246 : struct.success) + for (FieldSchema _iter1254 : struct.success) { - _iter1246.write(oprot); + _iter1254.write(oprot); } } } @@ -56040,14 +56040,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 _list1247 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1247.size); - FieldSchema _elem1248; - for (int _i1249 = 0; _i1249 < _list1247.size; ++_i1249) + org.apache.thrift.protocol.TList _list1255 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1255.size); + FieldSchema _elem1256; + for (int _i1257 = 0; _i1257 < _list1255.size; ++_i1257) { - _elem1248 = new FieldSchema(); - _elem1248.read(iprot); - struct.success.add(_elem1248); + _elem1256 = new FieldSchema(); + _elem1256.read(iprot); + struct.success.add(_elem1256); } } struct.setSuccessIsSet(true); @@ -57201,14 +57201,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 _list1250 = iprot.readListBegin(); - struct.success = new ArrayList(_list1250.size); - FieldSchema _elem1251; - for (int _i1252 = 0; _i1252 < _list1250.size; ++_i1252) + org.apache.thrift.protocol.TList _list1258 = iprot.readListBegin(); + struct.success = new ArrayList(_list1258.size); + FieldSchema _elem1259; + for (int _i1260 = 0; _i1260 < _list1258.size; ++_i1260) { - _elem1251 = new FieldSchema(); - _elem1251.read(iprot); - struct.success.add(_elem1251); + _elem1259 = new FieldSchema(); + _elem1259.read(iprot); + struct.success.add(_elem1259); } iprot.readListEnd(); } @@ -57261,9 +57261,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 _iter1253 : struct.success) + for (FieldSchema _iter1261 : struct.success) { - _iter1253.write(oprot); + _iter1261.write(oprot); } oprot.writeListEnd(); } @@ -57318,9 +57318,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_schema_with_env if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (FieldSchema _iter1254 : struct.success) + for (FieldSchema _iter1262 : struct.success) { - _iter1254.write(oprot); + _iter1262.write(oprot); } } } @@ -57341,14 +57341,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 _list1255 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1255.size); - FieldSchema _elem1256; - for (int _i1257 = 0; _i1257 < _list1255.size; ++_i1257) + org.apache.thrift.protocol.TList _list1263 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1263.size); + FieldSchema _elem1264; + for (int _i1265 = 0; _i1265 < _list1263.size; ++_i1265) { - _elem1256 = new FieldSchema(); - _elem1256.read(iprot); - struct.success.add(_elem1256); + _elem1264 = new FieldSchema(); + _elem1264.read(iprot); + struct.success.add(_elem1264); } } struct.setSuccessIsSet(true); @@ -60477,14 +60477,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 _list1258 = iprot.readListBegin(); - struct.primaryKeys = new ArrayList(_list1258.size); - SQLPrimaryKey _elem1259; - for (int _i1260 = 0; _i1260 < _list1258.size; ++_i1260) + org.apache.thrift.protocol.TList _list1266 = iprot.readListBegin(); + struct.primaryKeys = new ArrayList(_list1266.size); + SQLPrimaryKey _elem1267; + for (int _i1268 = 0; _i1268 < _list1266.size; ++_i1268) { - _elem1259 = new SQLPrimaryKey(); - _elem1259.read(iprot); - struct.primaryKeys.add(_elem1259); + _elem1267 = new SQLPrimaryKey(); + _elem1267.read(iprot); + struct.primaryKeys.add(_elem1267); } iprot.readListEnd(); } @@ -60496,14 +60496,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 _list1261 = iprot.readListBegin(); - struct.foreignKeys = new ArrayList(_list1261.size); - SQLForeignKey _elem1262; - for (int _i1263 = 0; _i1263 < _list1261.size; ++_i1263) + org.apache.thrift.protocol.TList _list1269 = iprot.readListBegin(); + struct.foreignKeys = new ArrayList(_list1269.size); + SQLForeignKey _elem1270; + for (int _i1271 = 0; _i1271 < _list1269.size; ++_i1271) { - _elem1262 = new SQLForeignKey(); - _elem1262.read(iprot); - struct.foreignKeys.add(_elem1262); + _elem1270 = new SQLForeignKey(); + _elem1270.read(iprot); + struct.foreignKeys.add(_elem1270); } iprot.readListEnd(); } @@ -60515,14 +60515,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 _list1264 = iprot.readListBegin(); - struct.uniqueConstraints = new ArrayList(_list1264.size); - SQLUniqueConstraint _elem1265; - for (int _i1266 = 0; _i1266 < _list1264.size; ++_i1266) + org.apache.thrift.protocol.TList _list1272 = iprot.readListBegin(); + struct.uniqueConstraints = new ArrayList(_list1272.size); + SQLUniqueConstraint _elem1273; + for (int _i1274 = 0; _i1274 < _list1272.size; ++_i1274) { - _elem1265 = new SQLUniqueConstraint(); - _elem1265.read(iprot); - struct.uniqueConstraints.add(_elem1265); + _elem1273 = new SQLUniqueConstraint(); + _elem1273.read(iprot); + struct.uniqueConstraints.add(_elem1273); } iprot.readListEnd(); } @@ -60534,14 +60534,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 _list1267 = iprot.readListBegin(); - struct.notNullConstraints = new ArrayList(_list1267.size); - SQLNotNullConstraint _elem1268; - for (int _i1269 = 0; _i1269 < _list1267.size; ++_i1269) + org.apache.thrift.protocol.TList _list1275 = iprot.readListBegin(); + struct.notNullConstraints = new ArrayList(_list1275.size); + SQLNotNullConstraint _elem1276; + for (int _i1277 = 0; _i1277 < _list1275.size; ++_i1277) { - _elem1268 = new SQLNotNullConstraint(); - _elem1268.read(iprot); - struct.notNullConstraints.add(_elem1268); + _elem1276 = new SQLNotNullConstraint(); + _elem1276.read(iprot); + struct.notNullConstraints.add(_elem1276); } iprot.readListEnd(); } @@ -60553,14 +60553,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 _list1270 = iprot.readListBegin(); - struct.defaultConstraints = new ArrayList(_list1270.size); - SQLDefaultConstraint _elem1271; - for (int _i1272 = 0; _i1272 < _list1270.size; ++_i1272) + org.apache.thrift.protocol.TList _list1278 = iprot.readListBegin(); + struct.defaultConstraints = new ArrayList(_list1278.size); + SQLDefaultConstraint _elem1279; + for (int _i1280 = 0; _i1280 < _list1278.size; ++_i1280) { - _elem1271 = new SQLDefaultConstraint(); - _elem1271.read(iprot); - struct.defaultConstraints.add(_elem1271); + _elem1279 = new SQLDefaultConstraint(); + _elem1279.read(iprot); + struct.defaultConstraints.add(_elem1279); } iprot.readListEnd(); } @@ -60572,14 +60572,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 _list1273 = iprot.readListBegin(); - struct.checkConstraints = new ArrayList(_list1273.size); - SQLCheckConstraint _elem1274; - for (int _i1275 = 0; _i1275 < _list1273.size; ++_i1275) + org.apache.thrift.protocol.TList _list1281 = iprot.readListBegin(); + struct.checkConstraints = new ArrayList(_list1281.size); + SQLCheckConstraint _elem1282; + for (int _i1283 = 0; _i1283 < _list1281.size; ++_i1283) { - _elem1274 = new SQLCheckConstraint(); - _elem1274.read(iprot); - struct.checkConstraints.add(_elem1274); + _elem1282 = new SQLCheckConstraint(); + _elem1282.read(iprot); + struct.checkConstraints.add(_elem1282); } iprot.readListEnd(); } @@ -60610,9 +60610,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 _iter1276 : struct.primaryKeys) + for (SQLPrimaryKey _iter1284 : struct.primaryKeys) { - _iter1276.write(oprot); + _iter1284.write(oprot); } oprot.writeListEnd(); } @@ -60622,9 +60622,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 _iter1277 : struct.foreignKeys) + for (SQLForeignKey _iter1285 : struct.foreignKeys) { - _iter1277.write(oprot); + _iter1285.write(oprot); } oprot.writeListEnd(); } @@ -60634,9 +60634,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 _iter1278 : struct.uniqueConstraints) + for (SQLUniqueConstraint _iter1286 : struct.uniqueConstraints) { - _iter1278.write(oprot); + _iter1286.write(oprot); } oprot.writeListEnd(); } @@ -60646,9 +60646,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 _iter1279 : struct.notNullConstraints) + for (SQLNotNullConstraint _iter1287 : struct.notNullConstraints) { - _iter1279.write(oprot); + _iter1287.write(oprot); } oprot.writeListEnd(); } @@ -60658,9 +60658,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 _iter1280 : struct.defaultConstraints) + for (SQLDefaultConstraint _iter1288 : struct.defaultConstraints) { - _iter1280.write(oprot); + _iter1288.write(oprot); } oprot.writeListEnd(); } @@ -60670,9 +60670,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 _iter1281 : struct.checkConstraints) + for (SQLCheckConstraint _iter1289 : struct.checkConstraints) { - _iter1281.write(oprot); + _iter1289.write(oprot); } oprot.writeListEnd(); } @@ -60724,54 +60724,54 @@ public void write(org.apache.thrift.protocol.TProtocol prot, create_table_with_c if (struct.isSetPrimaryKeys()) { { oprot.writeI32(struct.primaryKeys.size()); - for (SQLPrimaryKey _iter1282 : struct.primaryKeys) + for (SQLPrimaryKey _iter1290 : struct.primaryKeys) { - _iter1282.write(oprot); + _iter1290.write(oprot); } } } if (struct.isSetForeignKeys()) { { oprot.writeI32(struct.foreignKeys.size()); - for (SQLForeignKey _iter1283 : struct.foreignKeys) + for (SQLForeignKey _iter1291 : struct.foreignKeys) { - _iter1283.write(oprot); + _iter1291.write(oprot); } } } if (struct.isSetUniqueConstraints()) { { oprot.writeI32(struct.uniqueConstraints.size()); - for (SQLUniqueConstraint _iter1284 : struct.uniqueConstraints) + for (SQLUniqueConstraint _iter1292 : struct.uniqueConstraints) { - _iter1284.write(oprot); + _iter1292.write(oprot); } } } if (struct.isSetNotNullConstraints()) { { oprot.writeI32(struct.notNullConstraints.size()); - for (SQLNotNullConstraint _iter1285 : struct.notNullConstraints) + for (SQLNotNullConstraint _iter1293 : struct.notNullConstraints) { - _iter1285.write(oprot); + _iter1293.write(oprot); } } } if (struct.isSetDefaultConstraints()) { { oprot.writeI32(struct.defaultConstraints.size()); - for (SQLDefaultConstraint _iter1286 : struct.defaultConstraints) + for (SQLDefaultConstraint _iter1294 : struct.defaultConstraints) { - _iter1286.write(oprot); + _iter1294.write(oprot); } } } if (struct.isSetCheckConstraints()) { { oprot.writeI32(struct.checkConstraints.size()); - for (SQLCheckConstraint _iter1287 : struct.checkConstraints) + for (SQLCheckConstraint _iter1295 : struct.checkConstraints) { - _iter1287.write(oprot); + _iter1295.write(oprot); } } } @@ -60788,84 +60788,84 @@ public void read(org.apache.thrift.protocol.TProtocol prot, create_table_with_co } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1288 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.primaryKeys = new ArrayList(_list1288.size); - SQLPrimaryKey _elem1289; - for (int _i1290 = 0; _i1290 < _list1288.size; ++_i1290) + org.apache.thrift.protocol.TList _list1296 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.primaryKeys = new ArrayList(_list1296.size); + SQLPrimaryKey _elem1297; + for (int _i1298 = 0; _i1298 < _list1296.size; ++_i1298) { - _elem1289 = new SQLPrimaryKey(); - _elem1289.read(iprot); - struct.primaryKeys.add(_elem1289); + _elem1297 = new SQLPrimaryKey(); + _elem1297.read(iprot); + struct.primaryKeys.add(_elem1297); } } struct.setPrimaryKeysIsSet(true); } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1291 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.foreignKeys = new ArrayList(_list1291.size); - SQLForeignKey _elem1292; - for (int _i1293 = 0; _i1293 < _list1291.size; ++_i1293) + org.apache.thrift.protocol.TList _list1299 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.foreignKeys = new ArrayList(_list1299.size); + SQLForeignKey _elem1300; + for (int _i1301 = 0; _i1301 < _list1299.size; ++_i1301) { - _elem1292 = new SQLForeignKey(); - _elem1292.read(iprot); - struct.foreignKeys.add(_elem1292); + _elem1300 = new SQLForeignKey(); + _elem1300.read(iprot); + struct.foreignKeys.add(_elem1300); } } struct.setForeignKeysIsSet(true); } if (incoming.get(3)) { { - org.apache.thrift.protocol.TList _list1294 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.uniqueConstraints = new ArrayList(_list1294.size); - SQLUniqueConstraint _elem1295; - for (int _i1296 = 0; _i1296 < _list1294.size; ++_i1296) + org.apache.thrift.protocol.TList _list1302 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.uniqueConstraints = new ArrayList(_list1302.size); + SQLUniqueConstraint _elem1303; + for (int _i1304 = 0; _i1304 < _list1302.size; ++_i1304) { - _elem1295 = new SQLUniqueConstraint(); - _elem1295.read(iprot); - struct.uniqueConstraints.add(_elem1295); + _elem1303 = new SQLUniqueConstraint(); + _elem1303.read(iprot); + struct.uniqueConstraints.add(_elem1303); } } struct.setUniqueConstraintsIsSet(true); } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1297 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.notNullConstraints = new ArrayList(_list1297.size); - SQLNotNullConstraint _elem1298; - for (int _i1299 = 0; _i1299 < _list1297.size; ++_i1299) + org.apache.thrift.protocol.TList _list1305 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.notNullConstraints = new ArrayList(_list1305.size); + SQLNotNullConstraint _elem1306; + for (int _i1307 = 0; _i1307 < _list1305.size; ++_i1307) { - _elem1298 = new SQLNotNullConstraint(); - _elem1298.read(iprot); - struct.notNullConstraints.add(_elem1298); + _elem1306 = new SQLNotNullConstraint(); + _elem1306.read(iprot); + struct.notNullConstraints.add(_elem1306); } } struct.setNotNullConstraintsIsSet(true); } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1300 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.defaultConstraints = new ArrayList(_list1300.size); - SQLDefaultConstraint _elem1301; - for (int _i1302 = 0; _i1302 < _list1300.size; ++_i1302) + org.apache.thrift.protocol.TList _list1308 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.defaultConstraints = new ArrayList(_list1308.size); + SQLDefaultConstraint _elem1309; + for (int _i1310 = 0; _i1310 < _list1308.size; ++_i1310) { - _elem1301 = new SQLDefaultConstraint(); - _elem1301.read(iprot); - struct.defaultConstraints.add(_elem1301); + _elem1309 = new SQLDefaultConstraint(); + _elem1309.read(iprot); + struct.defaultConstraints.add(_elem1309); } } struct.setDefaultConstraintsIsSet(true); } if (incoming.get(6)) { { - org.apache.thrift.protocol.TList _list1303 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.checkConstraints = new ArrayList(_list1303.size); - SQLCheckConstraint _elem1304; - for (int _i1305 = 0; _i1305 < _list1303.size; ++_i1305) + org.apache.thrift.protocol.TList _list1311 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.checkConstraints = new ArrayList(_list1311.size); + SQLCheckConstraint _elem1312; + for (int _i1313 = 0; _i1313 < _list1311.size; ++_i1313) { - _elem1304 = new SQLCheckConstraint(); - _elem1304.read(iprot); - struct.checkConstraints.add(_elem1304); + _elem1312 = new SQLCheckConstraint(); + _elem1312.read(iprot); + struct.checkConstraints.add(_elem1312); } } struct.setCheckConstraintsIsSet(true); @@ -71056,13 +71056,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 _list1306 = iprot.readListBegin(); - struct.partNames = new ArrayList(_list1306.size); - String _elem1307; - for (int _i1308 = 0; _i1308 < _list1306.size; ++_i1308) + org.apache.thrift.protocol.TList _list1314 = iprot.readListBegin(); + struct.partNames = new ArrayList(_list1314.size); + String _elem1315; + for (int _i1316 = 0; _i1316 < _list1314.size; ++_i1316) { - _elem1307 = iprot.readString(); - struct.partNames.add(_elem1307); + _elem1315 = iprot.readString(); + struct.partNames.add(_elem1315); } iprot.readListEnd(); } @@ -71098,9 +71098,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 _iter1309 : struct.partNames) + for (String _iter1317 : struct.partNames) { - oprot.writeString(_iter1309); + oprot.writeString(_iter1317); } oprot.writeListEnd(); } @@ -71143,9 +71143,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, truncate_table_args if (struct.isSetPartNames()) { { oprot.writeI32(struct.partNames.size()); - for (String _iter1310 : struct.partNames) + for (String _iter1318 : struct.partNames) { - oprot.writeString(_iter1310); + oprot.writeString(_iter1318); } } } @@ -71165,13 +71165,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, truncate_table_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1311 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.partNames = new ArrayList(_list1311.size); - String _elem1312; - for (int _i1313 = 0; _i1313 < _list1311.size; ++_i1313) + org.apache.thrift.protocol.TList _list1319 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.partNames = new ArrayList(_list1319.size); + String _elem1320; + for (int _i1321 = 0; _i1321 < _list1319.size; ++_i1321) { - _elem1312 = iprot.readString(); - struct.partNames.add(_elem1312); + _elem1320 = iprot.readString(); + struct.partNames.add(_elem1320); } } struct.setPartNamesIsSet(true); @@ -73228,13 +73228,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 _list1314 = iprot.readListBegin(); - struct.success = new ArrayList(_list1314.size); - String _elem1315; - for (int _i1316 = 0; _i1316 < _list1314.size; ++_i1316) + org.apache.thrift.protocol.TList _list1322 = iprot.readListBegin(); + struct.success = new ArrayList(_list1322.size); + String _elem1323; + for (int _i1324 = 0; _i1324 < _list1322.size; ++_i1324) { - _elem1315 = iprot.readString(); - struct.success.add(_elem1315); + _elem1323 = iprot.readString(); + struct.success.add(_elem1323); } iprot.readListEnd(); } @@ -73269,9 +73269,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 _iter1317 : struct.success) + for (String _iter1325 : struct.success) { - oprot.writeString(_iter1317); + oprot.writeString(_iter1325); } oprot.writeListEnd(); } @@ -73310,9 +73310,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_tables_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1318 : struct.success) + for (String _iter1326 : struct.success) { - oprot.writeString(_iter1318); + oprot.writeString(_iter1326); } } } @@ -73327,13 +73327,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 _list1319 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1319.size); - String _elem1320; - for (int _i1321 = 0; _i1321 < _list1319.size; ++_i1321) + org.apache.thrift.protocol.TList _list1327 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1327.size); + String _elem1328; + for (int _i1329 = 0; _i1329 < _list1327.size; ++_i1329) { - _elem1320 = iprot.readString(); - struct.success.add(_elem1320); + _elem1328 = iprot.readString(); + struct.success.add(_elem1328); } } struct.setSuccessIsSet(true); @@ -74307,13 +74307,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 _list1322 = iprot.readListBegin(); - struct.success = new ArrayList(_list1322.size); - String _elem1323; - for (int _i1324 = 0; _i1324 < _list1322.size; ++_i1324) + org.apache.thrift.protocol.TList _list1330 = iprot.readListBegin(); + struct.success = new ArrayList(_list1330.size); + String _elem1331; + for (int _i1332 = 0; _i1332 < _list1330.size; ++_i1332) { - _elem1323 = iprot.readString(); - struct.success.add(_elem1323); + _elem1331 = iprot.readString(); + struct.success.add(_elem1331); } iprot.readListEnd(); } @@ -74348,9 +74348,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 _iter1325 : struct.success) + for (String _iter1333 : struct.success) { - oprot.writeString(_iter1325); + oprot.writeString(_iter1333); } oprot.writeListEnd(); } @@ -74389,9 +74389,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_tables_by_type_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1326 : struct.success) + for (String _iter1334 : struct.success) { - oprot.writeString(_iter1326); + oprot.writeString(_iter1334); } } } @@ -74406,13 +74406,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 _list1327 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1327.size); - String _elem1328; - for (int _i1329 = 0; _i1329 < _list1327.size; ++_i1329) + org.apache.thrift.protocol.TList _list1335 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1335.size); + String _elem1336; + for (int _i1337 = 0; _i1337 < _list1335.size; ++_i1337) { - _elem1328 = iprot.readString(); - struct.success.add(_elem1328); + _elem1336 = iprot.readString(); + struct.success.add(_elem1336); } } struct.setSuccessIsSet(true); @@ -75069,14 +75069,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_all_materialize case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1330 = iprot.readListBegin(); - struct.success = new ArrayList(_list1330.size); - Table _elem1331; - for (int _i1332 = 0; _i1332 < _list1330.size; ++_i1332) + org.apache.thrift.protocol.TList _list1338 = iprot.readListBegin(); + struct.success = new ArrayList
(_list1338.size); + Table _elem1339; + for (int _i1340 = 0; _i1340 < _list1338.size; ++_i1340) { - _elem1331 = new Table(); - _elem1331.read(iprot); - struct.success.add(_elem1331); + _elem1339 = new Table(); + _elem1339.read(iprot); + struct.success.add(_elem1339); } iprot.readListEnd(); } @@ -75111,9 +75111,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_all_materializ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (Table _iter1333 : struct.success) + for (Table _iter1341 : struct.success) { - _iter1333.write(oprot); + _iter1341.write(oprot); } oprot.writeListEnd(); } @@ -75152,9 +75152,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_all_materialize if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Table _iter1334 : struct.success) + for (Table _iter1342 : struct.success) { - _iter1334.write(oprot); + _iter1342.write(oprot); } } } @@ -75169,14 +75169,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_all_materialized BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1335 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList
(_list1335.size); - Table _elem1336; - for (int _i1337 = 0; _i1337 < _list1335.size; ++_i1337) + org.apache.thrift.protocol.TList _list1343 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList
(_list1343.size); + Table _elem1344; + for (int _i1345 = 0; _i1345 < _list1343.size; ++_i1345) { - _elem1336 = new Table(); - _elem1336.read(iprot); - struct.success.add(_elem1336); + _elem1344 = new Table(); + _elem1344.read(iprot); + struct.success.add(_elem1344); } } struct.setSuccessIsSet(true); @@ -75942,13 +75942,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 _list1338 = iprot.readListBegin(); - struct.success = new ArrayList(_list1338.size); - String _elem1339; - for (int _i1340 = 0; _i1340 < _list1338.size; ++_i1340) + org.apache.thrift.protocol.TList _list1346 = iprot.readListBegin(); + struct.success = new ArrayList(_list1346.size); + String _elem1347; + for (int _i1348 = 0; _i1348 < _list1346.size; ++_i1348) { - _elem1339 = iprot.readString(); - struct.success.add(_elem1339); + _elem1347 = iprot.readString(); + struct.success.add(_elem1347); } iprot.readListEnd(); } @@ -75983,9 +75983,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 _iter1341 : struct.success) + for (String _iter1349 : struct.success) { - oprot.writeString(_iter1341); + oprot.writeString(_iter1349); } oprot.writeListEnd(); } @@ -76024,9 +76024,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_materialized_vi if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1342 : struct.success) + for (String _iter1350 : struct.success) { - oprot.writeString(_iter1342); + oprot.writeString(_iter1350); } } } @@ -76041,13 +76041,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 _list1343 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1343.size); - String _elem1344; - for (int _i1345 = 0; _i1345 < _list1343.size; ++_i1345) + org.apache.thrift.protocol.TList _list1351 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1351.size); + String _elem1352; + for (int _i1353 = 0; _i1353 < _list1351.size; ++_i1353) { - _elem1344 = iprot.readString(); - struct.success.add(_elem1344); + _elem1352 = iprot.readString(); + struct.success.add(_elem1352); } } struct.setSuccessIsSet(true); @@ -76552,13 +76552,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 _list1346 = iprot.readListBegin(); - struct.tbl_types = new ArrayList(_list1346.size); - String _elem1347; - for (int _i1348 = 0; _i1348 < _list1346.size; ++_i1348) + org.apache.thrift.protocol.TList _list1354 = iprot.readListBegin(); + struct.tbl_types = new ArrayList(_list1354.size); + String _elem1355; + for (int _i1356 = 0; _i1356 < _list1354.size; ++_i1356) { - _elem1347 = iprot.readString(); - struct.tbl_types.add(_elem1347); + _elem1355 = iprot.readString(); + struct.tbl_types.add(_elem1355); } iprot.readListEnd(); } @@ -76594,9 +76594,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 _iter1349 : struct.tbl_types) + for (String _iter1357 : struct.tbl_types) { - oprot.writeString(_iter1349); + oprot.writeString(_iter1357); } oprot.writeListEnd(); } @@ -76639,9 +76639,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 _iter1350 : struct.tbl_types) + for (String _iter1358 : struct.tbl_types) { - oprot.writeString(_iter1350); + oprot.writeString(_iter1358); } } } @@ -76661,13 +76661,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_meta_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1351 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tbl_types = new ArrayList(_list1351.size); - String _elem1352; - for (int _i1353 = 0; _i1353 < _list1351.size; ++_i1353) + org.apache.thrift.protocol.TList _list1359 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tbl_types = new ArrayList(_list1359.size); + String _elem1360; + for (int _i1361 = 0; _i1361 < _list1359.size; ++_i1361) { - _elem1352 = iprot.readString(); - struct.tbl_types.add(_elem1352); + _elem1360 = iprot.readString(); + struct.tbl_types.add(_elem1360); } } struct.setTbl_typesIsSet(true); @@ -77073,14 +77073,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 _list1354 = iprot.readListBegin(); - struct.success = new ArrayList(_list1354.size); - TableMeta _elem1355; - for (int _i1356 = 0; _i1356 < _list1354.size; ++_i1356) + org.apache.thrift.protocol.TList _list1362 = iprot.readListBegin(); + struct.success = new ArrayList(_list1362.size); + TableMeta _elem1363; + for (int _i1364 = 0; _i1364 < _list1362.size; ++_i1364) { - _elem1355 = new TableMeta(); - _elem1355.read(iprot); - struct.success.add(_elem1355); + _elem1363 = new TableMeta(); + _elem1363.read(iprot); + struct.success.add(_elem1363); } iprot.readListEnd(); } @@ -77115,9 +77115,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 _iter1357 : struct.success) + for (TableMeta _iter1365 : struct.success) { - _iter1357.write(oprot); + _iter1365.write(oprot); } oprot.writeListEnd(); } @@ -77156,9 +77156,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_meta_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (TableMeta _iter1358 : struct.success) + for (TableMeta _iter1366 : struct.success) { - _iter1358.write(oprot); + _iter1366.write(oprot); } } } @@ -77173,14 +77173,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 _list1359 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1359.size); - TableMeta _elem1360; - for (int _i1361 = 0; _i1361 < _list1359.size; ++_i1361) + org.apache.thrift.protocol.TList _list1367 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1367.size); + TableMeta _elem1368; + for (int _i1369 = 0; _i1369 < _list1367.size; ++_i1369) { - _elem1360 = new TableMeta(); - _elem1360.read(iprot); - struct.success.add(_elem1360); + _elem1368 = new TableMeta(); + _elem1368.read(iprot); + struct.success.add(_elem1368); } } struct.setSuccessIsSet(true); @@ -77946,13 +77946,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 _list1362 = iprot.readListBegin(); - struct.success = new ArrayList(_list1362.size); - String _elem1363; - for (int _i1364 = 0; _i1364 < _list1362.size; ++_i1364) + org.apache.thrift.protocol.TList _list1370 = iprot.readListBegin(); + struct.success = new ArrayList(_list1370.size); + String _elem1371; + for (int _i1372 = 0; _i1372 < _list1370.size; ++_i1372) { - _elem1363 = iprot.readString(); - struct.success.add(_elem1363); + _elem1371 = iprot.readString(); + struct.success.add(_elem1371); } iprot.readListEnd(); } @@ -77987,9 +77987,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 _iter1365 : struct.success) + for (String _iter1373 : struct.success) { - oprot.writeString(_iter1365); + oprot.writeString(_iter1373); } oprot.writeListEnd(); } @@ -78028,9 +78028,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_all_tables_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1366 : struct.success) + for (String _iter1374 : struct.success) { - oprot.writeString(_iter1366); + oprot.writeString(_iter1374); } } } @@ -78045,13 +78045,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 _list1367 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1367.size); - String _elem1368; - for (int _i1369 = 0; _i1369 < _list1367.size; ++_i1369) + org.apache.thrift.protocol.TList _list1375 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1375.size); + String _elem1376; + for (int _i1377 = 0; _i1377 < _list1375.size; ++_i1377) { - _elem1368 = iprot.readString(); - struct.success.add(_elem1368); + _elem1376 = iprot.readString(); + struct.success.add(_elem1376); } } struct.setSuccessIsSet(true); @@ -79504,13 +79504,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 _list1370 = iprot.readListBegin(); - struct.tbl_names = new ArrayList(_list1370.size); - String _elem1371; - for (int _i1372 = 0; _i1372 < _list1370.size; ++_i1372) + org.apache.thrift.protocol.TList _list1378 = iprot.readListBegin(); + struct.tbl_names = new ArrayList(_list1378.size); + String _elem1379; + for (int _i1380 = 0; _i1380 < _list1378.size; ++_i1380) { - _elem1371 = iprot.readString(); - struct.tbl_names.add(_elem1371); + _elem1379 = iprot.readString(); + struct.tbl_names.add(_elem1379); } iprot.readListEnd(); } @@ -79541,9 +79541,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 _iter1373 : struct.tbl_names) + for (String _iter1381 : struct.tbl_names) { - oprot.writeString(_iter1373); + oprot.writeString(_iter1381); } oprot.writeListEnd(); } @@ -79580,9 +79580,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 _iter1374 : struct.tbl_names) + for (String _iter1382 : struct.tbl_names) { - oprot.writeString(_iter1374); + oprot.writeString(_iter1382); } } } @@ -79598,13 +79598,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_table_objects_by } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1375 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tbl_names = new ArrayList(_list1375.size); - String _elem1376; - for (int _i1377 = 0; _i1377 < _list1375.size; ++_i1377) + org.apache.thrift.protocol.TList _list1383 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tbl_names = new ArrayList(_list1383.size); + String _elem1384; + for (int _i1385 = 0; _i1385 < _list1383.size; ++_i1385) { - _elem1376 = iprot.readString(); - struct.tbl_names.add(_elem1376); + _elem1384 = iprot.readString(); + struct.tbl_names.add(_elem1384); } } struct.setTbl_namesIsSet(true); @@ -79929,14 +79929,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 _list1378 = iprot.readListBegin(); - struct.success = new ArrayList
(_list1378.size); - Table _elem1379; - for (int _i1380 = 0; _i1380 < _list1378.size; ++_i1380) + org.apache.thrift.protocol.TList _list1386 = iprot.readListBegin(); + struct.success = new ArrayList
(_list1386.size); + Table _elem1387; + for (int _i1388 = 0; _i1388 < _list1386.size; ++_i1388) { - _elem1379 = new Table(); - _elem1379.read(iprot); - struct.success.add(_elem1379); + _elem1387 = new Table(); + _elem1387.read(iprot); + struct.success.add(_elem1387); } iprot.readListEnd(); } @@ -79962,9 +79962,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 _iter1381 : struct.success) + for (Table _iter1389 : struct.success) { - _iter1381.write(oprot); + _iter1389.write(oprot); } oprot.writeListEnd(); } @@ -79995,9 +79995,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_objects_b if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Table _iter1382 : struct.success) + for (Table _iter1390 : struct.success) { - _iter1382.write(oprot); + _iter1390.write(oprot); } } } @@ -80009,14 +80009,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 _list1383 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList
(_list1383.size); - Table _elem1384; - for (int _i1385 = 0; _i1385 < _list1383.size; ++_i1385) + org.apache.thrift.protocol.TList _list1391 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList
(_list1391.size); + Table _elem1392; + for (int _i1393 = 0; _i1393 < _list1391.size; ++_i1393) { - _elem1384 = new Table(); - _elem1384.read(iprot); - struct.success.add(_elem1384); + _elem1392 = new Table(); + _elem1392.read(iprot); + struct.success.add(_elem1392); } } struct.setSuccessIsSet(true); @@ -80785,14 +80785,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_tables_ext_resu case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1386 = iprot.readListBegin(); - struct.success = new ArrayList(_list1386.size); - ExtendedTableInfo _elem1387; - for (int _i1388 = 0; _i1388 < _list1386.size; ++_i1388) + org.apache.thrift.protocol.TList _list1394 = iprot.readListBegin(); + struct.success = new ArrayList(_list1394.size); + ExtendedTableInfo _elem1395; + for (int _i1396 = 0; _i1396 < _list1394.size; ++_i1396) { - _elem1387 = new ExtendedTableInfo(); - _elem1387.read(iprot); - struct.success.add(_elem1387); + _elem1395 = new ExtendedTableInfo(); + _elem1395.read(iprot); + struct.success.add(_elem1395); } iprot.readListEnd(); } @@ -80827,9 +80827,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_tables_ext_res oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (ExtendedTableInfo _iter1389 : struct.success) + for (ExtendedTableInfo _iter1397 : struct.success) { - _iter1389.write(oprot); + _iter1397.write(oprot); } oprot.writeListEnd(); } @@ -80868,9 +80868,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_tables_ext_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (ExtendedTableInfo _iter1390 : struct.success) + for (ExtendedTableInfo _iter1398 : struct.success) { - _iter1390.write(oprot); + _iter1398.write(oprot); } } } @@ -80885,14 +80885,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_ext_resul BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1391 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1391.size); - ExtendedTableInfo _elem1392; - for (int _i1393 = 0; _i1393 < _list1391.size; ++_i1393) + org.apache.thrift.protocol.TList _list1399 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1399.size); + ExtendedTableInfo _elem1400; + for (int _i1401 = 0; _i1401 < _list1399.size; ++_i1401) { - _elem1392 = new ExtendedTableInfo(); - _elem1392.read(iprot); - struct.success.add(_elem1392); + _elem1400 = new ExtendedTableInfo(); + _elem1400.read(iprot); + struct.success.add(_elem1400); } } struct.setSuccessIsSet(true); @@ -86405,13 +86405,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 _list1394 = iprot.readListBegin(); - struct.success = new ArrayList(_list1394.size); - String _elem1395; - for (int _i1396 = 0; _i1396 < _list1394.size; ++_i1396) + org.apache.thrift.protocol.TList _list1402 = iprot.readListBegin(); + struct.success = new ArrayList(_list1402.size); + String _elem1403; + for (int _i1404 = 0; _i1404 < _list1402.size; ++_i1404) { - _elem1395 = iprot.readString(); - struct.success.add(_elem1395); + _elem1403 = iprot.readString(); + struct.success.add(_elem1403); } iprot.readListEnd(); } @@ -86464,9 +86464,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 _iter1397 : struct.success) + for (String _iter1405 : struct.success) { - oprot.writeString(_iter1397); + oprot.writeString(_iter1405); } oprot.writeListEnd(); } @@ -86521,9 +86521,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_table_names_by_ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1398 : struct.success) + for (String _iter1406 : struct.success) { - oprot.writeString(_iter1398); + oprot.writeString(_iter1406); } } } @@ -86544,13 +86544,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 _list1399 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1399.size); - String _elem1400; - for (int _i1401 = 0; _i1401 < _list1399.size; ++_i1401) + org.apache.thrift.protocol.TList _list1407 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1407.size); + String _elem1408; + for (int _i1409 = 0; _i1409 < _list1407.size; ++_i1409) { - _elem1400 = iprot.readString(); - struct.success.add(_elem1400); + _elem1408 = iprot.readString(); + struct.success.add(_elem1408); } } struct.setSuccessIsSet(true); @@ -93347,14 +93347,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 _list1402 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1402.size); - Partition _elem1403; - for (int _i1404 = 0; _i1404 < _list1402.size; ++_i1404) + org.apache.thrift.protocol.TList _list1410 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1410.size); + Partition _elem1411; + for (int _i1412 = 0; _i1412 < _list1410.size; ++_i1412) { - _elem1403 = new Partition(); - _elem1403.read(iprot); - struct.new_parts.add(_elem1403); + _elem1411 = new Partition(); + _elem1411.read(iprot); + struct.new_parts.add(_elem1411); } iprot.readListEnd(); } @@ -93380,9 +93380,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 _iter1405 : struct.new_parts) + for (Partition _iter1413 : struct.new_parts) { - _iter1405.write(oprot); + _iter1413.write(oprot); } oprot.writeListEnd(); } @@ -93413,9 +93413,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 _iter1406 : struct.new_parts) + for (Partition _iter1414 : struct.new_parts) { - _iter1406.write(oprot); + _iter1414.write(oprot); } } } @@ -93427,14 +93427,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 _list1407 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1407.size); - Partition _elem1408; - for (int _i1409 = 0; _i1409 < _list1407.size; ++_i1409) + org.apache.thrift.protocol.TList _list1415 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1415.size); + Partition _elem1416; + for (int _i1417 = 0; _i1417 < _list1415.size; ++_i1417) { - _elem1408 = new Partition(); - _elem1408.read(iprot); - struct.new_parts.add(_elem1408); + _elem1416 = new Partition(); + _elem1416.read(iprot); + struct.new_parts.add(_elem1416); } } struct.setNew_partsIsSet(true); @@ -94435,14 +94435,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 _list1410 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1410.size); - PartitionSpec _elem1411; - for (int _i1412 = 0; _i1412 < _list1410.size; ++_i1412) + org.apache.thrift.protocol.TList _list1418 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1418.size); + PartitionSpec _elem1419; + for (int _i1420 = 0; _i1420 < _list1418.size; ++_i1420) { - _elem1411 = new PartitionSpec(); - _elem1411.read(iprot); - struct.new_parts.add(_elem1411); + _elem1419 = new PartitionSpec(); + _elem1419.read(iprot); + struct.new_parts.add(_elem1419); } iprot.readListEnd(); } @@ -94468,9 +94468,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 _iter1413 : struct.new_parts) + for (PartitionSpec _iter1421 : struct.new_parts) { - _iter1413.write(oprot); + _iter1421.write(oprot); } oprot.writeListEnd(); } @@ -94501,9 +94501,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 _iter1414 : struct.new_parts) + for (PartitionSpec _iter1422 : struct.new_parts) { - _iter1414.write(oprot); + _iter1422.write(oprot); } } } @@ -94515,14 +94515,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 _list1415 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1415.size); - PartitionSpec _elem1416; - for (int _i1417 = 0; _i1417 < _list1415.size; ++_i1417) + org.apache.thrift.protocol.TList _list1423 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1423.size); + PartitionSpec _elem1424; + for (int _i1425 = 0; _i1425 < _list1423.size; ++_i1425) { - _elem1416 = new PartitionSpec(); - _elem1416.read(iprot); - struct.new_parts.add(_elem1416); + _elem1424 = new PartitionSpec(); + _elem1424.read(iprot); + struct.new_parts.add(_elem1424); } } struct.setNew_partsIsSet(true); @@ -95698,13 +95698,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 _list1418 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1418.size); - String _elem1419; - for (int _i1420 = 0; _i1420 < _list1418.size; ++_i1420) + org.apache.thrift.protocol.TList _list1426 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1426.size); + String _elem1427; + for (int _i1428 = 0; _i1428 < _list1426.size; ++_i1428) { - _elem1419 = iprot.readString(); - struct.part_vals.add(_elem1419); + _elem1427 = iprot.readString(); + struct.part_vals.add(_elem1427); } iprot.readListEnd(); } @@ -95740,9 +95740,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 _iter1421 : struct.part_vals) + for (String _iter1429 : struct.part_vals) { - oprot.writeString(_iter1421); + oprot.writeString(_iter1429); } oprot.writeListEnd(); } @@ -95785,9 +95785,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 _iter1422 : struct.part_vals) + for (String _iter1430 : struct.part_vals) { - oprot.writeString(_iter1422); + oprot.writeString(_iter1430); } } } @@ -95807,13 +95807,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_partition_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1423 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1423.size); - String _elem1424; - for (int _i1425 = 0; _i1425 < _list1423.size; ++_i1425) + org.apache.thrift.protocol.TList _list1431 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1431.size); + String _elem1432; + for (int _i1433 = 0; _i1433 < _list1431.size; ++_i1433) { - _elem1424 = iprot.readString(); - struct.part_vals.add(_elem1424); + _elem1432 = iprot.readString(); + struct.part_vals.add(_elem1432); } } struct.setPart_valsIsSet(true); @@ -98122,13 +98122,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 _list1426 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1426.size); - String _elem1427; - for (int _i1428 = 0; _i1428 < _list1426.size; ++_i1428) + org.apache.thrift.protocol.TList _list1434 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1434.size); + String _elem1435; + for (int _i1436 = 0; _i1436 < _list1434.size; ++_i1436) { - _elem1427 = iprot.readString(); - struct.part_vals.add(_elem1427); + _elem1435 = iprot.readString(); + struct.part_vals.add(_elem1435); } iprot.readListEnd(); } @@ -98173,9 +98173,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 _iter1429 : struct.part_vals) + for (String _iter1437 : struct.part_vals) { - oprot.writeString(_iter1429); + oprot.writeString(_iter1437); } oprot.writeListEnd(); } @@ -98226,9 +98226,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 _iter1430 : struct.part_vals) + for (String _iter1438 : struct.part_vals) { - oprot.writeString(_iter1430); + oprot.writeString(_iter1438); } } } @@ -98251,13 +98251,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, append_partition_wit } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1431 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1431.size); - String _elem1432; - for (int _i1433 = 0; _i1433 < _list1431.size; ++_i1433) + org.apache.thrift.protocol.TList _list1439 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1439.size); + String _elem1440; + for (int _i1441 = 0; _i1441 < _list1439.size; ++_i1441) { - _elem1432 = iprot.readString(); - struct.part_vals.add(_elem1432); + _elem1440 = iprot.readString(); + struct.part_vals.add(_elem1440); } } struct.setPart_valsIsSet(true); @@ -102127,13 +102127,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 _list1434 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1434.size); - String _elem1435; - for (int _i1436 = 0; _i1436 < _list1434.size; ++_i1436) + org.apache.thrift.protocol.TList _list1442 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1442.size); + String _elem1443; + for (int _i1444 = 0; _i1444 < _list1442.size; ++_i1444) { - _elem1435 = iprot.readString(); - struct.part_vals.add(_elem1435); + _elem1443 = iprot.readString(); + struct.part_vals.add(_elem1443); } iprot.readListEnd(); } @@ -102177,9 +102177,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 _iter1437 : struct.part_vals) + for (String _iter1445 : struct.part_vals) { - oprot.writeString(_iter1437); + oprot.writeString(_iter1445); } oprot.writeListEnd(); } @@ -102228,9 +102228,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 _iter1438 : struct.part_vals) + for (String _iter1446 : struct.part_vals) { - oprot.writeString(_iter1438); + oprot.writeString(_iter1446); } } } @@ -102253,13 +102253,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, drop_partition_args } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1439 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1439.size); - String _elem1440; - for (int _i1441 = 0; _i1441 < _list1439.size; ++_i1441) + org.apache.thrift.protocol.TList _list1447 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1447.size); + String _elem1448; + for (int _i1449 = 0; _i1449 < _list1447.size; ++_i1449) { - _elem1440 = iprot.readString(); - struct.part_vals.add(_elem1440); + _elem1448 = iprot.readString(); + struct.part_vals.add(_elem1448); } } struct.setPart_valsIsSet(true); @@ -103498,13 +103498,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 _list1442 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1442.size); - String _elem1443; - for (int _i1444 = 0; _i1444 < _list1442.size; ++_i1444) + org.apache.thrift.protocol.TList _list1450 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1450.size); + String _elem1451; + for (int _i1452 = 0; _i1452 < _list1450.size; ++_i1452) { - _elem1443 = iprot.readString(); - struct.part_vals.add(_elem1443); + _elem1451 = iprot.readString(); + struct.part_vals.add(_elem1451); } iprot.readListEnd(); } @@ -103557,9 +103557,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 _iter1445 : struct.part_vals) + for (String _iter1453 : struct.part_vals) { - oprot.writeString(_iter1445); + oprot.writeString(_iter1453); } oprot.writeListEnd(); } @@ -103616,9 +103616,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 _iter1446 : struct.part_vals) + for (String _iter1454 : struct.part_vals) { - oprot.writeString(_iter1446); + oprot.writeString(_iter1454); } } } @@ -103644,13 +103644,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, drop_partition_with_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1447 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1447.size); - String _elem1448; - for (int _i1449 = 0; _i1449 < _list1447.size; ++_i1449) + org.apache.thrift.protocol.TList _list1455 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1455.size); + String _elem1456; + for (int _i1457 = 0; _i1457 < _list1455.size; ++_i1457) { - _elem1448 = iprot.readString(); - struct.part_vals.add(_elem1448); + _elem1456 = iprot.readString(); + struct.part_vals.add(_elem1456); } } struct.setPart_valsIsSet(true); @@ -108252,13 +108252,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 _list1450 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1450.size); - String _elem1451; - for (int _i1452 = 0; _i1452 < _list1450.size; ++_i1452) + org.apache.thrift.protocol.TList _list1458 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1458.size); + String _elem1459; + for (int _i1460 = 0; _i1460 < _list1458.size; ++_i1460) { - _elem1451 = iprot.readString(); - struct.part_vals.add(_elem1451); + _elem1459 = iprot.readString(); + struct.part_vals.add(_elem1459); } iprot.readListEnd(); } @@ -108294,9 +108294,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 _iter1453 : struct.part_vals) + for (String _iter1461 : struct.part_vals) { - oprot.writeString(_iter1453); + oprot.writeString(_iter1461); } oprot.writeListEnd(); } @@ -108339,9 +108339,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 _iter1454 : struct.part_vals) + for (String _iter1462 : struct.part_vals) { - oprot.writeString(_iter1454); + oprot.writeString(_iter1462); } } } @@ -108361,13 +108361,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_args s } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1455 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1455.size); - String _elem1456; - for (int _i1457 = 0; _i1457 < _list1455.size; ++_i1457) + org.apache.thrift.protocol.TList _list1463 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1463.size); + String _elem1464; + for (int _i1465 = 0; _i1465 < _list1463.size; ++_i1465) { - _elem1456 = iprot.readString(); - struct.part_vals.add(_elem1456); + _elem1464 = iprot.readString(); + struct.part_vals.add(_elem1464); } } struct.setPart_valsIsSet(true); @@ -109585,15 +109585,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 _map1458 = iprot.readMapBegin(); - struct.partitionSpecs = new HashMap(2*_map1458.size); - String _key1459; - String _val1460; - for (int _i1461 = 0; _i1461 < _map1458.size; ++_i1461) + org.apache.thrift.protocol.TMap _map1466 = iprot.readMapBegin(); + struct.partitionSpecs = new HashMap(2*_map1466.size); + String _key1467; + String _val1468; + for (int _i1469 = 0; _i1469 < _map1466.size; ++_i1469) { - _key1459 = iprot.readString(); - _val1460 = iprot.readString(); - struct.partitionSpecs.put(_key1459, _val1460); + _key1467 = iprot.readString(); + _val1468 = iprot.readString(); + struct.partitionSpecs.put(_key1467, _val1468); } iprot.readMapEnd(); } @@ -109651,10 +109651,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 _iter1462 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1470 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1462.getKey()); - oprot.writeString(_iter1462.getValue()); + oprot.writeString(_iter1470.getKey()); + oprot.writeString(_iter1470.getValue()); } oprot.writeMapEnd(); } @@ -109717,10 +109717,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, exchange_partition_ if (struct.isSetPartitionSpecs()) { { oprot.writeI32(struct.partitionSpecs.size()); - for (Map.Entry _iter1463 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1471 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1463.getKey()); - oprot.writeString(_iter1463.getValue()); + oprot.writeString(_iter1471.getKey()); + oprot.writeString(_iter1471.getValue()); } } } @@ -109744,15 +109744,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 _map1464 = 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*_map1464.size); - String _key1465; - String _val1466; - for (int _i1467 = 0; _i1467 < _map1464.size; ++_i1467) + org.apache.thrift.protocol.TMap _map1472 = 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*_map1472.size); + String _key1473; + String _val1474; + for (int _i1475 = 0; _i1475 < _map1472.size; ++_i1475) { - _key1465 = iprot.readString(); - _val1466 = iprot.readString(); - struct.partitionSpecs.put(_key1465, _val1466); + _key1473 = iprot.readString(); + _val1474 = iprot.readString(); + struct.partitionSpecs.put(_key1473, _val1474); } } struct.setPartitionSpecsIsSet(true); @@ -111198,15 +111198,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 _map1468 = iprot.readMapBegin(); - struct.partitionSpecs = new HashMap(2*_map1468.size); - String _key1469; - String _val1470; - for (int _i1471 = 0; _i1471 < _map1468.size; ++_i1471) + org.apache.thrift.protocol.TMap _map1476 = iprot.readMapBegin(); + struct.partitionSpecs = new HashMap(2*_map1476.size); + String _key1477; + String _val1478; + for (int _i1479 = 0; _i1479 < _map1476.size; ++_i1479) { - _key1469 = iprot.readString(); - _val1470 = iprot.readString(); - struct.partitionSpecs.put(_key1469, _val1470); + _key1477 = iprot.readString(); + _val1478 = iprot.readString(); + struct.partitionSpecs.put(_key1477, _val1478); } iprot.readMapEnd(); } @@ -111264,10 +111264,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 _iter1472 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1480 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1472.getKey()); - oprot.writeString(_iter1472.getValue()); + oprot.writeString(_iter1480.getKey()); + oprot.writeString(_iter1480.getValue()); } oprot.writeMapEnd(); } @@ -111330,10 +111330,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, exchange_partitions if (struct.isSetPartitionSpecs()) { { oprot.writeI32(struct.partitionSpecs.size()); - for (Map.Entry _iter1473 : struct.partitionSpecs.entrySet()) + for (Map.Entry _iter1481 : struct.partitionSpecs.entrySet()) { - oprot.writeString(_iter1473.getKey()); - oprot.writeString(_iter1473.getValue()); + oprot.writeString(_iter1481.getKey()); + oprot.writeString(_iter1481.getValue()); } } } @@ -111357,15 +111357,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 _map1474 = 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*_map1474.size); - String _key1475; - String _val1476; - for (int _i1477 = 0; _i1477 < _map1474.size; ++_i1477) + org.apache.thrift.protocol.TMap _map1482 = 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*_map1482.size); + String _key1483; + String _val1484; + for (int _i1485 = 0; _i1485 < _map1482.size; ++_i1485) { - _key1475 = iprot.readString(); - _val1476 = iprot.readString(); - struct.partitionSpecs.put(_key1475, _val1476); + _key1483 = iprot.readString(); + _val1484 = iprot.readString(); + struct.partitionSpecs.put(_key1483, _val1484); } } struct.setPartitionSpecsIsSet(true); @@ -112030,14 +112030,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 _list1478 = iprot.readListBegin(); - struct.success = new ArrayList(_list1478.size); - Partition _elem1479; - for (int _i1480 = 0; _i1480 < _list1478.size; ++_i1480) + org.apache.thrift.protocol.TList _list1486 = iprot.readListBegin(); + struct.success = new ArrayList(_list1486.size); + Partition _elem1487; + for (int _i1488 = 0; _i1488 < _list1486.size; ++_i1488) { - _elem1479 = new Partition(); - _elem1479.read(iprot); - struct.success.add(_elem1479); + _elem1487 = new Partition(); + _elem1487.read(iprot); + struct.success.add(_elem1487); } iprot.readListEnd(); } @@ -112099,9 +112099,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 _iter1481 : struct.success) + for (Partition _iter1489 : struct.success) { - _iter1481.write(oprot); + _iter1489.write(oprot); } oprot.writeListEnd(); } @@ -112164,9 +112164,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, exchange_partitions if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1482 : struct.success) + for (Partition _iter1490 : struct.success) { - _iter1482.write(oprot); + _iter1490.write(oprot); } } } @@ -112190,14 +112190,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 _list1483 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1483.size); - Partition _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.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1491.size); + Partition _elem1492; + for (int _i1493 = 0; _i1493 < _list1491.size; ++_i1493) { - _elem1484 = new Partition(); - _elem1484.read(iprot); - struct.success.add(_elem1484); + _elem1492 = new Partition(); + _elem1492.read(iprot); + struct.success.add(_elem1492); } } struct.setSuccessIsSet(true); @@ -112896,13 +112896,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 _list1486 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1486.size); - String _elem1487; - for (int _i1488 = 0; _i1488 < _list1486.size; ++_i1488) + org.apache.thrift.protocol.TList _list1494 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1494.size); + String _elem1495; + for (int _i1496 = 0; _i1496 < _list1494.size; ++_i1496) { - _elem1487 = iprot.readString(); - struct.part_vals.add(_elem1487); + _elem1495 = iprot.readString(); + struct.part_vals.add(_elem1495); } iprot.readListEnd(); } @@ -112922,13 +112922,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 _list1489 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1489.size); - String _elem1490; - for (int _i1491 = 0; _i1491 < _list1489.size; ++_i1491) + org.apache.thrift.protocol.TList _list1497 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1497.size); + String _elem1498; + for (int _i1499 = 0; _i1499 < _list1497.size; ++_i1499) { - _elem1490 = iprot.readString(); - struct.group_names.add(_elem1490); + _elem1498 = iprot.readString(); + struct.group_names.add(_elem1498); } iprot.readListEnd(); } @@ -112964,9 +112964,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 _iter1492 : struct.part_vals) + for (String _iter1500 : struct.part_vals) { - oprot.writeString(_iter1492); + oprot.writeString(_iter1500); } oprot.writeListEnd(); } @@ -112981,9 +112981,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 _iter1493 : struct.group_names) + for (String _iter1501 : struct.group_names) { - oprot.writeString(_iter1493); + oprot.writeString(_iter1501); } oprot.writeListEnd(); } @@ -113032,9 +113032,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 _iter1494 : struct.part_vals) + for (String _iter1502 : struct.part_vals) { - oprot.writeString(_iter1494); + oprot.writeString(_iter1502); } } } @@ -113044,9 +113044,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 _iter1495 : struct.group_names) + for (String _iter1503 : struct.group_names) { - oprot.writeString(_iter1495); + oprot.writeString(_iter1503); } } } @@ -113066,13 +113066,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_with_a } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1496 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1496.size); - String _elem1497; - for (int _i1498 = 0; _i1498 < _list1496.size; ++_i1498) + org.apache.thrift.protocol.TList _list1504 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1504.size); + String _elem1505; + for (int _i1506 = 0; _i1506 < _list1504.size; ++_i1506) { - _elem1497 = iprot.readString(); - struct.part_vals.add(_elem1497); + _elem1505 = iprot.readString(); + struct.part_vals.add(_elem1505); } } struct.setPart_valsIsSet(true); @@ -113083,13 +113083,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_with_a } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1499 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1499.size); - String _elem1500; - for (int _i1501 = 0; _i1501 < _list1499.size; ++_i1501) + org.apache.thrift.protocol.TList _list1507 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1507.size); + String _elem1508; + for (int _i1509 = 0; _i1509 < _list1507.size; ++_i1509) { - _elem1500 = iprot.readString(); - struct.group_names.add(_elem1500); + _elem1508 = iprot.readString(); + struct.group_names.add(_elem1508); } } struct.setGroup_namesIsSet(true); @@ -115858,14 +115858,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 _list1502 = iprot.readListBegin(); - struct.success = new ArrayList(_list1502.size); - Partition _elem1503; - for (int _i1504 = 0; _i1504 < _list1502.size; ++_i1504) + org.apache.thrift.protocol.TList _list1510 = iprot.readListBegin(); + struct.success = new ArrayList(_list1510.size); + Partition _elem1511; + for (int _i1512 = 0; _i1512 < _list1510.size; ++_i1512) { - _elem1503 = new Partition(); - _elem1503.read(iprot); - struct.success.add(_elem1503); + _elem1511 = new Partition(); + _elem1511.read(iprot); + struct.success.add(_elem1511); } iprot.readListEnd(); } @@ -115909,9 +115909,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 _iter1505 : struct.success) + for (Partition _iter1513 : struct.success) { - _iter1505.write(oprot); + _iter1513.write(oprot); } oprot.writeListEnd(); } @@ -115958,9 +115958,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1506 : struct.success) + for (Partition _iter1514 : struct.success) { - _iter1506.write(oprot); + _iter1514.write(oprot); } } } @@ -115978,14 +115978,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 _list1507 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1507.size); - Partition _elem1508; - for (int _i1509 = 0; _i1509 < _list1507.size; ++_i1509) + org.apache.thrift.protocol.TList _list1515 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1515.size); + Partition _elem1516; + for (int _i1517 = 0; _i1517 < _list1515.size; ++_i1517) { - _elem1508 = new Partition(); - _elem1508.read(iprot); - struct.success.add(_elem1508); + _elem1516 = new Partition(); + _elem1516.read(iprot); + struct.success.add(_elem1516); } } struct.setSuccessIsSet(true); @@ -116675,13 +116675,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 _list1510 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1510.size); - String _elem1511; - for (int _i1512 = 0; _i1512 < _list1510.size; ++_i1512) + org.apache.thrift.protocol.TList _list1518 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1518.size); + String _elem1519; + for (int _i1520 = 0; _i1520 < _list1518.size; ++_i1520) { - _elem1511 = iprot.readString(); - struct.group_names.add(_elem1511); + _elem1519 = iprot.readString(); + struct.group_names.add(_elem1519); } iprot.readListEnd(); } @@ -116725,9 +116725,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 _iter1513 : struct.group_names) + for (String _iter1521 : struct.group_names) { - oprot.writeString(_iter1513); + oprot.writeString(_iter1521); } oprot.writeListEnd(); } @@ -116782,9 +116782,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 _iter1514 : struct.group_names) + for (String _iter1522 : struct.group_names) { - oprot.writeString(_iter1514); + oprot.writeString(_iter1522); } } } @@ -116812,13 +116812,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_with_ } if (incoming.get(4)) { { - org.apache.thrift.protocol.TList _list1515 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1515.size); - String _elem1516; - for (int _i1517 = 0; _i1517 < _list1515.size; ++_i1517) + org.apache.thrift.protocol.TList _list1523 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1523.size); + String _elem1524; + for (int _i1525 = 0; _i1525 < _list1523.size; ++_i1525) { - _elem1516 = iprot.readString(); - struct.group_names.add(_elem1516); + _elem1524 = iprot.readString(); + struct.group_names.add(_elem1524); } } struct.setGroup_namesIsSet(true); @@ -117305,14 +117305,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 _list1518 = iprot.readListBegin(); - struct.success = new ArrayList(_list1518.size); - Partition _elem1519; - for (int _i1520 = 0; _i1520 < _list1518.size; ++_i1520) + org.apache.thrift.protocol.TList _list1526 = iprot.readListBegin(); + struct.success = new ArrayList(_list1526.size); + Partition _elem1527; + for (int _i1528 = 0; _i1528 < _list1526.size; ++_i1528) { - _elem1519 = new Partition(); - _elem1519.read(iprot); - struct.success.add(_elem1519); + _elem1527 = new Partition(); + _elem1527.read(iprot); + struct.success.add(_elem1527); } iprot.readListEnd(); } @@ -117356,9 +117356,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 _iter1521 : struct.success) + for (Partition _iter1529 : struct.success) { - _iter1521.write(oprot); + _iter1529.write(oprot); } oprot.writeListEnd(); } @@ -117405,9 +117405,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_with if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1522 : struct.success) + for (Partition _iter1530 : struct.success) { - _iter1522.write(oprot); + _iter1530.write(oprot); } } } @@ -117425,14 +117425,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 _list1523 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1523.size); - Partition _elem1524; - for (int _i1525 = 0; _i1525 < _list1523.size; ++_i1525) + org.apache.thrift.protocol.TList _list1531 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1531.size); + Partition _elem1532; + for (int _i1533 = 0; _i1533 < _list1531.size; ++_i1533) { - _elem1524 = new Partition(); - _elem1524.read(iprot); - struct.success.add(_elem1524); + _elem1532 = new Partition(); + _elem1532.read(iprot); + struct.success.add(_elem1532); } } struct.setSuccessIsSet(true); @@ -118495,14 +118495,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 _list1526 = iprot.readListBegin(); - struct.success = new ArrayList(_list1526.size); - PartitionSpec _elem1527; - for (int _i1528 = 0; _i1528 < _list1526.size; ++_i1528) + org.apache.thrift.protocol.TList _list1534 = iprot.readListBegin(); + struct.success = new ArrayList(_list1534.size); + PartitionSpec _elem1535; + for (int _i1536 = 0; _i1536 < _list1534.size; ++_i1536) { - _elem1527 = new PartitionSpec(); - _elem1527.read(iprot); - struct.success.add(_elem1527); + _elem1535 = new PartitionSpec(); + _elem1535.read(iprot); + struct.success.add(_elem1535); } iprot.readListEnd(); } @@ -118546,9 +118546,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 _iter1529 : struct.success) + for (PartitionSpec _iter1537 : struct.success) { - _iter1529.write(oprot); + _iter1537.write(oprot); } oprot.writeListEnd(); } @@ -118595,9 +118595,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_pspe if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (PartitionSpec _iter1530 : struct.success) + for (PartitionSpec _iter1538 : struct.success) { - _iter1530.write(oprot); + _iter1538.write(oprot); } } } @@ -118615,14 +118615,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 _list1531 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1531.size); - PartitionSpec _elem1532; - for (int _i1533 = 0; _i1533 < _list1531.size; ++_i1533) + org.apache.thrift.protocol.TList _list1539 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1539.size); + PartitionSpec _elem1540; + for (int _i1541 = 0; _i1541 < _list1539.size; ++_i1541) { - _elem1532 = new PartitionSpec(); - _elem1532.read(iprot); - struct.success.add(_elem1532); + _elem1540 = new PartitionSpec(); + _elem1540.read(iprot); + struct.success.add(_elem1540); } } struct.setSuccessIsSet(true); @@ -119682,13 +119682,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 _list1534 = iprot.readListBegin(); - struct.success = new ArrayList(_list1534.size); - String _elem1535; - for (int _i1536 = 0; _i1536 < _list1534.size; ++_i1536) + org.apache.thrift.protocol.TList _list1542 = iprot.readListBegin(); + struct.success = new ArrayList(_list1542.size); + String _elem1543; + for (int _i1544 = 0; _i1544 < _list1542.size; ++_i1544) { - _elem1535 = iprot.readString(); - struct.success.add(_elem1535); + _elem1543 = iprot.readString(); + struct.success.add(_elem1543); } iprot.readListEnd(); } @@ -119732,9 +119732,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 _iter1537 : struct.success) + for (String _iter1545 : struct.success) { - oprot.writeString(_iter1537); + oprot.writeString(_iter1545); } oprot.writeListEnd(); } @@ -119781,9 +119781,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_names if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1538 : struct.success) + for (String _iter1546 : struct.success) { - oprot.writeString(_iter1538); + oprot.writeString(_iter1546); } } } @@ -119801,13 +119801,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 _list1539 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1539.size); - String _elem1540; - for (int _i1541 = 0; _i1541 < _list1539.size; ++_i1541) + org.apache.thrift.protocol.TList _list1547 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1547.size); + String _elem1548; + for (int _i1549 = 0; _i1549 < _list1547.size; ++_i1549) { - _elem1540 = iprot.readString(); - struct.success.add(_elem1540); + _elem1548 = iprot.readString(); + struct.success.add(_elem1548); } } struct.setSuccessIsSet(true); @@ -121338,13 +121338,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 _list1542 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1542.size); - String _elem1543; - for (int _i1544 = 0; _i1544 < _list1542.size; ++_i1544) + org.apache.thrift.protocol.TList _list1550 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1550.size); + String _elem1551; + for (int _i1552 = 0; _i1552 < _list1550.size; ++_i1552) { - _elem1543 = iprot.readString(); - struct.part_vals.add(_elem1543); + _elem1551 = iprot.readString(); + struct.part_vals.add(_elem1551); } iprot.readListEnd(); } @@ -121388,9 +121388,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 _iter1545 : struct.part_vals) + for (String _iter1553 : struct.part_vals) { - oprot.writeString(_iter1545); + oprot.writeString(_iter1553); } oprot.writeListEnd(); } @@ -121439,9 +121439,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 _iter1546 : struct.part_vals) + for (String _iter1554 : struct.part_vals) { - oprot.writeString(_iter1546); + oprot.writeString(_iter1554); } } } @@ -121464,13 +121464,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1547 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1547.size); - String _elem1548; - for (int _i1549 = 0; _i1549 < _list1547.size; ++_i1549) + org.apache.thrift.protocol.TList _list1555 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1555.size); + String _elem1556; + for (int _i1557 = 0; _i1557 < _list1555.size; ++_i1557) { - _elem1548 = iprot.readString(); - struct.part_vals.add(_elem1548); + _elem1556 = iprot.readString(); + struct.part_vals.add(_elem1556); } } struct.setPart_valsIsSet(true); @@ -121961,14 +121961,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 _list1550 = iprot.readListBegin(); - struct.success = new ArrayList(_list1550.size); - Partition _elem1551; - for (int _i1552 = 0; _i1552 < _list1550.size; ++_i1552) + org.apache.thrift.protocol.TList _list1558 = iprot.readListBegin(); + struct.success = new ArrayList(_list1558.size); + Partition _elem1559; + for (int _i1560 = 0; _i1560 < _list1558.size; ++_i1560) { - _elem1551 = new Partition(); - _elem1551.read(iprot); - struct.success.add(_elem1551); + _elem1559 = new Partition(); + _elem1559.read(iprot); + struct.success.add(_elem1559); } iprot.readListEnd(); } @@ -122012,9 +122012,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 _iter1553 : struct.success) + for (Partition _iter1561 : struct.success) { - _iter1553.write(oprot); + _iter1561.write(oprot); } oprot.writeListEnd(); } @@ -122061,9 +122061,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1554 : struct.success) + for (Partition _iter1562 : struct.success) { - _iter1554.write(oprot); + _iter1562.write(oprot); } } } @@ -122081,14 +122081,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 _list1555 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1555.size); - Partition _elem1556; - for (int _i1557 = 0; _i1557 < _list1555.size; ++_i1557) + org.apache.thrift.protocol.TList _list1563 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1563.size); + Partition _elem1564; + for (int _i1565 = 0; _i1565 < _list1563.size; ++_i1565) { - _elem1556 = new Partition(); - _elem1556.read(iprot); - struct.success.add(_elem1556); + _elem1564 = new Partition(); + _elem1564.read(iprot); + struct.success.add(_elem1564); } } struct.setSuccessIsSet(true); @@ -122860,13 +122860,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 _list1558 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1558.size); - String _elem1559; - for (int _i1560 = 0; _i1560 < _list1558.size; ++_i1560) + org.apache.thrift.protocol.TList _list1566 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1566.size); + String _elem1567; + for (int _i1568 = 0; _i1568 < _list1566.size; ++_i1568) { - _elem1559 = iprot.readString(); - struct.part_vals.add(_elem1559); + _elem1567 = iprot.readString(); + struct.part_vals.add(_elem1567); } iprot.readListEnd(); } @@ -122894,13 +122894,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 _list1561 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1561.size); - String _elem1562; - for (int _i1563 = 0; _i1563 < _list1561.size; ++_i1563) + org.apache.thrift.protocol.TList _list1569 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1569.size); + String _elem1570; + for (int _i1571 = 0; _i1571 < _list1569.size; ++_i1571) { - _elem1562 = iprot.readString(); - struct.group_names.add(_elem1562); + _elem1570 = iprot.readString(); + struct.group_names.add(_elem1570); } iprot.readListEnd(); } @@ -122936,9 +122936,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 _iter1564 : struct.part_vals) + for (String _iter1572 : struct.part_vals) { - oprot.writeString(_iter1564); + oprot.writeString(_iter1572); } oprot.writeListEnd(); } @@ -122956,9 +122956,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 _iter1565 : struct.group_names) + for (String _iter1573 : struct.group_names) { - oprot.writeString(_iter1565); + oprot.writeString(_iter1573); } oprot.writeListEnd(); } @@ -123010,9 +123010,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 _iter1566 : struct.part_vals) + for (String _iter1574 : struct.part_vals) { - oprot.writeString(_iter1566); + oprot.writeString(_iter1574); } } } @@ -123025,9 +123025,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 _iter1567 : struct.group_names) + for (String _iter1575 : struct.group_names) { - oprot.writeString(_iter1567); + oprot.writeString(_iter1575); } } } @@ -123047,13 +123047,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1568 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1568.size); - String _elem1569; - for (int _i1570 = 0; _i1570 < _list1568.size; ++_i1570) + org.apache.thrift.protocol.TList _list1576 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1576.size); + String _elem1577; + for (int _i1578 = 0; _i1578 < _list1576.size; ++_i1578) { - _elem1569 = iprot.readString(); - struct.part_vals.add(_elem1569); + _elem1577 = iprot.readString(); + struct.part_vals.add(_elem1577); } } struct.setPart_valsIsSet(true); @@ -123068,13 +123068,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_wi } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list1571 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1571.size); - String _elem1572; - for (int _i1573 = 0; _i1573 < _list1571.size; ++_i1573) + org.apache.thrift.protocol.TList _list1579 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1579.size); + String _elem1580; + for (int _i1581 = 0; _i1581 < _list1579.size; ++_i1581) { - _elem1572 = iprot.readString(); - struct.group_names.add(_elem1572); + _elem1580 = iprot.readString(); + struct.group_names.add(_elem1580); } } struct.setGroup_namesIsSet(true); @@ -123561,14 +123561,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 _list1574 = iprot.readListBegin(); - struct.success = new ArrayList(_list1574.size); - Partition _elem1575; - for (int _i1576 = 0; _i1576 < _list1574.size; ++_i1576) + org.apache.thrift.protocol.TList _list1582 = iprot.readListBegin(); + struct.success = new ArrayList(_list1582.size); + Partition _elem1583; + for (int _i1584 = 0; _i1584 < _list1582.size; ++_i1584) { - _elem1575 = new Partition(); - _elem1575.read(iprot); - struct.success.add(_elem1575); + _elem1583 = new Partition(); + _elem1583.read(iprot); + struct.success.add(_elem1583); } iprot.readListEnd(); } @@ -123612,9 +123612,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 _iter1577 : struct.success) + for (Partition _iter1585 : struct.success) { - _iter1577.write(oprot); + _iter1585.write(oprot); } oprot.writeListEnd(); } @@ -123661,9 +123661,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_ps_w if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1578 : struct.success) + for (Partition _iter1586 : struct.success) { - _iter1578.write(oprot); + _iter1586.write(oprot); } } } @@ -123681,14 +123681,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 _list1579 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1579.size); - Partition _elem1580; - for (int _i1581 = 0; _i1581 < _list1579.size; ++_i1581) + org.apache.thrift.protocol.TList _list1587 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1587.size); + Partition _elem1588; + for (int _i1589 = 0; _i1589 < _list1587.size; ++_i1589) { - _elem1580 = new Partition(); - _elem1580.read(iprot); - struct.success.add(_elem1580); + _elem1588 = new Partition(); + _elem1588.read(iprot); + struct.success.add(_elem1588); } } struct.setSuccessIsSet(true); @@ -124281,13 +124281,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 _list1582 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1582.size); - String _elem1583; - for (int _i1584 = 0; _i1584 < _list1582.size; ++_i1584) + org.apache.thrift.protocol.TList _list1590 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1590.size); + String _elem1591; + for (int _i1592 = 0; _i1592 < _list1590.size; ++_i1592) { - _elem1583 = iprot.readString(); - struct.part_vals.add(_elem1583); + _elem1591 = iprot.readString(); + struct.part_vals.add(_elem1591); } iprot.readListEnd(); } @@ -124331,9 +124331,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 _iter1585 : struct.part_vals) + for (String _iter1593 : struct.part_vals) { - oprot.writeString(_iter1585); + oprot.writeString(_iter1593); } oprot.writeListEnd(); } @@ -124382,9 +124382,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 _iter1586 : struct.part_vals) + for (String _iter1594 : struct.part_vals) { - oprot.writeString(_iter1586); + oprot.writeString(_iter1594); } } } @@ -124407,13 +124407,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partition_names_ } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1587 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1587.size); - String _elem1588; - for (int _i1589 = 0; _i1589 < _list1587.size; ++_i1589) + org.apache.thrift.protocol.TList _list1595 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1595.size); + String _elem1596; + for (int _i1597 = 0; _i1597 < _list1595.size; ++_i1597) { - _elem1588 = iprot.readString(); - struct.part_vals.add(_elem1588); + _elem1596 = iprot.readString(); + struct.part_vals.add(_elem1596); } } struct.setPart_valsIsSet(true); @@ -124901,13 +124901,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 _list1590 = iprot.readListBegin(); - struct.success = new ArrayList(_list1590.size); - String _elem1591; - for (int _i1592 = 0; _i1592 < _list1590.size; ++_i1592) + org.apache.thrift.protocol.TList _list1598 = iprot.readListBegin(); + struct.success = new ArrayList(_list1598.size); + String _elem1599; + for (int _i1600 = 0; _i1600 < _list1598.size; ++_i1600) { - _elem1591 = iprot.readString(); - struct.success.add(_elem1591); + _elem1599 = iprot.readString(); + struct.success.add(_elem1599); } iprot.readListEnd(); } @@ -124951,9 +124951,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 _iter1593 : struct.success) + for (String _iter1601 : struct.success) { - oprot.writeString(_iter1593); + oprot.writeString(_iter1601); } oprot.writeListEnd(); } @@ -125000,9 +125000,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partition_names if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1594 : struct.success) + for (String _iter1602 : struct.success) { - oprot.writeString(_iter1594); + oprot.writeString(_iter1602); } } } @@ -125020,13 +125020,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 _list1595 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1595.size); - String _elem1596; - for (int _i1597 = 0; _i1597 < _list1595.size; ++_i1597) + org.apache.thrift.protocol.TList _list1603 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1603.size); + String _elem1604; + for (int _i1605 = 0; _i1605 < _list1603.size; ++_i1605) { - _elem1596 = iprot.readString(); - struct.success.add(_elem1596); + _elem1604 = iprot.readString(); + struct.success.add(_elem1604); } } struct.setSuccessIsSet(true); @@ -126193,14 +126193,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 _list1598 = iprot.readListBegin(); - struct.success = new ArrayList(_list1598.size); - Partition _elem1599; - for (int _i1600 = 0; _i1600 < _list1598.size; ++_i1600) + org.apache.thrift.protocol.TList _list1606 = iprot.readListBegin(); + struct.success = new ArrayList(_list1606.size); + Partition _elem1607; + for (int _i1608 = 0; _i1608 < _list1606.size; ++_i1608) { - _elem1599 = new Partition(); - _elem1599.read(iprot); - struct.success.add(_elem1599); + _elem1607 = new Partition(); + _elem1607.read(iprot); + struct.success.add(_elem1607); } iprot.readListEnd(); } @@ -126244,9 +126244,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 _iter1601 : struct.success) + for (Partition _iter1609 : struct.success) { - _iter1601.write(oprot); + _iter1609.write(oprot); } oprot.writeListEnd(); } @@ -126293,9 +126293,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_f if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1602 : struct.success) + for (Partition _iter1610 : struct.success) { - _iter1602.write(oprot); + _iter1610.write(oprot); } } } @@ -126313,14 +126313,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 _list1603 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1603.size); - Partition _elem1604; - for (int _i1605 = 0; _i1605 < _list1603.size; ++_i1605) + org.apache.thrift.protocol.TList _list1611 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1611.size); + Partition _elem1612; + for (int _i1613 = 0; _i1613 < _list1611.size; ++_i1613) { - _elem1604 = new Partition(); - _elem1604.read(iprot); - struct.success.add(_elem1604); + _elem1612 = new Partition(); + _elem1612.read(iprot); + struct.success.add(_elem1612); } } struct.setSuccessIsSet(true); @@ -127487,14 +127487,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 _list1606 = iprot.readListBegin(); - struct.success = new ArrayList(_list1606.size); - PartitionSpec _elem1607; - for (int _i1608 = 0; _i1608 < _list1606.size; ++_i1608) + org.apache.thrift.protocol.TList _list1614 = iprot.readListBegin(); + struct.success = new ArrayList(_list1614.size); + PartitionSpec _elem1615; + for (int _i1616 = 0; _i1616 < _list1614.size; ++_i1616) { - _elem1607 = new PartitionSpec(); - _elem1607.read(iprot); - struct.success.add(_elem1607); + _elem1615 = new PartitionSpec(); + _elem1615.read(iprot); + struct.success.add(_elem1615); } iprot.readListEnd(); } @@ -127538,9 +127538,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 _iter1609 : struct.success) + for (PartitionSpec _iter1617 : struct.success) { - _iter1609.write(oprot); + _iter1617.write(oprot); } oprot.writeListEnd(); } @@ -127587,9 +127587,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 _iter1610 : struct.success) + for (PartitionSpec _iter1618 : struct.success) { - _iter1610.write(oprot); + _iter1618.write(oprot); } } } @@ -127607,14 +127607,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 _list1611 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1611.size); - PartitionSpec _elem1612; - for (int _i1613 = 0; _i1613 < _list1611.size; ++_i1613) + org.apache.thrift.protocol.TList _list1619 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1619.size); + PartitionSpec _elem1620; + for (int _i1621 = 0; _i1621 < _list1619.size; ++_i1621) { - _elem1612 = new PartitionSpec(); - _elem1612.read(iprot); - struct.success.add(_elem1612); + _elem1620 = new PartitionSpec(); + _elem1620.read(iprot); + struct.success.add(_elem1620); } } struct.setSuccessIsSet(true); @@ -130198,13 +130198,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 _list1614 = iprot.readListBegin(); - struct.names = new ArrayList(_list1614.size); - String _elem1615; - for (int _i1616 = 0; _i1616 < _list1614.size; ++_i1616) + org.apache.thrift.protocol.TList _list1622 = iprot.readListBegin(); + struct.names = new ArrayList(_list1622.size); + String _elem1623; + for (int _i1624 = 0; _i1624 < _list1622.size; ++_i1624) { - _elem1615 = iprot.readString(); - struct.names.add(_elem1615); + _elem1623 = iprot.readString(); + struct.names.add(_elem1623); } iprot.readListEnd(); } @@ -130240,9 +130240,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 _iter1617 : struct.names) + for (String _iter1625 : struct.names) { - oprot.writeString(_iter1617); + oprot.writeString(_iter1625); } oprot.writeListEnd(); } @@ -130285,9 +130285,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_n if (struct.isSetNames()) { { oprot.writeI32(struct.names.size()); - for (String _iter1618 : struct.names) + for (String _iter1626 : struct.names) { - oprot.writeString(_iter1618); + oprot.writeString(_iter1626); } } } @@ -130307,13 +130307,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_na } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1619 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.names = new ArrayList(_list1619.size); - String _elem1620; - for (int _i1621 = 0; _i1621 < _list1619.size; ++_i1621) + org.apache.thrift.protocol.TList _list1627 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.names = new ArrayList(_list1627.size); + String _elem1628; + for (int _i1629 = 0; _i1629 < _list1627.size; ++_i1629) { - _elem1620 = iprot.readString(); - struct.names.add(_elem1620); + _elem1628 = iprot.readString(); + struct.names.add(_elem1628); } } struct.setNamesIsSet(true); @@ -130800,14 +130800,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 _list1622 = iprot.readListBegin(); - struct.success = new ArrayList(_list1622.size); - Partition _elem1623; - for (int _i1624 = 0; _i1624 < _list1622.size; ++_i1624) + org.apache.thrift.protocol.TList _list1630 = iprot.readListBegin(); + struct.success = new ArrayList(_list1630.size); + Partition _elem1631; + for (int _i1632 = 0; _i1632 < _list1630.size; ++_i1632) { - _elem1623 = new Partition(); - _elem1623.read(iprot); - struct.success.add(_elem1623); + _elem1631 = new Partition(); + _elem1631.read(iprot); + struct.success.add(_elem1631); } iprot.readListEnd(); } @@ -130851,9 +130851,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 _iter1625 : struct.success) + for (Partition _iter1633 : struct.success) { - _iter1625.write(oprot); + _iter1633.write(oprot); } oprot.writeListEnd(); } @@ -130900,9 +130900,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_partitions_by_n if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Partition _iter1626 : struct.success) + for (Partition _iter1634 : struct.success) { - _iter1626.write(oprot); + _iter1634.write(oprot); } } } @@ -130920,14 +130920,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 _list1627 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1627.size); - Partition _elem1628; - for (int _i1629 = 0; _i1629 < _list1627.size; ++_i1629) + org.apache.thrift.protocol.TList _list1635 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1635.size); + Partition _elem1636; + for (int _i1637 = 0; _i1637 < _list1635.size; ++_i1637) { - _elem1628 = new Partition(); - _elem1628.read(iprot); - struct.success.add(_elem1628); + _elem1636 = new Partition(); + _elem1636.read(iprot); + struct.success.add(_elem1636); } } struct.setSuccessIsSet(true); @@ -133415,14 +133415,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 _list1630 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1630.size); - Partition _elem1631; - for (int _i1632 = 0; _i1632 < _list1630.size; ++_i1632) + org.apache.thrift.protocol.TList _list1638 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1638.size); + Partition _elem1639; + for (int _i1640 = 0; _i1640 < _list1638.size; ++_i1640) { - _elem1631 = new Partition(); - _elem1631.read(iprot); - struct.new_parts.add(_elem1631); + _elem1639 = new Partition(); + _elem1639.read(iprot); + struct.new_parts.add(_elem1639); } iprot.readListEnd(); } @@ -133458,9 +133458,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 _iter1633 : struct.new_parts) + for (Partition _iter1641 : struct.new_parts) { - _iter1633.write(oprot); + _iter1641.write(oprot); } oprot.writeListEnd(); } @@ -133503,9 +133503,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 _iter1634 : struct.new_parts) + for (Partition _iter1642 : struct.new_parts) { - _iter1634.write(oprot); + _iter1642.write(oprot); } } } @@ -133525,14 +133525,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, alter_partitions_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1635 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1635.size); - Partition _elem1636; - for (int _i1637 = 0; _i1637 < _list1635.size; ++_i1637) + org.apache.thrift.protocol.TList _list1643 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1643.size); + Partition _elem1644; + for (int _i1645 = 0; _i1645 < _list1643.size; ++_i1645) { - _elem1636 = new Partition(); - _elem1636.read(iprot); - struct.new_parts.add(_elem1636); + _elem1644 = new Partition(); + _elem1644.read(iprot); + struct.new_parts.add(_elem1644); } } struct.setNew_partsIsSet(true); @@ -134585,14 +134585,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 _list1638 = iprot.readListBegin(); - struct.new_parts = new ArrayList(_list1638.size); - Partition _elem1639; - for (int _i1640 = 0; _i1640 < _list1638.size; ++_i1640) + org.apache.thrift.protocol.TList _list1646 = iprot.readListBegin(); + struct.new_parts = new ArrayList(_list1646.size); + Partition _elem1647; + for (int _i1648 = 0; _i1648 < _list1646.size; ++_i1648) { - _elem1639 = new Partition(); - _elem1639.read(iprot); - struct.new_parts.add(_elem1639); + _elem1647 = new Partition(); + _elem1647.read(iprot); + struct.new_parts.add(_elem1647); } iprot.readListEnd(); } @@ -134637,9 +134637,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 _iter1641 : struct.new_parts) + for (Partition _iter1649 : struct.new_parts) { - _iter1641.write(oprot); + _iter1649.write(oprot); } oprot.writeListEnd(); } @@ -134690,9 +134690,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 _iter1642 : struct.new_parts) + for (Partition _iter1650 : struct.new_parts) { - _iter1642.write(oprot); + _iter1650.write(oprot); } } } @@ -134715,14 +134715,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, alter_partitions_wit } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1643 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.new_parts = new ArrayList(_list1643.size); - Partition _elem1644; - for (int _i1645 = 0; _i1645 < _list1643.size; ++_i1645) + org.apache.thrift.protocol.TList _list1651 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.new_parts = new ArrayList(_list1651.size); + Partition _elem1652; + for (int _i1653 = 0; _i1653 < _list1651.size; ++_i1653) { - _elem1644 = new Partition(); - _elem1644.read(iprot); - struct.new_parts.add(_elem1644); + _elem1652 = new Partition(); + _elem1652.read(iprot); + struct.new_parts.add(_elem1652); } } struct.setNew_partsIsSet(true); @@ -137861,13 +137861,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 _list1646 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1646.size); - String _elem1647; - for (int _i1648 = 0; _i1648 < _list1646.size; ++_i1648) + org.apache.thrift.protocol.TList _list1654 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1654.size); + String _elem1655; + for (int _i1656 = 0; _i1656 < _list1654.size; ++_i1656) { - _elem1647 = iprot.readString(); - struct.part_vals.add(_elem1647); + _elem1655 = iprot.readString(); + struct.part_vals.add(_elem1655); } iprot.readListEnd(); } @@ -137912,9 +137912,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 _iter1649 : struct.part_vals) + for (String _iter1657 : struct.part_vals) { - oprot.writeString(_iter1649); + oprot.writeString(_iter1657); } oprot.writeListEnd(); } @@ -137965,9 +137965,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 _iter1650 : struct.part_vals) + for (String _iter1658 : struct.part_vals) { - oprot.writeString(_iter1650); + oprot.writeString(_iter1658); } } } @@ -137990,13 +137990,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, rename_partition_arg } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1651 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1651.size); - String _elem1652; - for (int _i1653 = 0; _i1653 < _list1651.size; ++_i1653) + org.apache.thrift.protocol.TList _list1659 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1659.size); + String _elem1660; + for (int _i1661 = 0; _i1661 < _list1659.size; ++_i1661) { - _elem1652 = iprot.readString(); - struct.part_vals.add(_elem1652); + _elem1660 = iprot.readString(); + struct.part_vals.add(_elem1660); } } struct.setPart_valsIsSet(true); @@ -139808,13 +139808,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 _list1654 = iprot.readListBegin(); - struct.part_vals = new ArrayList(_list1654.size); - String _elem1655; - for (int _i1656 = 0; _i1656 < _list1654.size; ++_i1656) + org.apache.thrift.protocol.TList _list1662 = iprot.readListBegin(); + struct.part_vals = new ArrayList(_list1662.size); + String _elem1663; + for (int _i1664 = 0; _i1664 < _list1662.size; ++_i1664) { - _elem1655 = iprot.readString(); - struct.part_vals.add(_elem1655); + _elem1663 = iprot.readString(); + struct.part_vals.add(_elem1663); } iprot.readListEnd(); } @@ -139848,9 +139848,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 _iter1657 : struct.part_vals) + for (String _iter1665 : struct.part_vals) { - oprot.writeString(_iter1657); + oprot.writeString(_iter1665); } oprot.writeListEnd(); } @@ -139887,9 +139887,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 _iter1658 : struct.part_vals) + for (String _iter1666 : struct.part_vals) { - oprot.writeString(_iter1658); + oprot.writeString(_iter1666); } } } @@ -139904,13 +139904,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 _list1659 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.part_vals = new ArrayList(_list1659.size); - String _elem1660; - for (int _i1661 = 0; _i1661 < _list1659.size; ++_i1661) + org.apache.thrift.protocol.TList _list1667 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.part_vals = new ArrayList(_list1667.size); + String _elem1668; + for (int _i1669 = 0; _i1669 < _list1667.size; ++_i1669) { - _elem1660 = iprot.readString(); - struct.part_vals.add(_elem1660); + _elem1668 = iprot.readString(); + struct.part_vals.add(_elem1668); } } struct.setPart_valsIsSet(true); @@ -142065,13 +142065,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 _list1662 = iprot.readListBegin(); - struct.success = new ArrayList(_list1662.size); - String _elem1663; - for (int _i1664 = 0; _i1664 < _list1662.size; ++_i1664) + org.apache.thrift.protocol.TList _list1670 = iprot.readListBegin(); + struct.success = new ArrayList(_list1670.size); + String _elem1671; + for (int _i1672 = 0; _i1672 < _list1670.size; ++_i1672) { - _elem1663 = iprot.readString(); - struct.success.add(_elem1663); + _elem1671 = iprot.readString(); + struct.success.add(_elem1671); } iprot.readListEnd(); } @@ -142106,9 +142106,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 _iter1665 : struct.success) + for (String _iter1673 : struct.success) { - oprot.writeString(_iter1665); + oprot.writeString(_iter1673); } oprot.writeListEnd(); } @@ -142147,9 +142147,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, partition_name_to_v if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1666 : struct.success) + for (String _iter1674 : struct.success) { - oprot.writeString(_iter1666); + oprot.writeString(_iter1674); } } } @@ -142164,13 +142164,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 _list1667 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1667.size); - String _elem1668; - for (int _i1669 = 0; _i1669 < _list1667.size; ++_i1669) + org.apache.thrift.protocol.TList _list1675 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1675.size); + String _elem1676; + for (int _i1677 = 0; _i1677 < _list1675.size; ++_i1677) { - _elem1668 = iprot.readString(); - struct.success.add(_elem1668); + _elem1676 = iprot.readString(); + struct.success.add(_elem1676); } } struct.setSuccessIsSet(true); @@ -142933,15 +142933,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 _map1670 = iprot.readMapBegin(); - struct.success = new HashMap(2*_map1670.size); - String _key1671; - String _val1672; - for (int _i1673 = 0; _i1673 < _map1670.size; ++_i1673) + org.apache.thrift.protocol.TMap _map1678 = iprot.readMapBegin(); + struct.success = new HashMap(2*_map1678.size); + String _key1679; + String _val1680; + for (int _i1681 = 0; _i1681 < _map1678.size; ++_i1681) { - _key1671 = iprot.readString(); - _val1672 = iprot.readString(); - struct.success.put(_key1671, _val1672); + _key1679 = iprot.readString(); + _val1680 = iprot.readString(); + struct.success.put(_key1679, _val1680); } iprot.readMapEnd(); } @@ -142976,10 +142976,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 _iter1674 : struct.success.entrySet()) + for (Map.Entry _iter1682 : struct.success.entrySet()) { - oprot.writeString(_iter1674.getKey()); - oprot.writeString(_iter1674.getValue()); + oprot.writeString(_iter1682.getKey()); + oprot.writeString(_iter1682.getValue()); } oprot.writeMapEnd(); } @@ -143018,10 +143018,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 _iter1675 : struct.success.entrySet()) + for (Map.Entry _iter1683 : struct.success.entrySet()) { - oprot.writeString(_iter1675.getKey()); - oprot.writeString(_iter1675.getValue()); + oprot.writeString(_iter1683.getKey()); + oprot.writeString(_iter1683.getValue()); } } } @@ -143036,15 +143036,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 _map1676 = 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*_map1676.size); - String _key1677; - String _val1678; - for (int _i1679 = 0; _i1679 < _map1676.size; ++_i1679) + org.apache.thrift.protocol.TMap _map1684 = 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*_map1684.size); + String _key1685; + String _val1686; + for (int _i1687 = 0; _i1687 < _map1684.size; ++_i1687) { - _key1677 = iprot.readString(); - _val1678 = iprot.readString(); - struct.success.put(_key1677, _val1678); + _key1685 = iprot.readString(); + _val1686 = iprot.readString(); + struct.success.put(_key1685, _val1686); } } struct.setSuccessIsSet(true); @@ -143639,15 +143639,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 _map1680 = iprot.readMapBegin(); - struct.part_vals = new HashMap(2*_map1680.size); - String _key1681; - String _val1682; - for (int _i1683 = 0; _i1683 < _map1680.size; ++_i1683) + org.apache.thrift.protocol.TMap _map1688 = iprot.readMapBegin(); + struct.part_vals = new HashMap(2*_map1688.size); + String _key1689; + String _val1690; + for (int _i1691 = 0; _i1691 < _map1688.size; ++_i1691) { - _key1681 = iprot.readString(); - _val1682 = iprot.readString(); - struct.part_vals.put(_key1681, _val1682); + _key1689 = iprot.readString(); + _val1690 = iprot.readString(); + struct.part_vals.put(_key1689, _val1690); } iprot.readMapEnd(); } @@ -143691,10 +143691,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 _iter1684 : struct.part_vals.entrySet()) + for (Map.Entry _iter1692 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1684.getKey()); - oprot.writeString(_iter1684.getValue()); + oprot.writeString(_iter1692.getKey()); + oprot.writeString(_iter1692.getValue()); } oprot.writeMapEnd(); } @@ -143745,10 +143745,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, markPartitionForEve if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (Map.Entry _iter1685 : struct.part_vals.entrySet()) + for (Map.Entry _iter1693 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1685.getKey()); - oprot.writeString(_iter1685.getValue()); + oprot.writeString(_iter1693.getKey()); + oprot.writeString(_iter1693.getValue()); } } } @@ -143771,15 +143771,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, markPartitionForEven } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map1686 = 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*_map1686.size); - String _key1687; - String _val1688; - for (int _i1689 = 0; _i1689 < _map1686.size; ++_i1689) + org.apache.thrift.protocol.TMap _map1694 = 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*_map1694.size); + String _key1695; + String _val1696; + for (int _i1697 = 0; _i1697 < _map1694.size; ++_i1697) { - _key1687 = iprot.readString(); - _val1688 = iprot.readString(); - struct.part_vals.put(_key1687, _val1688); + _key1695 = iprot.readString(); + _val1696 = iprot.readString(); + struct.part_vals.put(_key1695, _val1696); } } struct.setPart_valsIsSet(true); @@ -145263,15 +145263,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 _map1690 = iprot.readMapBegin(); - struct.part_vals = new HashMap(2*_map1690.size); - String _key1691; - String _val1692; - for (int _i1693 = 0; _i1693 < _map1690.size; ++_i1693) + org.apache.thrift.protocol.TMap _map1698 = iprot.readMapBegin(); + struct.part_vals = new HashMap(2*_map1698.size); + String _key1699; + String _val1700; + for (int _i1701 = 0; _i1701 < _map1698.size; ++_i1701) { - _key1691 = iprot.readString(); - _val1692 = iprot.readString(); - struct.part_vals.put(_key1691, _val1692); + _key1699 = iprot.readString(); + _val1700 = iprot.readString(); + struct.part_vals.put(_key1699, _val1700); } iprot.readMapEnd(); } @@ -145315,10 +145315,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 _iter1694 : struct.part_vals.entrySet()) + for (Map.Entry _iter1702 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1694.getKey()); - oprot.writeString(_iter1694.getValue()); + oprot.writeString(_iter1702.getKey()); + oprot.writeString(_iter1702.getValue()); } oprot.writeMapEnd(); } @@ -145369,10 +145369,10 @@ public void write(org.apache.thrift.protocol.TProtocol prot, isPartitionMarkedFo if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); - for (Map.Entry _iter1695 : struct.part_vals.entrySet()) + for (Map.Entry _iter1703 : struct.part_vals.entrySet()) { - oprot.writeString(_iter1695.getKey()); - oprot.writeString(_iter1695.getValue()); + oprot.writeString(_iter1703.getKey()); + oprot.writeString(_iter1703.getValue()); } } } @@ -145395,15 +145395,15 @@ public void read(org.apache.thrift.protocol.TProtocol prot, isPartitionMarkedFor } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map1696 = 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*_map1696.size); - String _key1697; - String _val1698; - for (int _i1699 = 0; _i1699 < _map1696.size; ++_i1699) + org.apache.thrift.protocol.TMap _map1704 = 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*_map1704.size); + String _key1705; + String _val1706; + for (int _i1707 = 0; _i1707 < _map1704.size; ++_i1707) { - _key1697 = iprot.readString(); - _val1698 = iprot.readString(); - struct.part_vals.put(_key1697, _val1698); + _key1705 = iprot.readString(); + _val1706 = iprot.readString(); + struct.part_vals.put(_key1705, _val1706); } } struct.setPart_valsIsSet(true); @@ -170267,13 +170267,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 _list1700 = iprot.readListBegin(); - struct.success = new ArrayList(_list1700.size); - String _elem1701; - for (int _i1702 = 0; _i1702 < _list1700.size; ++_i1702) + org.apache.thrift.protocol.TList _list1708 = iprot.readListBegin(); + struct.success = new ArrayList(_list1708.size); + String _elem1709; + for (int _i1710 = 0; _i1710 < _list1708.size; ++_i1710) { - _elem1701 = iprot.readString(); - struct.success.add(_elem1701); + _elem1709 = iprot.readString(); + struct.success.add(_elem1709); } iprot.readListEnd(); } @@ -170308,9 +170308,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 _iter1703 : struct.success) + for (String _iter1711 : struct.success) { - oprot.writeString(_iter1703); + oprot.writeString(_iter1711); } oprot.writeListEnd(); } @@ -170349,9 +170349,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_functions_resul if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1704 : struct.success) + for (String _iter1712 : struct.success) { - oprot.writeString(_iter1704); + oprot.writeString(_iter1712); } } } @@ -170366,13 +170366,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 _list1705 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1705.size); - String _elem1706; - for (int _i1707 = 0; _i1707 < _list1705.size; ++_i1707) + org.apache.thrift.protocol.TList _list1713 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1713.size); + String _elem1714; + for (int _i1715 = 0; _i1715 < _list1713.size; ++_i1715) { - _elem1706 = iprot.readString(); - struct.success.add(_elem1706); + _elem1714 = iprot.readString(); + struct.success.add(_elem1714); } } struct.setSuccessIsSet(true); @@ -174427,13 +174427,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 _list1708 = iprot.readListBegin(); - struct.success = new ArrayList(_list1708.size); - String _elem1709; - for (int _i1710 = 0; _i1710 < _list1708.size; ++_i1710) + org.apache.thrift.protocol.TList _list1716 = iprot.readListBegin(); + struct.success = new ArrayList(_list1716.size); + String _elem1717; + for (int _i1718 = 0; _i1718 < _list1716.size; ++_i1718) { - _elem1709 = iprot.readString(); - struct.success.add(_elem1709); + _elem1717 = iprot.readString(); + struct.success.add(_elem1717); } iprot.readListEnd(); } @@ -174468,9 +174468,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 _iter1711 : struct.success) + for (String _iter1719 : struct.success) { - oprot.writeString(_iter1711); + oprot.writeString(_iter1719); } oprot.writeListEnd(); } @@ -174509,9 +174509,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_role_names_resu if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1712 : struct.success) + for (String _iter1720 : struct.success) { - oprot.writeString(_iter1712); + oprot.writeString(_iter1720); } } } @@ -174526,13 +174526,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 _list1713 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1713.size); - String _elem1714; - for (int _i1715 = 0; _i1715 < _list1713.size; ++_i1715) + org.apache.thrift.protocol.TList _list1721 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1721.size); + String _elem1722; + for (int _i1723 = 0; _i1723 < _list1721.size; ++_i1723) { - _elem1714 = iprot.readString(); - struct.success.add(_elem1714); + _elem1722 = iprot.readString(); + struct.success.add(_elem1722); } } struct.setSuccessIsSet(true); @@ -177823,14 +177823,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 _list1716 = iprot.readListBegin(); - struct.success = new ArrayList(_list1716.size); - Role _elem1717; - for (int _i1718 = 0; _i1718 < _list1716.size; ++_i1718) + org.apache.thrift.protocol.TList _list1724 = iprot.readListBegin(); + struct.success = new ArrayList(_list1724.size); + Role _elem1725; + for (int _i1726 = 0; _i1726 < _list1724.size; ++_i1726) { - _elem1717 = new Role(); - _elem1717.read(iprot); - struct.success.add(_elem1717); + _elem1725 = new Role(); + _elem1725.read(iprot); + struct.success.add(_elem1725); } iprot.readListEnd(); } @@ -177865,9 +177865,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 _iter1719 : struct.success) + for (Role _iter1727 : struct.success) { - _iter1719.write(oprot); + _iter1727.write(oprot); } oprot.writeListEnd(); } @@ -177906,9 +177906,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, list_roles_result s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (Role _iter1720 : struct.success) + for (Role _iter1728 : struct.success) { - _iter1720.write(oprot); + _iter1728.write(oprot); } } } @@ -177923,14 +177923,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 _list1721 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1721.size); - Role _elem1722; - for (int _i1723 = 0; _i1723 < _list1721.size; ++_i1723) + org.apache.thrift.protocol.TList _list1729 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1729.size); + Role _elem1730; + for (int _i1731 = 0; _i1731 < _list1729.size; ++_i1731) { - _elem1722 = new Role(); - _elem1722.read(iprot); - struct.success.add(_elem1722); + _elem1730 = new Role(); + _elem1730.read(iprot); + struct.success.add(_elem1730); } } struct.setSuccessIsSet(true); @@ -180935,13 +180935,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 _list1724 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1724.size); - String _elem1725; - for (int _i1726 = 0; _i1726 < _list1724.size; ++_i1726) + org.apache.thrift.protocol.TList _list1732 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1732.size); + String _elem1733; + for (int _i1734 = 0; _i1734 < _list1732.size; ++_i1734) { - _elem1725 = iprot.readString(); - struct.group_names.add(_elem1725); + _elem1733 = iprot.readString(); + struct.group_names.add(_elem1733); } iprot.readListEnd(); } @@ -180977,9 +180977,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 _iter1727 : struct.group_names) + for (String _iter1735 : struct.group_names) { - oprot.writeString(_iter1727); + oprot.writeString(_iter1735); } oprot.writeListEnd(); } @@ -181022,9 +181022,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 _iter1728 : struct.group_names) + for (String _iter1736 : struct.group_names) { - oprot.writeString(_iter1728); + oprot.writeString(_iter1736); } } } @@ -181045,13 +181045,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_privilege_set_ar } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list1729 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1729.size); - String _elem1730; - for (int _i1731 = 0; _i1731 < _list1729.size; ++_i1731) + org.apache.thrift.protocol.TList _list1737 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1737.size); + String _elem1738; + for (int _i1739 = 0; _i1739 < _list1737.size; ++_i1739) { - _elem1730 = iprot.readString(); - struct.group_names.add(_elem1730); + _elem1738 = iprot.readString(); + struct.group_names.add(_elem1738); } } struct.setGroup_namesIsSet(true); @@ -182509,14 +182509,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 _list1732 = iprot.readListBegin(); - struct.success = new ArrayList(_list1732.size); - HiveObjectPrivilege _elem1733; - for (int _i1734 = 0; _i1734 < _list1732.size; ++_i1734) + org.apache.thrift.protocol.TList _list1740 = iprot.readListBegin(); + struct.success = new ArrayList(_list1740.size); + HiveObjectPrivilege _elem1741; + for (int _i1742 = 0; _i1742 < _list1740.size; ++_i1742) { - _elem1733 = new HiveObjectPrivilege(); - _elem1733.read(iprot); - struct.success.add(_elem1733); + _elem1741 = new HiveObjectPrivilege(); + _elem1741.read(iprot); + struct.success.add(_elem1741); } iprot.readListEnd(); } @@ -182551,9 +182551,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 _iter1735 : struct.success) + for (HiveObjectPrivilege _iter1743 : struct.success) { - _iter1735.write(oprot); + _iter1743.write(oprot); } oprot.writeListEnd(); } @@ -182592,9 +182592,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, list_privileges_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (HiveObjectPrivilege _iter1736 : struct.success) + for (HiveObjectPrivilege _iter1744 : struct.success) { - _iter1736.write(oprot); + _iter1744.write(oprot); } } } @@ -182609,14 +182609,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 _list1737 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1737.size); - HiveObjectPrivilege _elem1738; - for (int _i1739 = 0; _i1739 < _list1737.size; ++_i1739) + org.apache.thrift.protocol.TList _list1745 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1745.size); + HiveObjectPrivilege _elem1746; + for (int _i1747 = 0; _i1747 < _list1745.size; ++_i1747) { - _elem1738 = new HiveObjectPrivilege(); - _elem1738.read(iprot); - struct.success.add(_elem1738); + _elem1746 = new HiveObjectPrivilege(); + _elem1746.read(iprot); + struct.success.add(_elem1746); } } struct.setSuccessIsSet(true); @@ -186563,13 +186563,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 _list1740 = iprot.readListBegin(); - struct.group_names = new ArrayList(_list1740.size); - String _elem1741; - for (int _i1742 = 0; _i1742 < _list1740.size; ++_i1742) + org.apache.thrift.protocol.TList _list1748 = iprot.readListBegin(); + struct.group_names = new ArrayList(_list1748.size); + String _elem1749; + for (int _i1750 = 0; _i1750 < _list1748.size; ++_i1750) { - _elem1741 = iprot.readString(); - struct.group_names.add(_elem1741); + _elem1749 = iprot.readString(); + struct.group_names.add(_elem1749); } iprot.readListEnd(); } @@ -186600,9 +186600,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 _iter1743 : struct.group_names) + for (String _iter1751 : struct.group_names) { - oprot.writeString(_iter1743); + oprot.writeString(_iter1751); } oprot.writeListEnd(); } @@ -186639,9 +186639,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 _iter1744 : struct.group_names) + for (String _iter1752 : struct.group_names) { - oprot.writeString(_iter1744); + oprot.writeString(_iter1752); } } } @@ -186657,13 +186657,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, set_ugi_args struct) } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list1745 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.group_names = new ArrayList(_list1745.size); - String _elem1746; - for (int _i1747 = 0; _i1747 < _list1745.size; ++_i1747) + org.apache.thrift.protocol.TList _list1753 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.group_names = new ArrayList(_list1753.size); + String _elem1754; + for (int _i1755 = 0; _i1755 < _list1753.size; ++_i1755) { - _elem1746 = iprot.readString(); - struct.group_names.add(_elem1746); + _elem1754 = iprot.readString(); + struct.group_names.add(_elem1754); } } struct.setGroup_namesIsSet(true); @@ -187066,13 +187066,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 _list1748 = iprot.readListBegin(); - struct.success = new ArrayList(_list1748.size); - String _elem1749; - for (int _i1750 = 0; _i1750 < _list1748.size; ++_i1750) + org.apache.thrift.protocol.TList _list1756 = iprot.readListBegin(); + struct.success = new ArrayList(_list1756.size); + String _elem1757; + for (int _i1758 = 0; _i1758 < _list1756.size; ++_i1758) { - _elem1749 = iprot.readString(); - struct.success.add(_elem1749); + _elem1757 = iprot.readString(); + struct.success.add(_elem1757); } iprot.readListEnd(); } @@ -187107,9 +187107,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 _iter1751 : struct.success) + for (String _iter1759 : struct.success) { - oprot.writeString(_iter1751); + oprot.writeString(_iter1759); } oprot.writeListEnd(); } @@ -187148,9 +187148,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, set_ugi_result stru if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1752 : struct.success) + for (String _iter1760 : struct.success) { - oprot.writeString(_iter1752); + oprot.writeString(_iter1760); } } } @@ -187165,13 +187165,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 _list1753 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1753.size); - String _elem1754; - for (int _i1755 = 0; _i1755 < _list1753.size; ++_i1755) + org.apache.thrift.protocol.TList _list1761 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1761.size); + String _elem1762; + for (int _i1763 = 0; _i1763 < _list1761.size; ++_i1763) { - _elem1754 = iprot.readString(); - struct.success.add(_elem1754); + _elem1762 = iprot.readString(); + struct.success.add(_elem1762); } } struct.setSuccessIsSet(true); @@ -192462,13 +192462,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 _list1756 = iprot.readListBegin(); - struct.success = new ArrayList(_list1756.size); - String _elem1757; - for (int _i1758 = 0; _i1758 < _list1756.size; ++_i1758) + org.apache.thrift.protocol.TList _list1764 = iprot.readListBegin(); + struct.success = new ArrayList(_list1764.size); + String _elem1765; + for (int _i1766 = 0; _i1766 < _list1764.size; ++_i1766) { - _elem1757 = iprot.readString(); - struct.success.add(_elem1757); + _elem1765 = iprot.readString(); + struct.success.add(_elem1765); } iprot.readListEnd(); } @@ -192494,9 +192494,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 _iter1759 : struct.success) + for (String _iter1767 : struct.success) { - oprot.writeString(_iter1759); + oprot.writeString(_iter1767); } oprot.writeListEnd(); } @@ -192527,9 +192527,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_all_token_ident if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1760 : struct.success) + for (String _iter1768 : struct.success) { - oprot.writeString(_iter1760); + oprot.writeString(_iter1768); } } } @@ -192541,13 +192541,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 _list1761 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1761.size); - String _elem1762; - for (int _i1763 = 0; _i1763 < _list1761.size; ++_i1763) + org.apache.thrift.protocol.TList _list1769 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1769.size); + String _elem1770; + for (int _i1771 = 0; _i1771 < _list1769.size; ++_i1771) { - _elem1762 = iprot.readString(); - struct.success.add(_elem1762); + _elem1770 = iprot.readString(); + struct.success.add(_elem1770); } } struct.setSuccessIsSet(true); @@ -195577,13 +195577,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 _list1764 = iprot.readListBegin(); - struct.success = new ArrayList(_list1764.size); - String _elem1765; - for (int _i1766 = 0; _i1766 < _list1764.size; ++_i1766) + org.apache.thrift.protocol.TList _list1772 = iprot.readListBegin(); + struct.success = new ArrayList(_list1772.size); + String _elem1773; + for (int _i1774 = 0; _i1774 < _list1772.size; ++_i1774) { - _elem1765 = iprot.readString(); - struct.success.add(_elem1765); + _elem1773 = iprot.readString(); + struct.success.add(_elem1773); } iprot.readListEnd(); } @@ -195609,9 +195609,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 _iter1767 : struct.success) + for (String _iter1775 : struct.success) { - oprot.writeString(_iter1767); + oprot.writeString(_iter1775); } oprot.writeListEnd(); } @@ -195642,9 +195642,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_master_keys_res if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1768 : struct.success) + for (String _iter1776 : struct.success) { - oprot.writeString(_iter1768); + oprot.writeString(_iter1776); } } } @@ -195656,13 +195656,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 _list1769 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1769.size); - String _elem1770; - for (int _i1771 = 0; _i1771 < _list1769.size; ++_i1771) + org.apache.thrift.protocol.TList _list1777 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1777.size); + String _elem1778; + for (int _i1779 = 0; _i1779 < _list1777.size; ++_i1779) { - _elem1770 = iprot.readString(); - struct.success.add(_elem1770); + _elem1778 = iprot.readString(); + struct.success.add(_elem1778); } } struct.setSuccessIsSet(true); @@ -212783,13 +212783,13 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, find_columns_with_s case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1772 = iprot.readListBegin(); - struct.success = new ArrayList(_list1772.size); - String _elem1773; - for (int _i1774 = 0; _i1774 < _list1772.size; ++_i1774) + org.apache.thrift.protocol.TList _list1780 = iprot.readListBegin(); + struct.success = new ArrayList(_list1780.size); + String _elem1781; + for (int _i1782 = 0; _i1782 < _list1780.size; ++_i1782) { - _elem1773 = iprot.readString(); - struct.success.add(_elem1773); + _elem1781 = iprot.readString(); + struct.success.add(_elem1781); } iprot.readListEnd(); } @@ -212815,9 +212815,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, find_columns_with_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter1775 : struct.success) + for (String _iter1783 : struct.success) { - oprot.writeString(_iter1775); + oprot.writeString(_iter1783); } oprot.writeListEnd(); } @@ -212848,9 +212848,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, find_columns_with_s if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (String _iter1776 : struct.success) + for (String _iter1784 : struct.success) { - oprot.writeString(_iter1776); + oprot.writeString(_iter1784); } } } @@ -212862,13 +212862,13 @@ public void read(org.apache.thrift.protocol.TProtocol prot, find_columns_with_st BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1777 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList(_list1777.size); - String _elem1778; - for (int _i1779 = 0; _i1779 < _list1777.size; ++_i1779) + org.apache.thrift.protocol.TList _list1785 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.success = new ArrayList(_list1785.size); + String _elem1786; + for (int _i1787 = 0; _i1787 < _list1785.size; ++_i1787) { - _elem1778 = iprot.readString(); - struct.success.add(_elem1778); + _elem1786 = iprot.readString(); + struct.success.add(_elem1786); } } struct.setSuccessIsSet(true); @@ -249754,14 +249754,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 _list1780 = iprot.readListBegin(); - struct.success = new ArrayList(_list1780.size); - SchemaVersion _elem1781; - for (int _i1782 = 0; _i1782 < _list1780.size; ++_i1782) + org.apache.thrift.protocol.TList _list1788 = iprot.readListBegin(); + struct.success = new ArrayList(_list1788.size); + SchemaVersion _elem1789; + for (int _i1790 = 0; _i1790 < _list1788.size; ++_i1790) { - _elem1781 = new SchemaVersion(); - _elem1781.read(iprot); - struct.success.add(_elem1781); + _elem1789 = new SchemaVersion(); + _elem1789.read(iprot); + struct.success.add(_elem1789); } iprot.readListEnd(); } @@ -249805,9 +249805,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 _iter1783 : struct.success) + for (SchemaVersion _iter1791 : struct.success) { - _iter1783.write(oprot); + _iter1791.write(oprot); } oprot.writeListEnd(); } @@ -249854,9 +249854,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_schema_all_vers if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (SchemaVersion _iter1784 : struct.success) + for (SchemaVersion _iter1792 : struct.success) { - _iter1784.write(oprot); + _iter1792.write(oprot); } } } @@ -249874,14 +249874,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 _list1785 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1785.size); - SchemaVersion _elem1786; - for (int _i1787 = 0; _i1787 < _list1785.size; ++_i1787) + org.apache.thrift.protocol.TList _list1793 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1793.size); + SchemaVersion _elem1794; + for (int _i1795 = 0; _i1795 < _list1793.size; ++_i1795) { - _elem1786 = new SchemaVersion(); - _elem1786.read(iprot); - struct.success.add(_elem1786); + _elem1794 = new SchemaVersion(); + _elem1794.read(iprot); + struct.success.add(_elem1794); } } struct.setSuccessIsSet(true); @@ -258424,14 +258424,14 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, get_runtime_stats_r case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list1788 = iprot.readListBegin(); - struct.success = new ArrayList(_list1788.size); - RuntimeStat _elem1789; - for (int _i1790 = 0; _i1790 < _list1788.size; ++_i1790) + org.apache.thrift.protocol.TList _list1796 = iprot.readListBegin(); + struct.success = new ArrayList(_list1796.size); + RuntimeStat _elem1797; + for (int _i1798 = 0; _i1798 < _list1796.size; ++_i1798) { - _elem1789 = new RuntimeStat(); - _elem1789.read(iprot); - struct.success.add(_elem1789); + _elem1797 = new RuntimeStat(); + _elem1797.read(iprot); + struct.success.add(_elem1797); } iprot.readListEnd(); } @@ -258466,9 +258466,9 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, get_runtime_stats_ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); - for (RuntimeStat _iter1791 : struct.success) + for (RuntimeStat _iter1799 : struct.success) { - _iter1791.write(oprot); + _iter1799.write(oprot); } oprot.writeListEnd(); } @@ -258507,9 +258507,9 @@ public void write(org.apache.thrift.protocol.TProtocol prot, get_runtime_stats_r if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); - for (RuntimeStat _iter1792 : struct.success) + for (RuntimeStat _iter1800 : struct.success) { - _iter1792.write(oprot); + _iter1800.write(oprot); } } } @@ -258524,14 +258524,14 @@ public void read(org.apache.thrift.protocol.TProtocol prot, get_runtime_stats_re BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list1793 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.success = new ArrayList(_list1793.size); - RuntimeStat _elem1794; - for (int _i1795 = 0; _i1795 < _list1793.size; ++_i1795) + org.apache.thrift.protocol.TList _list1801 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.success = new ArrayList(_list1801.size); + RuntimeStat _elem1802; + for (int _i1803 = 0; _i1803 < _list1801.size; ++_i1803) { - _elem1794 = new RuntimeStat(); - _elem1794.read(iprot); - struct.success.add(_elem1794); + _elem1802 = new RuntimeStat(); + _elem1802.read(iprot); + struct.success.add(_elem1802); } } struct.setSuccessIsSet(true); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php index f1cb36ec4f..1741c440b2 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/ThriftHiveMetastore.php @@ -17124,14 +17124,14 @@ class ThriftHiveMetastore_get_databases_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1057 = 0; - $_etype1060 = 0; - $xfer += $input->readListBegin($_etype1060, $_size1057); - for ($_i1061 = 0; $_i1061 < $_size1057; ++$_i1061) + $_size1064 = 0; + $_etype1067 = 0; + $xfer += $input->readListBegin($_etype1067, $_size1064); + for ($_i1068 = 0; $_i1068 < $_size1064; ++$_i1068) { - $elem1062 = null; - $xfer += $input->readString($elem1062); - $this->success []= $elem1062; + $elem1069 = null; + $xfer += $input->readString($elem1069); + $this->success []= $elem1069; } $xfer += $input->readListEnd(); } else { @@ -17167,9 +17167,9 @@ class ThriftHiveMetastore_get_databases_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1063) + foreach ($this->success as $iter1070) { - $xfer += $output->writeString($iter1063); + $xfer += $output->writeString($iter1070); } } $output->writeListEnd(); @@ -17300,14 +17300,14 @@ class ThriftHiveMetastore_get_all_databases_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1064 = 0; - $_etype1067 = 0; - $xfer += $input->readListBegin($_etype1067, $_size1064); - for ($_i1068 = 0; $_i1068 < $_size1064; ++$_i1068) + $_size1071 = 0; + $_etype1074 = 0; + $xfer += $input->readListBegin($_etype1074, $_size1071); + for ($_i1075 = 0; $_i1075 < $_size1071; ++$_i1075) { - $elem1069 = null; - $xfer += $input->readString($elem1069); - $this->success []= $elem1069; + $elem1076 = null; + $xfer += $input->readString($elem1076); + $this->success []= $elem1076; } $xfer += $input->readListEnd(); } else { @@ -17343,9 +17343,9 @@ class ThriftHiveMetastore_get_all_databases_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1070) + foreach ($this->success as $iter1077) { - $xfer += $output->writeString($iter1070); + $xfer += $output->writeString($iter1077); } } $output->writeListEnd(); @@ -18346,18 +18346,18 @@ class ThriftHiveMetastore_get_type_all_result { case 0: if ($ftype == TType::MAP) { $this->success = array(); - $_size1071 = 0; - $_ktype1072 = 0; - $_vtype1073 = 0; - $xfer += $input->readMapBegin($_ktype1072, $_vtype1073, $_size1071); - for ($_i1075 = 0; $_i1075 < $_size1071; ++$_i1075) + $_size1078 = 0; + $_ktype1079 = 0; + $_vtype1080 = 0; + $xfer += $input->readMapBegin($_ktype1079, $_vtype1080, $_size1078); + for ($_i1082 = 0; $_i1082 < $_size1078; ++$_i1082) { - $key1076 = ''; - $val1077 = new \metastore\Type(); - $xfer += $input->readString($key1076); - $val1077 = new \metastore\Type(); - $xfer += $val1077->read($input); - $this->success[$key1076] = $val1077; + $key1083 = ''; + $val1084 = new \metastore\Type(); + $xfer += $input->readString($key1083); + $val1084 = new \metastore\Type(); + $xfer += $val1084->read($input); + $this->success[$key1083] = $val1084; } $xfer += $input->readMapEnd(); } else { @@ -18393,10 +18393,10 @@ class ThriftHiveMetastore_get_type_all_result { { $output->writeMapBegin(TType::STRING, TType::STRUCT, count($this->success)); { - foreach ($this->success as $kiter1078 => $viter1079) + foreach ($this->success as $kiter1085 => $viter1086) { - $xfer += $output->writeString($kiter1078); - $xfer += $viter1079->write($output); + $xfer += $output->writeString($kiter1085); + $xfer += $viter1086->write($output); } } $output->writeMapEnd(); @@ -18600,15 +18600,15 @@ class ThriftHiveMetastore_get_fields_result { case 0: if ($ftype == TType::LST) { $this->success = 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; - $elem1085 = new \metastore\FieldSchema(); - $xfer += $elem1085->read($input); - $this->success []= $elem1085; + $elem1092 = null; + $elem1092 = new \metastore\FieldSchema(); + $xfer += $elem1092->read($input); + $this->success []= $elem1092; } $xfer += $input->readListEnd(); } else { @@ -18660,9 +18660,9 @@ class ThriftHiveMetastore_get_fields_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1086) + foreach ($this->success as $iter1093) { - $xfer += $iter1086->write($output); + $xfer += $iter1093->write($output); } } $output->writeListEnd(); @@ -18904,15 +18904,15 @@ class ThriftHiveMetastore_get_fields_with_environment_context_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\FieldSchema(); - $xfer += $elem1092->read($input); - $this->success []= $elem1092; + $elem1099 = null; + $elem1099 = new \metastore\FieldSchema(); + $xfer += $elem1099->read($input); + $this->success []= $elem1099; } $xfer += $input->readListEnd(); } else { @@ -18964,9 +18964,9 @@ class ThriftHiveMetastore_get_fields_with_environment_context_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(); @@ -19180,15 +19180,15 @@ class ThriftHiveMetastore_get_schema_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\FieldSchema(); - $xfer += $elem1099->read($input); - $this->success []= $elem1099; + $elem1106 = null; + $elem1106 = new \metastore\FieldSchema(); + $xfer += $elem1106->read($input); + $this->success []= $elem1106; } $xfer += $input->readListEnd(); } else { @@ -19240,9 +19240,9 @@ class ThriftHiveMetastore_get_schema_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(); @@ -19484,15 +19484,15 @@ class ThriftHiveMetastore_get_schema_with_environment_context_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; - $elem1106 = new \metastore\FieldSchema(); - $xfer += $elem1106->read($input); - $this->success []= $elem1106; + $elem1113 = null; + $elem1113 = new \metastore\FieldSchema(); + $xfer += $elem1113->read($input); + $this->success []= $elem1113; } $xfer += $input->readListEnd(); } else { @@ -19544,9 +19544,9 @@ class ThriftHiveMetastore_get_schema_with_environment_context_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1107) + foreach ($this->success as $iter1114) { - $xfer += $iter1107->write($output); + $xfer += $iter1114->write($output); } } $output->writeListEnd(); @@ -20218,15 +20218,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 2: if ($ftype == TType::LST) { $this->primaryKeys = 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; - $elem1113 = new \metastore\SQLPrimaryKey(); - $xfer += $elem1113->read($input); - $this->primaryKeys []= $elem1113; + $elem1120 = null; + $elem1120 = new \metastore\SQLPrimaryKey(); + $xfer += $elem1120->read($input); + $this->primaryKeys []= $elem1120; } $xfer += $input->readListEnd(); } else { @@ -20236,15 +20236,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 3: if ($ftype == TType::LST) { $this->foreignKeys = array(); - $_size1114 = 0; - $_etype1117 = 0; - $xfer += $input->readListBegin($_etype1117, $_size1114); - for ($_i1118 = 0; $_i1118 < $_size1114; ++$_i1118) + $_size1121 = 0; + $_etype1124 = 0; + $xfer += $input->readListBegin($_etype1124, $_size1121); + for ($_i1125 = 0; $_i1125 < $_size1121; ++$_i1125) { - $elem1119 = null; - $elem1119 = new \metastore\SQLForeignKey(); - $xfer += $elem1119->read($input); - $this->foreignKeys []= $elem1119; + $elem1126 = null; + $elem1126 = new \metastore\SQLForeignKey(); + $xfer += $elem1126->read($input); + $this->foreignKeys []= $elem1126; } $xfer += $input->readListEnd(); } else { @@ -20254,15 +20254,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 4: if ($ftype == TType::LST) { $this->uniqueConstraints = array(); - $_size1120 = 0; - $_etype1123 = 0; - $xfer += $input->readListBegin($_etype1123, $_size1120); - for ($_i1124 = 0; $_i1124 < $_size1120; ++$_i1124) + $_size1127 = 0; + $_etype1130 = 0; + $xfer += $input->readListBegin($_etype1130, $_size1127); + for ($_i1131 = 0; $_i1131 < $_size1127; ++$_i1131) { - $elem1125 = null; - $elem1125 = new \metastore\SQLUniqueConstraint(); - $xfer += $elem1125->read($input); - $this->uniqueConstraints []= $elem1125; + $elem1132 = null; + $elem1132 = new \metastore\SQLUniqueConstraint(); + $xfer += $elem1132->read($input); + $this->uniqueConstraints []= $elem1132; } $xfer += $input->readListEnd(); } else { @@ -20272,15 +20272,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 5: if ($ftype == TType::LST) { $this->notNullConstraints = array(); - $_size1126 = 0; - $_etype1129 = 0; - $xfer += $input->readListBegin($_etype1129, $_size1126); - for ($_i1130 = 0; $_i1130 < $_size1126; ++$_i1130) + $_size1133 = 0; + $_etype1136 = 0; + $xfer += $input->readListBegin($_etype1136, $_size1133); + for ($_i1137 = 0; $_i1137 < $_size1133; ++$_i1137) { - $elem1131 = null; - $elem1131 = new \metastore\SQLNotNullConstraint(); - $xfer += $elem1131->read($input); - $this->notNullConstraints []= $elem1131; + $elem1138 = null; + $elem1138 = new \metastore\SQLNotNullConstraint(); + $xfer += $elem1138->read($input); + $this->notNullConstraints []= $elem1138; } $xfer += $input->readListEnd(); } else { @@ -20290,15 +20290,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 6: if ($ftype == TType::LST) { $this->defaultConstraints = array(); - $_size1132 = 0; - $_etype1135 = 0; - $xfer += $input->readListBegin($_etype1135, $_size1132); - for ($_i1136 = 0; $_i1136 < $_size1132; ++$_i1136) + $_size1139 = 0; + $_etype1142 = 0; + $xfer += $input->readListBegin($_etype1142, $_size1139); + for ($_i1143 = 0; $_i1143 < $_size1139; ++$_i1143) { - $elem1137 = null; - $elem1137 = new \metastore\SQLDefaultConstraint(); - $xfer += $elem1137->read($input); - $this->defaultConstraints []= $elem1137; + $elem1144 = null; + $elem1144 = new \metastore\SQLDefaultConstraint(); + $xfer += $elem1144->read($input); + $this->defaultConstraints []= $elem1144; } $xfer += $input->readListEnd(); } else { @@ -20308,15 +20308,15 @@ class ThriftHiveMetastore_create_table_with_constraints_args { case 7: if ($ftype == TType::LST) { $this->checkConstraints = array(); - $_size1138 = 0; - $_etype1141 = 0; - $xfer += $input->readListBegin($_etype1141, $_size1138); - for ($_i1142 = 0; $_i1142 < $_size1138; ++$_i1142) + $_size1145 = 0; + $_etype1148 = 0; + $xfer += $input->readListBegin($_etype1148, $_size1145); + for ($_i1149 = 0; $_i1149 < $_size1145; ++$_i1149) { - $elem1143 = null; - $elem1143 = new \metastore\SQLCheckConstraint(); - $xfer += $elem1143->read($input); - $this->checkConstraints []= $elem1143; + $elem1150 = null; + $elem1150 = new \metastore\SQLCheckConstraint(); + $xfer += $elem1150->read($input); + $this->checkConstraints []= $elem1150; } $xfer += $input->readListEnd(); } else { @@ -20352,9 +20352,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->primaryKeys)); { - foreach ($this->primaryKeys as $iter1144) + foreach ($this->primaryKeys as $iter1151) { - $xfer += $iter1144->write($output); + $xfer += $iter1151->write($output); } } $output->writeListEnd(); @@ -20369,9 +20369,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->foreignKeys)); { - foreach ($this->foreignKeys as $iter1145) + foreach ($this->foreignKeys as $iter1152) { - $xfer += $iter1145->write($output); + $xfer += $iter1152->write($output); } } $output->writeListEnd(); @@ -20386,9 +20386,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->uniqueConstraints)); { - foreach ($this->uniqueConstraints as $iter1146) + foreach ($this->uniqueConstraints as $iter1153) { - $xfer += $iter1146->write($output); + $xfer += $iter1153->write($output); } } $output->writeListEnd(); @@ -20403,9 +20403,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->notNullConstraints)); { - foreach ($this->notNullConstraints as $iter1147) + foreach ($this->notNullConstraints as $iter1154) { - $xfer += $iter1147->write($output); + $xfer += $iter1154->write($output); } } $output->writeListEnd(); @@ -20420,9 +20420,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->defaultConstraints)); { - foreach ($this->defaultConstraints as $iter1148) + foreach ($this->defaultConstraints as $iter1155) { - $xfer += $iter1148->write($output); + $xfer += $iter1155->write($output); } } $output->writeListEnd(); @@ -20437,9 +20437,9 @@ class ThriftHiveMetastore_create_table_with_constraints_args { { $output->writeListBegin(TType::STRUCT, count($this->checkConstraints)); { - foreach ($this->checkConstraints as $iter1149) + foreach ($this->checkConstraints as $iter1156) { - $xfer += $iter1149->write($output); + $xfer += $iter1156->write($output); } } $output->writeListEnd(); @@ -22671,14 +22671,14 @@ class ThriftHiveMetastore_truncate_table_args { case 3: if ($ftype == TType::LST) { $this->partNames = 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->partNames []= $elem1155; + $elem1162 = null; + $xfer += $input->readString($elem1162); + $this->partNames []= $elem1162; } $xfer += $input->readListEnd(); } else { @@ -22716,9 +22716,9 @@ class ThriftHiveMetastore_truncate_table_args { { $output->writeListBegin(TType::STRING, count($this->partNames)); { - foreach ($this->partNames as $iter1156) + foreach ($this->partNames as $iter1163) { - $xfer += $output->writeString($iter1156); + $xfer += $output->writeString($iter1163); } } $output->writeListEnd(); @@ -23154,14 +23154,14 @@ class ThriftHiveMetastore_get_tables_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; - $xfer += $input->readString($elem1162); - $this->success []= $elem1162; + $elem1169 = null; + $xfer += $input->readString($elem1169); + $this->success []= $elem1169; } $xfer += $input->readListEnd(); } else { @@ -23197,9 +23197,9 @@ class ThriftHiveMetastore_get_tables_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1163) + foreach ($this->success as $iter1170) { - $xfer += $output->writeString($iter1163); + $xfer += $output->writeString($iter1170); } } $output->writeListEnd(); @@ -23401,14 +23401,14 @@ class ThriftHiveMetastore_get_tables_by_type_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; - $xfer += $input->readString($elem1169); - $this->success []= $elem1169; + $elem1176 = null; + $xfer += $input->readString($elem1176); + $this->success []= $elem1176; } $xfer += $input->readListEnd(); } else { @@ -23444,9 +23444,9 @@ class ThriftHiveMetastore_get_tables_by_type_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1170) + foreach ($this->success as $iter1177) { - $xfer += $output->writeString($iter1170); + $xfer += $output->writeString($iter1177); } } $output->writeListEnd(); @@ -23578,15 +23578,15 @@ class ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_result case 0: if ($ftype == TType::LST) { $this->success = 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; - $elem1176 = new \metastore\Table(); - $xfer += $elem1176->read($input); - $this->success []= $elem1176; + $elem1183 = null; + $elem1183 = new \metastore\Table(); + $xfer += $elem1183->read($input); + $this->success []= $elem1183; } $xfer += $input->readListEnd(); } else { @@ -23622,9 +23622,9 @@ class ThriftHiveMetastore_get_all_materialized_view_objects_for_rewriting_result { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1177) + foreach ($this->success as $iter1184) { - $xfer += $iter1177->write($output); + $xfer += $iter1184->write($output); } } $output->writeListEnd(); @@ -23780,14 +23780,14 @@ class ThriftHiveMetastore_get_materialized_views_for_rewriting_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; - $xfer += $input->readString($elem1183); - $this->success []= $elem1183; + $elem1190 = null; + $xfer += $input->readString($elem1190); + $this->success []= $elem1190; } $xfer += $input->readListEnd(); } else { @@ -23823,9 +23823,9 @@ class ThriftHiveMetastore_get_materialized_views_for_rewriting_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1184) + foreach ($this->success as $iter1191) { - $xfer += $output->writeString($iter1184); + $xfer += $output->writeString($iter1191); } } $output->writeListEnd(); @@ -23930,14 +23930,14 @@ class ThriftHiveMetastore_get_table_meta_args { case 3: if ($ftype == TType::LST) { $this->tbl_types = 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; - $xfer += $input->readString($elem1190); - $this->tbl_types []= $elem1190; + $elem1197 = null; + $xfer += $input->readString($elem1197); + $this->tbl_types []= $elem1197; } $xfer += $input->readListEnd(); } else { @@ -23975,9 +23975,9 @@ class ThriftHiveMetastore_get_table_meta_args { { $output->writeListBegin(TType::STRING, count($this->tbl_types)); { - foreach ($this->tbl_types as $iter1191) + foreach ($this->tbl_types as $iter1198) { - $xfer += $output->writeString($iter1191); + $xfer += $output->writeString($iter1198); } } $output->writeListEnd(); @@ -24054,15 +24054,15 @@ class ThriftHiveMetastore_get_table_meta_result { case 0: if ($ftype == TType::LST) { $this->success = 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\TableMeta(); - $xfer += $elem1197->read($input); - $this->success []= $elem1197; + $elem1204 = null; + $elem1204 = new \metastore\TableMeta(); + $xfer += $elem1204->read($input); + $this->success []= $elem1204; } $xfer += $input->readListEnd(); } else { @@ -24098,9 +24098,9 @@ class ThriftHiveMetastore_get_table_meta_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1198) + foreach ($this->success as $iter1205) { - $xfer += $iter1198->write($output); + $xfer += $iter1205->write($output); } } $output->writeListEnd(); @@ -24256,14 +24256,14 @@ class ThriftHiveMetastore_get_all_tables_result { case 0: if ($ftype == TType::LST) { $this->success = 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->success []= $elem1204; + $elem1211 = null; + $xfer += $input->readString($elem1211); + $this->success []= $elem1211; } $xfer += $input->readListEnd(); } else { @@ -24299,9 +24299,9 @@ class ThriftHiveMetastore_get_all_tables_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1205) + foreach ($this->success as $iter1212) { - $xfer += $output->writeString($iter1205); + $xfer += $output->writeString($iter1212); } } $output->writeListEnd(); @@ -24616,14 +24616,14 @@ class ThriftHiveMetastore_get_table_objects_by_name_args { case 2: if ($ftype == TType::LST) { $this->tbl_names = 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->tbl_names []= $elem1211; + $elem1218 = null; + $xfer += $input->readString($elem1218); + $this->tbl_names []= $elem1218; } $xfer += $input->readListEnd(); } else { @@ -24656,9 +24656,9 @@ class ThriftHiveMetastore_get_table_objects_by_name_args { { $output->writeListBegin(TType::STRING, count($this->tbl_names)); { - foreach ($this->tbl_names as $iter1212) + foreach ($this->tbl_names as $iter1219) { - $xfer += $output->writeString($iter1212); + $xfer += $output->writeString($iter1219); } } $output->writeListEnd(); @@ -24723,15 +24723,15 @@ class ThriftHiveMetastore_get_table_objects_by_name_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; - $elem1218 = new \metastore\Table(); - $xfer += $elem1218->read($input); - $this->success []= $elem1218; + $elem1225 = null; + $elem1225 = new \metastore\Table(); + $xfer += $elem1225->read($input); + $this->success []= $elem1225; } $xfer += $input->readListEnd(); } else { @@ -24759,9 +24759,9 @@ class ThriftHiveMetastore_get_table_objects_by_name_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1219) + foreach ($this->success as $iter1226) { - $xfer += $iter1219->write($output); + $xfer += $iter1226->write($output); } } $output->writeListEnd(); @@ -24918,15 +24918,15 @@ class ThriftHiveMetastore_get_tables_ext_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1220 = 0; - $_etype1223 = 0; - $xfer += $input->readListBegin($_etype1223, $_size1220); - for ($_i1224 = 0; $_i1224 < $_size1220; ++$_i1224) + $_size1227 = 0; + $_etype1230 = 0; + $xfer += $input->readListBegin($_etype1230, $_size1227); + for ($_i1231 = 0; $_i1231 < $_size1227; ++$_i1231) { - $elem1225 = null; - $elem1225 = new \metastore\ExtendedTableInfo(); - $xfer += $elem1225->read($input); - $this->success []= $elem1225; + $elem1232 = null; + $elem1232 = new \metastore\ExtendedTableInfo(); + $xfer += $elem1232->read($input); + $this->success []= $elem1232; } $xfer += $input->readListEnd(); } else { @@ -24962,9 +24962,9 @@ class ThriftHiveMetastore_get_tables_ext_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1226) + foreach ($this->success as $iter1233) { - $xfer += $iter1226->write($output); + $xfer += $iter1233->write($output); } } $output->writeListEnd(); @@ -26169,14 +26169,14 @@ class ThriftHiveMetastore_get_table_names_by_filter_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1227 = 0; - $_etype1230 = 0; - $xfer += $input->readListBegin($_etype1230, $_size1227); - for ($_i1231 = 0; $_i1231 < $_size1227; ++$_i1231) + $_size1234 = 0; + $_etype1237 = 0; + $xfer += $input->readListBegin($_etype1237, $_size1234); + for ($_i1238 = 0; $_i1238 < $_size1234; ++$_i1238) { - $elem1232 = null; - $xfer += $input->readString($elem1232); - $this->success []= $elem1232; + $elem1239 = null; + $xfer += $input->readString($elem1239); + $this->success []= $elem1239; } $xfer += $input->readListEnd(); } else { @@ -26228,9 +26228,9 @@ class ThriftHiveMetastore_get_table_names_by_filter_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1233) + foreach ($this->success as $iter1240) { - $xfer += $output->writeString($iter1233); + $xfer += $output->writeString($iter1240); } } $output->writeListEnd(); @@ -27753,15 +27753,15 @@ class ThriftHiveMetastore_add_partitions_args { case 1: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size1234 = 0; - $_etype1237 = 0; - $xfer += $input->readListBegin($_etype1237, $_size1234); - for ($_i1238 = 0; $_i1238 < $_size1234; ++$_i1238) + $_size1241 = 0; + $_etype1244 = 0; + $xfer += $input->readListBegin($_etype1244, $_size1241); + for ($_i1245 = 0; $_i1245 < $_size1241; ++$_i1245) { - $elem1239 = null; - $elem1239 = new \metastore\Partition(); - $xfer += $elem1239->read($input); - $this->new_parts []= $elem1239; + $elem1246 = null; + $elem1246 = new \metastore\Partition(); + $xfer += $elem1246->read($input); + $this->new_parts []= $elem1246; } $xfer += $input->readListEnd(); } else { @@ -27789,9 +27789,9 @@ class ThriftHiveMetastore_add_partitions_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter1240) + foreach ($this->new_parts as $iter1247) { - $xfer += $iter1240->write($output); + $xfer += $iter1247->write($output); } } $output->writeListEnd(); @@ -28006,15 +28006,15 @@ class ThriftHiveMetastore_add_partitions_pspec_args { case 1: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size1241 = 0; - $_etype1244 = 0; - $xfer += $input->readListBegin($_etype1244, $_size1241); - for ($_i1245 = 0; $_i1245 < $_size1241; ++$_i1245) + $_size1248 = 0; + $_etype1251 = 0; + $xfer += $input->readListBegin($_etype1251, $_size1248); + for ($_i1252 = 0; $_i1252 < $_size1248; ++$_i1252) { - $elem1246 = null; - $elem1246 = new \metastore\PartitionSpec(); - $xfer += $elem1246->read($input); - $this->new_parts []= $elem1246; + $elem1253 = null; + $elem1253 = new \metastore\PartitionSpec(); + $xfer += $elem1253->read($input); + $this->new_parts []= $elem1253; } $xfer += $input->readListEnd(); } else { @@ -28042,9 +28042,9 @@ class ThriftHiveMetastore_add_partitions_pspec_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter1247) + foreach ($this->new_parts as $iter1254) { - $xfer += $iter1247->write($output); + $xfer += $iter1254->write($output); } } $output->writeListEnd(); @@ -28294,14 +28294,14 @@ class ThriftHiveMetastore_append_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1248 = 0; - $_etype1251 = 0; - $xfer += $input->readListBegin($_etype1251, $_size1248); - for ($_i1252 = 0; $_i1252 < $_size1248; ++$_i1252) + $_size1255 = 0; + $_etype1258 = 0; + $xfer += $input->readListBegin($_etype1258, $_size1255); + for ($_i1259 = 0; $_i1259 < $_size1255; ++$_i1259) { - $elem1253 = null; - $xfer += $input->readString($elem1253); - $this->part_vals []= $elem1253; + $elem1260 = null; + $xfer += $input->readString($elem1260); + $this->part_vals []= $elem1260; } $xfer += $input->readListEnd(); } else { @@ -28339,9 +28339,9 @@ class ThriftHiveMetastore_append_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1254) + foreach ($this->part_vals as $iter1261) { - $xfer += $output->writeString($iter1254); + $xfer += $output->writeString($iter1261); } } $output->writeListEnd(); @@ -28843,14 +28843,14 @@ class ThriftHiveMetastore_append_partition_with_environment_context_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1255 = 0; - $_etype1258 = 0; - $xfer += $input->readListBegin($_etype1258, $_size1255); - for ($_i1259 = 0; $_i1259 < $_size1255; ++$_i1259) + $_size1262 = 0; + $_etype1265 = 0; + $xfer += $input->readListBegin($_etype1265, $_size1262); + for ($_i1266 = 0; $_i1266 < $_size1262; ++$_i1266) { - $elem1260 = null; - $xfer += $input->readString($elem1260); - $this->part_vals []= $elem1260; + $elem1267 = null; + $xfer += $input->readString($elem1267); + $this->part_vals []= $elem1267; } $xfer += $input->readListEnd(); } else { @@ -28896,9 +28896,9 @@ class ThriftHiveMetastore_append_partition_with_environment_context_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1261) + foreach ($this->part_vals as $iter1268) { - $xfer += $output->writeString($iter1261); + $xfer += $output->writeString($iter1268); } } $output->writeListEnd(); @@ -29752,14 +29752,14 @@ class ThriftHiveMetastore_drop_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1262 = 0; - $_etype1265 = 0; - $xfer += $input->readListBegin($_etype1265, $_size1262); - for ($_i1266 = 0; $_i1266 < $_size1262; ++$_i1266) + $_size1269 = 0; + $_etype1272 = 0; + $xfer += $input->readListBegin($_etype1272, $_size1269); + for ($_i1273 = 0; $_i1273 < $_size1269; ++$_i1273) { - $elem1267 = null; - $xfer += $input->readString($elem1267); - $this->part_vals []= $elem1267; + $elem1274 = null; + $xfer += $input->readString($elem1274); + $this->part_vals []= $elem1274; } $xfer += $input->readListEnd(); } else { @@ -29804,9 +29804,9 @@ class ThriftHiveMetastore_drop_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1268) + foreach ($this->part_vals as $iter1275) { - $xfer += $output->writeString($iter1268); + $xfer += $output->writeString($iter1275); } } $output->writeListEnd(); @@ -30059,14 +30059,14 @@ class ThriftHiveMetastore_drop_partition_with_environment_context_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1269 = 0; - $_etype1272 = 0; - $xfer += $input->readListBegin($_etype1272, $_size1269); - for ($_i1273 = 0; $_i1273 < $_size1269; ++$_i1273) + $_size1276 = 0; + $_etype1279 = 0; + $xfer += $input->readListBegin($_etype1279, $_size1276); + for ($_i1280 = 0; $_i1280 < $_size1276; ++$_i1280) { - $elem1274 = null; - $xfer += $input->readString($elem1274); - $this->part_vals []= $elem1274; + $elem1281 = null; + $xfer += $input->readString($elem1281); + $this->part_vals []= $elem1281; } $xfer += $input->readListEnd(); } else { @@ -30119,9 +30119,9 @@ class ThriftHiveMetastore_drop_partition_with_environment_context_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1275) + foreach ($this->part_vals as $iter1282) { - $xfer += $output->writeString($iter1275); + $xfer += $output->writeString($iter1282); } } $output->writeListEnd(); @@ -31135,14 +31135,14 @@ class ThriftHiveMetastore_get_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1276 = 0; - $_etype1279 = 0; - $xfer += $input->readListBegin($_etype1279, $_size1276); - for ($_i1280 = 0; $_i1280 < $_size1276; ++$_i1280) + $_size1283 = 0; + $_etype1286 = 0; + $xfer += $input->readListBegin($_etype1286, $_size1283); + for ($_i1287 = 0; $_i1287 < $_size1283; ++$_i1287) { - $elem1281 = null; - $xfer += $input->readString($elem1281); - $this->part_vals []= $elem1281; + $elem1288 = null; + $xfer += $input->readString($elem1288); + $this->part_vals []= $elem1288; } $xfer += $input->readListEnd(); } else { @@ -31180,9 +31180,9 @@ class ThriftHiveMetastore_get_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1282) + foreach ($this->part_vals as $iter1289) { - $xfer += $output->writeString($iter1282); + $xfer += $output->writeString($iter1289); } } $output->writeListEnd(); @@ -31424,17 +31424,17 @@ class ThriftHiveMetastore_exchange_partition_args { case 1: if ($ftype == TType::MAP) { $this->partitionSpecs = array(); - $_size1283 = 0; - $_ktype1284 = 0; - $_vtype1285 = 0; - $xfer += $input->readMapBegin($_ktype1284, $_vtype1285, $_size1283); - for ($_i1287 = 0; $_i1287 < $_size1283; ++$_i1287) + $_size1290 = 0; + $_ktype1291 = 0; + $_vtype1292 = 0; + $xfer += $input->readMapBegin($_ktype1291, $_vtype1292, $_size1290); + for ($_i1294 = 0; $_i1294 < $_size1290; ++$_i1294) { - $key1288 = ''; - $val1289 = ''; - $xfer += $input->readString($key1288); - $xfer += $input->readString($val1289); - $this->partitionSpecs[$key1288] = $val1289; + $key1295 = ''; + $val1296 = ''; + $xfer += $input->readString($key1295); + $xfer += $input->readString($val1296); + $this->partitionSpecs[$key1295] = $val1296; } $xfer += $input->readMapEnd(); } else { @@ -31490,10 +31490,10 @@ class ThriftHiveMetastore_exchange_partition_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->partitionSpecs)); { - foreach ($this->partitionSpecs as $kiter1290 => $viter1291) + foreach ($this->partitionSpecs as $kiter1297 => $viter1298) { - $xfer += $output->writeString($kiter1290); - $xfer += $output->writeString($viter1291); + $xfer += $output->writeString($kiter1297); + $xfer += $output->writeString($viter1298); } } $output->writeMapEnd(); @@ -31805,17 +31805,17 @@ class ThriftHiveMetastore_exchange_partitions_args { case 1: if ($ftype == TType::MAP) { $this->partitionSpecs = array(); - $_size1292 = 0; - $_ktype1293 = 0; - $_vtype1294 = 0; - $xfer += $input->readMapBegin($_ktype1293, $_vtype1294, $_size1292); - for ($_i1296 = 0; $_i1296 < $_size1292; ++$_i1296) + $_size1299 = 0; + $_ktype1300 = 0; + $_vtype1301 = 0; + $xfer += $input->readMapBegin($_ktype1300, $_vtype1301, $_size1299); + for ($_i1303 = 0; $_i1303 < $_size1299; ++$_i1303) { - $key1297 = ''; - $val1298 = ''; - $xfer += $input->readString($key1297); - $xfer += $input->readString($val1298); - $this->partitionSpecs[$key1297] = $val1298; + $key1304 = ''; + $val1305 = ''; + $xfer += $input->readString($key1304); + $xfer += $input->readString($val1305); + $this->partitionSpecs[$key1304] = $val1305; } $xfer += $input->readMapEnd(); } else { @@ -31871,10 +31871,10 @@ class ThriftHiveMetastore_exchange_partitions_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->partitionSpecs)); { - foreach ($this->partitionSpecs as $kiter1299 => $viter1300) + foreach ($this->partitionSpecs as $kiter1306 => $viter1307) { - $xfer += $output->writeString($kiter1299); - $xfer += $output->writeString($viter1300); + $xfer += $output->writeString($kiter1306); + $xfer += $output->writeString($viter1307); } } $output->writeMapEnd(); @@ -32007,15 +32007,15 @@ class ThriftHiveMetastore_exchange_partitions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1301 = 0; - $_etype1304 = 0; - $xfer += $input->readListBegin($_etype1304, $_size1301); - for ($_i1305 = 0; $_i1305 < $_size1301; ++$_i1305) + $_size1308 = 0; + $_etype1311 = 0; + $xfer += $input->readListBegin($_etype1311, $_size1308); + for ($_i1312 = 0; $_i1312 < $_size1308; ++$_i1312) { - $elem1306 = null; - $elem1306 = new \metastore\Partition(); - $xfer += $elem1306->read($input); - $this->success []= $elem1306; + $elem1313 = null; + $elem1313 = new \metastore\Partition(); + $xfer += $elem1313->read($input); + $this->success []= $elem1313; } $xfer += $input->readListEnd(); } else { @@ -32075,9 +32075,9 @@ class ThriftHiveMetastore_exchange_partitions_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1307) + foreach ($this->success as $iter1314) { - $xfer += $iter1307->write($output); + $xfer += $iter1314->write($output); } } $output->writeListEnd(); @@ -32223,14 +32223,14 @@ class ThriftHiveMetastore_get_partition_with_auth_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1308 = 0; - $_etype1311 = 0; - $xfer += $input->readListBegin($_etype1311, $_size1308); - for ($_i1312 = 0; $_i1312 < $_size1308; ++$_i1312) + $_size1315 = 0; + $_etype1318 = 0; + $xfer += $input->readListBegin($_etype1318, $_size1315); + for ($_i1319 = 0; $_i1319 < $_size1315; ++$_i1319) { - $elem1313 = null; - $xfer += $input->readString($elem1313); - $this->part_vals []= $elem1313; + $elem1320 = null; + $xfer += $input->readString($elem1320); + $this->part_vals []= $elem1320; } $xfer += $input->readListEnd(); } else { @@ -32247,14 +32247,14 @@ class ThriftHiveMetastore_get_partition_with_auth_args { case 5: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1314 = 0; - $_etype1317 = 0; - $xfer += $input->readListBegin($_etype1317, $_size1314); - for ($_i1318 = 0; $_i1318 < $_size1314; ++$_i1318) + $_size1321 = 0; + $_etype1324 = 0; + $xfer += $input->readListBegin($_etype1324, $_size1321); + for ($_i1325 = 0; $_i1325 < $_size1321; ++$_i1325) { - $elem1319 = null; - $xfer += $input->readString($elem1319); - $this->group_names []= $elem1319; + $elem1326 = null; + $xfer += $input->readString($elem1326); + $this->group_names []= $elem1326; } $xfer += $input->readListEnd(); } else { @@ -32292,9 +32292,9 @@ class ThriftHiveMetastore_get_partition_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1320) + foreach ($this->part_vals as $iter1327) { - $xfer += $output->writeString($iter1320); + $xfer += $output->writeString($iter1327); } } $output->writeListEnd(); @@ -32314,9 +32314,9 @@ class ThriftHiveMetastore_get_partition_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1321) + foreach ($this->group_names as $iter1328) { - $xfer += $output->writeString($iter1321); + $xfer += $output->writeString($iter1328); } } $output->writeListEnd(); @@ -32907,15 +32907,15 @@ class ThriftHiveMetastore_get_partitions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1322 = 0; - $_etype1325 = 0; - $xfer += $input->readListBegin($_etype1325, $_size1322); - for ($_i1326 = 0; $_i1326 < $_size1322; ++$_i1326) + $_size1329 = 0; + $_etype1332 = 0; + $xfer += $input->readListBegin($_etype1332, $_size1329); + for ($_i1333 = 0; $_i1333 < $_size1329; ++$_i1333) { - $elem1327 = null; - $elem1327 = new \metastore\Partition(); - $xfer += $elem1327->read($input); - $this->success []= $elem1327; + $elem1334 = null; + $elem1334 = new \metastore\Partition(); + $xfer += $elem1334->read($input); + $this->success []= $elem1334; } $xfer += $input->readListEnd(); } else { @@ -32959,9 +32959,9 @@ class ThriftHiveMetastore_get_partitions_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1328) + foreach ($this->success as $iter1335) { - $xfer += $iter1328->write($output); + $xfer += $iter1335->write($output); } } $output->writeListEnd(); @@ -33107,14 +33107,14 @@ class ThriftHiveMetastore_get_partitions_with_auth_args { case 5: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1329 = 0; - $_etype1332 = 0; - $xfer += $input->readListBegin($_etype1332, $_size1329); - for ($_i1333 = 0; $_i1333 < $_size1329; ++$_i1333) + $_size1336 = 0; + $_etype1339 = 0; + $xfer += $input->readListBegin($_etype1339, $_size1336); + for ($_i1340 = 0; $_i1340 < $_size1336; ++$_i1340) { - $elem1334 = null; - $xfer += $input->readString($elem1334); - $this->group_names []= $elem1334; + $elem1341 = null; + $xfer += $input->readString($elem1341); + $this->group_names []= $elem1341; } $xfer += $input->readListEnd(); } else { @@ -33162,9 +33162,9 @@ class ThriftHiveMetastore_get_partitions_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1335) + foreach ($this->group_names as $iter1342) { - $xfer += $output->writeString($iter1335); + $xfer += $output->writeString($iter1342); } } $output->writeListEnd(); @@ -33253,15 +33253,15 @@ class ThriftHiveMetastore_get_partitions_with_auth_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1336 = 0; - $_etype1339 = 0; - $xfer += $input->readListBegin($_etype1339, $_size1336); - for ($_i1340 = 0; $_i1340 < $_size1336; ++$_i1340) + $_size1343 = 0; + $_etype1346 = 0; + $xfer += $input->readListBegin($_etype1346, $_size1343); + for ($_i1347 = 0; $_i1347 < $_size1343; ++$_i1347) { - $elem1341 = null; - $elem1341 = new \metastore\Partition(); - $xfer += $elem1341->read($input); - $this->success []= $elem1341; + $elem1348 = null; + $elem1348 = new \metastore\Partition(); + $xfer += $elem1348->read($input); + $this->success []= $elem1348; } $xfer += $input->readListEnd(); } else { @@ -33305,9 +33305,9 @@ class ThriftHiveMetastore_get_partitions_with_auth_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1342) + foreach ($this->success as $iter1349) { - $xfer += $iter1342->write($output); + $xfer += $iter1349->write($output); } } $output->writeListEnd(); @@ -33527,15 +33527,15 @@ class ThriftHiveMetastore_get_partitions_pspec_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1343 = 0; - $_etype1346 = 0; - $xfer += $input->readListBegin($_etype1346, $_size1343); - for ($_i1347 = 0; $_i1347 < $_size1343; ++$_i1347) + $_size1350 = 0; + $_etype1353 = 0; + $xfer += $input->readListBegin($_etype1353, $_size1350); + for ($_i1354 = 0; $_i1354 < $_size1350; ++$_i1354) { - $elem1348 = null; - $elem1348 = new \metastore\PartitionSpec(); - $xfer += $elem1348->read($input); - $this->success []= $elem1348; + $elem1355 = null; + $elem1355 = new \metastore\PartitionSpec(); + $xfer += $elem1355->read($input); + $this->success []= $elem1355; } $xfer += $input->readListEnd(); } else { @@ -33579,9 +33579,9 @@ class ThriftHiveMetastore_get_partitions_pspec_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1349) + foreach ($this->success as $iter1356) { - $xfer += $iter1349->write($output); + $xfer += $iter1356->write($output); } } $output->writeListEnd(); @@ -33800,14 +33800,14 @@ class ThriftHiveMetastore_get_partition_names_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1350 = 0; - $_etype1353 = 0; - $xfer += $input->readListBegin($_etype1353, $_size1350); - for ($_i1354 = 0; $_i1354 < $_size1350; ++$_i1354) + $_size1357 = 0; + $_etype1360 = 0; + $xfer += $input->readListBegin($_etype1360, $_size1357); + for ($_i1361 = 0; $_i1361 < $_size1357; ++$_i1361) { - $elem1355 = null; - $xfer += $input->readString($elem1355); - $this->success []= $elem1355; + $elem1362 = null; + $xfer += $input->readString($elem1362); + $this->success []= $elem1362; } $xfer += $input->readListEnd(); } else { @@ -33851,9 +33851,9 @@ class ThriftHiveMetastore_get_partition_names_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1356) + foreach ($this->success as $iter1363) { - $xfer += $output->writeString($iter1356); + $xfer += $output->writeString($iter1363); } } $output->writeListEnd(); @@ -34184,14 +34184,14 @@ class ThriftHiveMetastore_get_partitions_ps_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1357 = 0; - $_etype1360 = 0; - $xfer += $input->readListBegin($_etype1360, $_size1357); - for ($_i1361 = 0; $_i1361 < $_size1357; ++$_i1361) + $_size1364 = 0; + $_etype1367 = 0; + $xfer += $input->readListBegin($_etype1367, $_size1364); + for ($_i1368 = 0; $_i1368 < $_size1364; ++$_i1368) { - $elem1362 = null; - $xfer += $input->readString($elem1362); - $this->part_vals []= $elem1362; + $elem1369 = null; + $xfer += $input->readString($elem1369); + $this->part_vals []= $elem1369; } $xfer += $input->readListEnd(); } else { @@ -34236,9 +34236,9 @@ class ThriftHiveMetastore_get_partitions_ps_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1363) + foreach ($this->part_vals as $iter1370) { - $xfer += $output->writeString($iter1363); + $xfer += $output->writeString($iter1370); } } $output->writeListEnd(); @@ -34332,15 +34332,15 @@ class ThriftHiveMetastore_get_partitions_ps_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1364 = 0; - $_etype1367 = 0; - $xfer += $input->readListBegin($_etype1367, $_size1364); - for ($_i1368 = 0; $_i1368 < $_size1364; ++$_i1368) + $_size1371 = 0; + $_etype1374 = 0; + $xfer += $input->readListBegin($_etype1374, $_size1371); + for ($_i1375 = 0; $_i1375 < $_size1371; ++$_i1375) { - $elem1369 = null; - $elem1369 = new \metastore\Partition(); - $xfer += $elem1369->read($input); - $this->success []= $elem1369; + $elem1376 = null; + $elem1376 = new \metastore\Partition(); + $xfer += $elem1376->read($input); + $this->success []= $elem1376; } $xfer += $input->readListEnd(); } else { @@ -34384,9 +34384,9 @@ class ThriftHiveMetastore_get_partitions_ps_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1370) + foreach ($this->success as $iter1377) { - $xfer += $iter1370->write($output); + $xfer += $iter1377->write($output); } } $output->writeListEnd(); @@ -34533,14 +34533,14 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1371 = 0; - $_etype1374 = 0; - $xfer += $input->readListBegin($_etype1374, $_size1371); - for ($_i1375 = 0; $_i1375 < $_size1371; ++$_i1375) + $_size1378 = 0; + $_etype1381 = 0; + $xfer += $input->readListBegin($_etype1381, $_size1378); + for ($_i1382 = 0; $_i1382 < $_size1378; ++$_i1382) { - $elem1376 = null; - $xfer += $input->readString($elem1376); - $this->part_vals []= $elem1376; + $elem1383 = null; + $xfer += $input->readString($elem1383); + $this->part_vals []= $elem1383; } $xfer += $input->readListEnd(); } else { @@ -34564,14 +34564,14 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { case 6: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1377 = 0; - $_etype1380 = 0; - $xfer += $input->readListBegin($_etype1380, $_size1377); - for ($_i1381 = 0; $_i1381 < $_size1377; ++$_i1381) + $_size1384 = 0; + $_etype1387 = 0; + $xfer += $input->readListBegin($_etype1387, $_size1384); + for ($_i1388 = 0; $_i1388 < $_size1384; ++$_i1388) { - $elem1382 = null; - $xfer += $input->readString($elem1382); - $this->group_names []= $elem1382; + $elem1389 = null; + $xfer += $input->readString($elem1389); + $this->group_names []= $elem1389; } $xfer += $input->readListEnd(); } else { @@ -34609,9 +34609,9 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1383) + foreach ($this->part_vals as $iter1390) { - $xfer += $output->writeString($iter1383); + $xfer += $output->writeString($iter1390); } } $output->writeListEnd(); @@ -34636,9 +34636,9 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1384) + foreach ($this->group_names as $iter1391) { - $xfer += $output->writeString($iter1384); + $xfer += $output->writeString($iter1391); } } $output->writeListEnd(); @@ -34727,15 +34727,15 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1385 = 0; - $_etype1388 = 0; - $xfer += $input->readListBegin($_etype1388, $_size1385); - for ($_i1389 = 0; $_i1389 < $_size1385; ++$_i1389) + $_size1392 = 0; + $_etype1395 = 0; + $xfer += $input->readListBegin($_etype1395, $_size1392); + for ($_i1396 = 0; $_i1396 < $_size1392; ++$_i1396) { - $elem1390 = null; - $elem1390 = new \metastore\Partition(); - $xfer += $elem1390->read($input); - $this->success []= $elem1390; + $elem1397 = null; + $elem1397 = new \metastore\Partition(); + $xfer += $elem1397->read($input); + $this->success []= $elem1397; } $xfer += $input->readListEnd(); } else { @@ -34779,9 +34779,9 @@ class ThriftHiveMetastore_get_partitions_ps_with_auth_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1391) + foreach ($this->success as $iter1398) { - $xfer += $iter1391->write($output); + $xfer += $iter1398->write($output); } } $output->writeListEnd(); @@ -34902,14 +34902,14 @@ class ThriftHiveMetastore_get_partition_names_ps_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1392 = 0; - $_etype1395 = 0; - $xfer += $input->readListBegin($_etype1395, $_size1392); - for ($_i1396 = 0; $_i1396 < $_size1392; ++$_i1396) + $_size1399 = 0; + $_etype1402 = 0; + $xfer += $input->readListBegin($_etype1402, $_size1399); + for ($_i1403 = 0; $_i1403 < $_size1399; ++$_i1403) { - $elem1397 = null; - $xfer += $input->readString($elem1397); - $this->part_vals []= $elem1397; + $elem1404 = null; + $xfer += $input->readString($elem1404); + $this->part_vals []= $elem1404; } $xfer += $input->readListEnd(); } else { @@ -34954,9 +34954,9 @@ class ThriftHiveMetastore_get_partition_names_ps_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1398) + foreach ($this->part_vals as $iter1405) { - $xfer += $output->writeString($iter1398); + $xfer += $output->writeString($iter1405); } } $output->writeListEnd(); @@ -35049,14 +35049,14 @@ class ThriftHiveMetastore_get_partition_names_ps_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1399 = 0; - $_etype1402 = 0; - $xfer += $input->readListBegin($_etype1402, $_size1399); - for ($_i1403 = 0; $_i1403 < $_size1399; ++$_i1403) + $_size1406 = 0; + $_etype1409 = 0; + $xfer += $input->readListBegin($_etype1409, $_size1406); + for ($_i1410 = 0; $_i1410 < $_size1406; ++$_i1410) { - $elem1404 = null; - $xfer += $input->readString($elem1404); - $this->success []= $elem1404; + $elem1411 = null; + $xfer += $input->readString($elem1411); + $this->success []= $elem1411; } $xfer += $input->readListEnd(); } else { @@ -35100,9 +35100,9 @@ class ThriftHiveMetastore_get_partition_names_ps_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1405) + foreach ($this->success as $iter1412) { - $xfer += $output->writeString($iter1405); + $xfer += $output->writeString($iter1412); } } $output->writeListEnd(); @@ -35345,15 +35345,15 @@ class ThriftHiveMetastore_get_partitions_by_filter_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1406 = 0; - $_etype1409 = 0; - $xfer += $input->readListBegin($_etype1409, $_size1406); - for ($_i1410 = 0; $_i1410 < $_size1406; ++$_i1410) + $_size1413 = 0; + $_etype1416 = 0; + $xfer += $input->readListBegin($_etype1416, $_size1413); + for ($_i1417 = 0; $_i1417 < $_size1413; ++$_i1417) { - $elem1411 = null; - $elem1411 = new \metastore\Partition(); - $xfer += $elem1411->read($input); - $this->success []= $elem1411; + $elem1418 = null; + $elem1418 = new \metastore\Partition(); + $xfer += $elem1418->read($input); + $this->success []= $elem1418; } $xfer += $input->readListEnd(); } else { @@ -35397,9 +35397,9 @@ class ThriftHiveMetastore_get_partitions_by_filter_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1412) + foreach ($this->success as $iter1419) { - $xfer += $iter1412->write($output); + $xfer += $iter1419->write($output); } } $output->writeListEnd(); @@ -35642,15 +35642,15 @@ class ThriftHiveMetastore_get_part_specs_by_filter_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1413 = 0; - $_etype1416 = 0; - $xfer += $input->readListBegin($_etype1416, $_size1413); - for ($_i1417 = 0; $_i1417 < $_size1413; ++$_i1417) + $_size1420 = 0; + $_etype1423 = 0; + $xfer += $input->readListBegin($_etype1423, $_size1420); + for ($_i1424 = 0; $_i1424 < $_size1420; ++$_i1424) { - $elem1418 = null; - $elem1418 = new \metastore\PartitionSpec(); - $xfer += $elem1418->read($input); - $this->success []= $elem1418; + $elem1425 = null; + $elem1425 = new \metastore\PartitionSpec(); + $xfer += $elem1425->read($input); + $this->success []= $elem1425; } $xfer += $input->readListEnd(); } else { @@ -35694,9 +35694,9 @@ class ThriftHiveMetastore_get_part_specs_by_filter_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1419) + foreach ($this->success as $iter1426) { - $xfer += $iter1419->write($output); + $xfer += $iter1426->write($output); } } $output->writeListEnd(); @@ -36262,14 +36262,14 @@ class ThriftHiveMetastore_get_partitions_by_names_args { case 3: if ($ftype == TType::LST) { $this->names = array(); - $_size1420 = 0; - $_etype1423 = 0; - $xfer += $input->readListBegin($_etype1423, $_size1420); - for ($_i1424 = 0; $_i1424 < $_size1420; ++$_i1424) + $_size1427 = 0; + $_etype1430 = 0; + $xfer += $input->readListBegin($_etype1430, $_size1427); + for ($_i1431 = 0; $_i1431 < $_size1427; ++$_i1431) { - $elem1425 = null; - $xfer += $input->readString($elem1425); - $this->names []= $elem1425; + $elem1432 = null; + $xfer += $input->readString($elem1432); + $this->names []= $elem1432; } $xfer += $input->readListEnd(); } else { @@ -36307,9 +36307,9 @@ class ThriftHiveMetastore_get_partitions_by_names_args { { $output->writeListBegin(TType::STRING, count($this->names)); { - foreach ($this->names as $iter1426) + foreach ($this->names as $iter1433) { - $xfer += $output->writeString($iter1426); + $xfer += $output->writeString($iter1433); } } $output->writeListEnd(); @@ -36398,15 +36398,15 @@ class ThriftHiveMetastore_get_partitions_by_names_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1427 = 0; - $_etype1430 = 0; - $xfer += $input->readListBegin($_etype1430, $_size1427); - for ($_i1431 = 0; $_i1431 < $_size1427; ++$_i1431) + $_size1434 = 0; + $_etype1437 = 0; + $xfer += $input->readListBegin($_etype1437, $_size1434); + for ($_i1438 = 0; $_i1438 < $_size1434; ++$_i1438) { - $elem1432 = null; - $elem1432 = new \metastore\Partition(); - $xfer += $elem1432->read($input); - $this->success []= $elem1432; + $elem1439 = null; + $elem1439 = new \metastore\Partition(); + $xfer += $elem1439->read($input); + $this->success []= $elem1439; } $xfer += $input->readListEnd(); } else { @@ -36450,9 +36450,9 @@ class ThriftHiveMetastore_get_partitions_by_names_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1433) + foreach ($this->success as $iter1440) { - $xfer += $iter1433->write($output); + $xfer += $iter1440->write($output); } } $output->writeListEnd(); @@ -37001,15 +37001,15 @@ class ThriftHiveMetastore_alter_partitions_args { case 3: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size1434 = 0; - $_etype1437 = 0; - $xfer += $input->readListBegin($_etype1437, $_size1434); - for ($_i1438 = 0; $_i1438 < $_size1434; ++$_i1438) + $_size1441 = 0; + $_etype1444 = 0; + $xfer += $input->readListBegin($_etype1444, $_size1441); + for ($_i1445 = 0; $_i1445 < $_size1441; ++$_i1445) { - $elem1439 = null; - $elem1439 = new \metastore\Partition(); - $xfer += $elem1439->read($input); - $this->new_parts []= $elem1439; + $elem1446 = null; + $elem1446 = new \metastore\Partition(); + $xfer += $elem1446->read($input); + $this->new_parts []= $elem1446; } $xfer += $input->readListEnd(); } else { @@ -37047,9 +37047,9 @@ class ThriftHiveMetastore_alter_partitions_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter1440) + foreach ($this->new_parts as $iter1447) { - $xfer += $iter1440->write($output); + $xfer += $iter1447->write($output); } } $output->writeListEnd(); @@ -37264,15 +37264,15 @@ class ThriftHiveMetastore_alter_partitions_with_environment_context_args { case 3: if ($ftype == TType::LST) { $this->new_parts = array(); - $_size1441 = 0; - $_etype1444 = 0; - $xfer += $input->readListBegin($_etype1444, $_size1441); - for ($_i1445 = 0; $_i1445 < $_size1441; ++$_i1445) + $_size1448 = 0; + $_etype1451 = 0; + $xfer += $input->readListBegin($_etype1451, $_size1448); + for ($_i1452 = 0; $_i1452 < $_size1448; ++$_i1452) { - $elem1446 = null; - $elem1446 = new \metastore\Partition(); - $xfer += $elem1446->read($input); - $this->new_parts []= $elem1446; + $elem1453 = null; + $elem1453 = new \metastore\Partition(); + $xfer += $elem1453->read($input); + $this->new_parts []= $elem1453; } $xfer += $input->readListEnd(); } else { @@ -37318,9 +37318,9 @@ class ThriftHiveMetastore_alter_partitions_with_environment_context_args { { $output->writeListBegin(TType::STRUCT, count($this->new_parts)); { - foreach ($this->new_parts as $iter1447) + foreach ($this->new_parts as $iter1454) { - $xfer += $iter1447->write($output); + $xfer += $iter1454->write($output); } } $output->writeListEnd(); @@ -38008,14 +38008,14 @@ class ThriftHiveMetastore_rename_partition_args { case 3: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1448 = 0; - $_etype1451 = 0; - $xfer += $input->readListBegin($_etype1451, $_size1448); - for ($_i1452 = 0; $_i1452 < $_size1448; ++$_i1452) + $_size1455 = 0; + $_etype1458 = 0; + $xfer += $input->readListBegin($_etype1458, $_size1455); + for ($_i1459 = 0; $_i1459 < $_size1455; ++$_i1459) { - $elem1453 = null; - $xfer += $input->readString($elem1453); - $this->part_vals []= $elem1453; + $elem1460 = null; + $xfer += $input->readString($elem1460); + $this->part_vals []= $elem1460; } $xfer += $input->readListEnd(); } else { @@ -38061,9 +38061,9 @@ class ThriftHiveMetastore_rename_partition_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1454) + foreach ($this->part_vals as $iter1461) { - $xfer += $output->writeString($iter1454); + $xfer += $output->writeString($iter1461); } } $output->writeListEnd(); @@ -38458,14 +38458,14 @@ class ThriftHiveMetastore_partition_name_has_valid_characters_args { case 1: if ($ftype == TType::LST) { $this->part_vals = array(); - $_size1455 = 0; - $_etype1458 = 0; - $xfer += $input->readListBegin($_etype1458, $_size1455); - for ($_i1459 = 0; $_i1459 < $_size1455; ++$_i1459) + $_size1462 = 0; + $_etype1465 = 0; + $xfer += $input->readListBegin($_etype1465, $_size1462); + for ($_i1466 = 0; $_i1466 < $_size1462; ++$_i1466) { - $elem1460 = null; - $xfer += $input->readString($elem1460); - $this->part_vals []= $elem1460; + $elem1467 = null; + $xfer += $input->readString($elem1467); + $this->part_vals []= $elem1467; } $xfer += $input->readListEnd(); } else { @@ -38500,9 +38500,9 @@ class ThriftHiveMetastore_partition_name_has_valid_characters_args { { $output->writeListBegin(TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $iter1461) + foreach ($this->part_vals as $iter1468) { - $xfer += $output->writeString($iter1461); + $xfer += $output->writeString($iter1468); } } $output->writeListEnd(); @@ -38956,14 +38956,14 @@ class ThriftHiveMetastore_partition_name_to_vals_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1462 = 0; - $_etype1465 = 0; - $xfer += $input->readListBegin($_etype1465, $_size1462); - for ($_i1466 = 0; $_i1466 < $_size1462; ++$_i1466) + $_size1469 = 0; + $_etype1472 = 0; + $xfer += $input->readListBegin($_etype1472, $_size1469); + for ($_i1473 = 0; $_i1473 < $_size1469; ++$_i1473) { - $elem1467 = null; - $xfer += $input->readString($elem1467); - $this->success []= $elem1467; + $elem1474 = null; + $xfer += $input->readString($elem1474); + $this->success []= $elem1474; } $xfer += $input->readListEnd(); } else { @@ -38999,9 +38999,9 @@ class ThriftHiveMetastore_partition_name_to_vals_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1468) + foreach ($this->success as $iter1475) { - $xfer += $output->writeString($iter1468); + $xfer += $output->writeString($iter1475); } } $output->writeListEnd(); @@ -39161,17 +39161,17 @@ class ThriftHiveMetastore_partition_name_to_spec_result { case 0: if ($ftype == TType::MAP) { $this->success = array(); - $_size1469 = 0; - $_ktype1470 = 0; - $_vtype1471 = 0; - $xfer += $input->readMapBegin($_ktype1470, $_vtype1471, $_size1469); - for ($_i1473 = 0; $_i1473 < $_size1469; ++$_i1473) + $_size1476 = 0; + $_ktype1477 = 0; + $_vtype1478 = 0; + $xfer += $input->readMapBegin($_ktype1477, $_vtype1478, $_size1476); + for ($_i1480 = 0; $_i1480 < $_size1476; ++$_i1480) { - $key1474 = ''; - $val1475 = ''; - $xfer += $input->readString($key1474); - $xfer += $input->readString($val1475); - $this->success[$key1474] = $val1475; + $key1481 = ''; + $val1482 = ''; + $xfer += $input->readString($key1481); + $xfer += $input->readString($val1482); + $this->success[$key1481] = $val1482; } $xfer += $input->readMapEnd(); } else { @@ -39207,10 +39207,10 @@ class ThriftHiveMetastore_partition_name_to_spec_result { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->success)); { - foreach ($this->success as $kiter1476 => $viter1477) + foreach ($this->success as $kiter1483 => $viter1484) { - $xfer += $output->writeString($kiter1476); - $xfer += $output->writeString($viter1477); + $xfer += $output->writeString($kiter1483); + $xfer += $output->writeString($viter1484); } } $output->writeMapEnd(); @@ -39330,17 +39330,17 @@ class ThriftHiveMetastore_markPartitionForEvent_args { case 3: if ($ftype == TType::MAP) { $this->part_vals = array(); - $_size1478 = 0; - $_ktype1479 = 0; - $_vtype1480 = 0; - $xfer += $input->readMapBegin($_ktype1479, $_vtype1480, $_size1478); - for ($_i1482 = 0; $_i1482 < $_size1478; ++$_i1482) + $_size1485 = 0; + $_ktype1486 = 0; + $_vtype1487 = 0; + $xfer += $input->readMapBegin($_ktype1486, $_vtype1487, $_size1485); + for ($_i1489 = 0; $_i1489 < $_size1485; ++$_i1489) { - $key1483 = ''; - $val1484 = ''; - $xfer += $input->readString($key1483); - $xfer += $input->readString($val1484); - $this->part_vals[$key1483] = $val1484; + $key1490 = ''; + $val1491 = ''; + $xfer += $input->readString($key1490); + $xfer += $input->readString($val1491); + $this->part_vals[$key1490] = $val1491; } $xfer += $input->readMapEnd(); } else { @@ -39385,10 +39385,10 @@ class ThriftHiveMetastore_markPartitionForEvent_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $kiter1485 => $viter1486) + foreach ($this->part_vals as $kiter1492 => $viter1493) { - $xfer += $output->writeString($kiter1485); - $xfer += $output->writeString($viter1486); + $xfer += $output->writeString($kiter1492); + $xfer += $output->writeString($viter1493); } } $output->writeMapEnd(); @@ -39710,17 +39710,17 @@ class ThriftHiveMetastore_isPartitionMarkedForEvent_args { case 3: if ($ftype == TType::MAP) { $this->part_vals = array(); - $_size1487 = 0; - $_ktype1488 = 0; - $_vtype1489 = 0; - $xfer += $input->readMapBegin($_ktype1488, $_vtype1489, $_size1487); - for ($_i1491 = 0; $_i1491 < $_size1487; ++$_i1491) + $_size1494 = 0; + $_ktype1495 = 0; + $_vtype1496 = 0; + $xfer += $input->readMapBegin($_ktype1495, $_vtype1496, $_size1494); + for ($_i1498 = 0; $_i1498 < $_size1494; ++$_i1498) { - $key1492 = ''; - $val1493 = ''; - $xfer += $input->readString($key1492); - $xfer += $input->readString($val1493); - $this->part_vals[$key1492] = $val1493; + $key1499 = ''; + $val1500 = ''; + $xfer += $input->readString($key1499); + $xfer += $input->readString($val1500); + $this->part_vals[$key1499] = $val1500; } $xfer += $input->readMapEnd(); } else { @@ -39765,10 +39765,10 @@ class ThriftHiveMetastore_isPartitionMarkedForEvent_args { { $output->writeMapBegin(TType::STRING, TType::STRING, count($this->part_vals)); { - foreach ($this->part_vals as $kiter1494 => $viter1495) + foreach ($this->part_vals as $kiter1501 => $viter1502) { - $xfer += $output->writeString($kiter1494); - $xfer += $output->writeString($viter1495); + $xfer += $output->writeString($kiter1501); + $xfer += $output->writeString($viter1502); } } $output->writeMapEnd(); @@ -45293,14 +45293,14 @@ class ThriftHiveMetastore_get_functions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1496 = 0; - $_etype1499 = 0; - $xfer += $input->readListBegin($_etype1499, $_size1496); - for ($_i1500 = 0; $_i1500 < $_size1496; ++$_i1500) + $_size1503 = 0; + $_etype1506 = 0; + $xfer += $input->readListBegin($_etype1506, $_size1503); + for ($_i1507 = 0; $_i1507 < $_size1503; ++$_i1507) { - $elem1501 = null; - $xfer += $input->readString($elem1501); - $this->success []= $elem1501; + $elem1508 = null; + $xfer += $input->readString($elem1508); + $this->success []= $elem1508; } $xfer += $input->readListEnd(); } else { @@ -45336,9 +45336,9 @@ class ThriftHiveMetastore_get_functions_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1502) + foreach ($this->success as $iter1509) { - $xfer += $output->writeString($iter1502); + $xfer += $output->writeString($iter1509); } } $output->writeListEnd(); @@ -46207,14 +46207,14 @@ class ThriftHiveMetastore_get_role_names_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1503 = 0; - $_etype1506 = 0; - $xfer += $input->readListBegin($_etype1506, $_size1503); - for ($_i1507 = 0; $_i1507 < $_size1503; ++$_i1507) + $_size1510 = 0; + $_etype1513 = 0; + $xfer += $input->readListBegin($_etype1513, $_size1510); + for ($_i1514 = 0; $_i1514 < $_size1510; ++$_i1514) { - $elem1508 = null; - $xfer += $input->readString($elem1508); - $this->success []= $elem1508; + $elem1515 = null; + $xfer += $input->readString($elem1515); + $this->success []= $elem1515; } $xfer += $input->readListEnd(); } else { @@ -46250,9 +46250,9 @@ class ThriftHiveMetastore_get_role_names_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1509) + foreach ($this->success as $iter1516) { - $xfer += $output->writeString($iter1509); + $xfer += $output->writeString($iter1516); } } $output->writeListEnd(); @@ -46943,15 +46943,15 @@ class ThriftHiveMetastore_list_roles_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1510 = 0; - $_etype1513 = 0; - $xfer += $input->readListBegin($_etype1513, $_size1510); - for ($_i1514 = 0; $_i1514 < $_size1510; ++$_i1514) + $_size1517 = 0; + $_etype1520 = 0; + $xfer += $input->readListBegin($_etype1520, $_size1517); + for ($_i1521 = 0; $_i1521 < $_size1517; ++$_i1521) { - $elem1515 = null; - $elem1515 = new \metastore\Role(); - $xfer += $elem1515->read($input); - $this->success []= $elem1515; + $elem1522 = null; + $elem1522 = new \metastore\Role(); + $xfer += $elem1522->read($input); + $this->success []= $elem1522; } $xfer += $input->readListEnd(); } else { @@ -46987,9 +46987,9 @@ class ThriftHiveMetastore_list_roles_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1516) + foreach ($this->success as $iter1523) { - $xfer += $iter1516->write($output); + $xfer += $iter1523->write($output); } } $output->writeListEnd(); @@ -47651,14 +47651,14 @@ class ThriftHiveMetastore_get_privilege_set_args { case 3: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1517 = 0; - $_etype1520 = 0; - $xfer += $input->readListBegin($_etype1520, $_size1517); - for ($_i1521 = 0; $_i1521 < $_size1517; ++$_i1521) + $_size1524 = 0; + $_etype1527 = 0; + $xfer += $input->readListBegin($_etype1527, $_size1524); + for ($_i1528 = 0; $_i1528 < $_size1524; ++$_i1528) { - $elem1522 = null; - $xfer += $input->readString($elem1522); - $this->group_names []= $elem1522; + $elem1529 = null; + $xfer += $input->readString($elem1529); + $this->group_names []= $elem1529; } $xfer += $input->readListEnd(); } else { @@ -47699,9 +47699,9 @@ class ThriftHiveMetastore_get_privilege_set_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1523) + foreach ($this->group_names as $iter1530) { - $xfer += $output->writeString($iter1523); + $xfer += $output->writeString($iter1530); } } $output->writeListEnd(); @@ -48009,15 +48009,15 @@ class ThriftHiveMetastore_list_privileges_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1524 = 0; - $_etype1527 = 0; - $xfer += $input->readListBegin($_etype1527, $_size1524); - for ($_i1528 = 0; $_i1528 < $_size1524; ++$_i1528) + $_size1531 = 0; + $_etype1534 = 0; + $xfer += $input->readListBegin($_etype1534, $_size1531); + for ($_i1535 = 0; $_i1535 < $_size1531; ++$_i1535) { - $elem1529 = null; - $elem1529 = new \metastore\HiveObjectPrivilege(); - $xfer += $elem1529->read($input); - $this->success []= $elem1529; + $elem1536 = null; + $elem1536 = new \metastore\HiveObjectPrivilege(); + $xfer += $elem1536->read($input); + $this->success []= $elem1536; } $xfer += $input->readListEnd(); } else { @@ -48053,9 +48053,9 @@ class ThriftHiveMetastore_list_privileges_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1530) + foreach ($this->success as $iter1537) { - $xfer += $iter1530->write($output); + $xfer += $iter1537->write($output); } } $output->writeListEnd(); @@ -48923,14 +48923,14 @@ class ThriftHiveMetastore_set_ugi_args { case 2: if ($ftype == TType::LST) { $this->group_names = array(); - $_size1531 = 0; - $_etype1534 = 0; - $xfer += $input->readListBegin($_etype1534, $_size1531); - for ($_i1535 = 0; $_i1535 < $_size1531; ++$_i1535) + $_size1538 = 0; + $_etype1541 = 0; + $xfer += $input->readListBegin($_etype1541, $_size1538); + for ($_i1542 = 0; $_i1542 < $_size1538; ++$_i1542) { - $elem1536 = null; - $xfer += $input->readString($elem1536); - $this->group_names []= $elem1536; + $elem1543 = null; + $xfer += $input->readString($elem1543); + $this->group_names []= $elem1543; } $xfer += $input->readListEnd(); } else { @@ -48963,9 +48963,9 @@ class ThriftHiveMetastore_set_ugi_args { { $output->writeListBegin(TType::STRING, count($this->group_names)); { - foreach ($this->group_names as $iter1537) + foreach ($this->group_names as $iter1544) { - $xfer += $output->writeString($iter1537); + $xfer += $output->writeString($iter1544); } } $output->writeListEnd(); @@ -49041,14 +49041,14 @@ class ThriftHiveMetastore_set_ugi_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1538 = 0; - $_etype1541 = 0; - $xfer += $input->readListBegin($_etype1541, $_size1538); - for ($_i1542 = 0; $_i1542 < $_size1538; ++$_i1542) + $_size1545 = 0; + $_etype1548 = 0; + $xfer += $input->readListBegin($_etype1548, $_size1545); + for ($_i1549 = 0; $_i1549 < $_size1545; ++$_i1549) { - $elem1543 = null; - $xfer += $input->readString($elem1543); - $this->success []= $elem1543; + $elem1550 = null; + $xfer += $input->readString($elem1550); + $this->success []= $elem1550; } $xfer += $input->readListEnd(); } else { @@ -49084,9 +49084,9 @@ class ThriftHiveMetastore_set_ugi_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1544) + foreach ($this->success as $iter1551) { - $xfer += $output->writeString($iter1544); + $xfer += $output->writeString($iter1551); } } $output->writeListEnd(); @@ -50203,14 +50203,14 @@ class ThriftHiveMetastore_get_all_token_identifiers_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1545 = 0; - $_etype1548 = 0; - $xfer += $input->readListBegin($_etype1548, $_size1545); - for ($_i1549 = 0; $_i1549 < $_size1545; ++$_i1549) + $_size1552 = 0; + $_etype1555 = 0; + $xfer += $input->readListBegin($_etype1555, $_size1552); + for ($_i1556 = 0; $_i1556 < $_size1552; ++$_i1556) { - $elem1550 = null; - $xfer += $input->readString($elem1550); - $this->success []= $elem1550; + $elem1557 = null; + $xfer += $input->readString($elem1557); + $this->success []= $elem1557; } $xfer += $input->readListEnd(); } else { @@ -50238,9 +50238,9 @@ class ThriftHiveMetastore_get_all_token_identifiers_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1551) + foreach ($this->success as $iter1558) { - $xfer += $output->writeString($iter1551); + $xfer += $output->writeString($iter1558); } } $output->writeListEnd(); @@ -50879,14 +50879,14 @@ class ThriftHiveMetastore_get_master_keys_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1552 = 0; - $_etype1555 = 0; - $xfer += $input->readListBegin($_etype1555, $_size1552); - for ($_i1556 = 0; $_i1556 < $_size1552; ++$_i1556) + $_size1559 = 0; + $_etype1562 = 0; + $xfer += $input->readListBegin($_etype1562, $_size1559); + for ($_i1563 = 0; $_i1563 < $_size1559; ++$_i1563) { - $elem1557 = null; - $xfer += $input->readString($elem1557); - $this->success []= $elem1557; + $elem1564 = null; + $xfer += $input->readString($elem1564); + $this->success []= $elem1564; } $xfer += $input->readListEnd(); } else { @@ -50914,9 +50914,9 @@ class ThriftHiveMetastore_get_master_keys_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1558) + foreach ($this->success as $iter1565) { - $xfer += $output->writeString($iter1558); + $xfer += $output->writeString($iter1565); } } $output->writeListEnd(); @@ -54670,14 +54670,14 @@ class ThriftHiveMetastore_find_columns_with_stats_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1559 = 0; - $_etype1562 = 0; - $xfer += $input->readListBegin($_etype1562, $_size1559); - for ($_i1563 = 0; $_i1563 < $_size1559; ++$_i1563) + $_size1566 = 0; + $_etype1569 = 0; + $xfer += $input->readListBegin($_etype1569, $_size1566); + for ($_i1570 = 0; $_i1570 < $_size1566; ++$_i1570) { - $elem1564 = null; - $xfer += $input->readString($elem1564); - $this->success []= $elem1564; + $elem1571 = null; + $xfer += $input->readString($elem1571); + $this->success []= $elem1571; } $xfer += $input->readListEnd(); } else { @@ -54705,9 +54705,9 @@ class ThriftHiveMetastore_find_columns_with_stats_result { { $output->writeListBegin(TType::STRING, count($this->success)); { - foreach ($this->success as $iter1565) + foreach ($this->success as $iter1572) { - $xfer += $output->writeString($iter1565); + $xfer += $output->writeString($iter1572); } } $output->writeListEnd(); @@ -62878,15 +62878,15 @@ class ThriftHiveMetastore_get_schema_all_versions_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1566 = 0; - $_etype1569 = 0; - $xfer += $input->readListBegin($_etype1569, $_size1566); - for ($_i1570 = 0; $_i1570 < $_size1566; ++$_i1570) + $_size1573 = 0; + $_etype1576 = 0; + $xfer += $input->readListBegin($_etype1576, $_size1573); + for ($_i1577 = 0; $_i1577 < $_size1573; ++$_i1577) { - $elem1571 = null; - $elem1571 = new \metastore\SchemaVersion(); - $xfer += $elem1571->read($input); - $this->success []= $elem1571; + $elem1578 = null; + $elem1578 = new \metastore\SchemaVersion(); + $xfer += $elem1578->read($input); + $this->success []= $elem1578; } $xfer += $input->readListEnd(); } else { @@ -62930,9 +62930,9 @@ class ThriftHiveMetastore_get_schema_all_versions_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1572) + foreach ($this->success as $iter1579) { - $xfer += $iter1572->write($output); + $xfer += $iter1579->write($output); } } $output->writeListEnd(); @@ -64801,15 +64801,15 @@ class ThriftHiveMetastore_get_runtime_stats_result { case 0: if ($ftype == TType::LST) { $this->success = array(); - $_size1573 = 0; - $_etype1576 = 0; - $xfer += $input->readListBegin($_etype1576, $_size1573); - for ($_i1577 = 0; $_i1577 < $_size1573; ++$_i1577) + $_size1580 = 0; + $_etype1583 = 0; + $xfer += $input->readListBegin($_etype1583, $_size1580); + for ($_i1584 = 0; $_i1584 < $_size1580; ++$_i1584) { - $elem1578 = null; - $elem1578 = new \metastore\RuntimeStat(); - $xfer += $elem1578->read($input); - $this->success []= $elem1578; + $elem1585 = null; + $elem1585 = new \metastore\RuntimeStat(); + $xfer += $elem1585->read($input); + $this->success []= $elem1585; } $xfer += $input->readListEnd(); } else { @@ -64845,9 +64845,9 @@ class ThriftHiveMetastore_get_runtime_stats_result { { $output->writeListBegin(TType::STRUCT, count($this->success)); { - foreach ($this->success as $iter1579) + foreach ($this->success as $iter1586) { - $xfer += $iter1579->write($output); + $xfer += $iter1586->write($output); } } $output->writeListEnd(); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Types.php b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Types.php index db4cfb996a..2a26cefe16 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Types.php +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-php/metastore/Types.php @@ -37238,6 +37238,14 @@ class GetPartitionsFilterSpec { * @var string[] */ public $filters = null; + /** + * @var int[] + */ + public $filterExpr = null; + /** + * @var string + */ + public $defaultPartName = null; public function __construct($vals=null) { if (!isset(self::$_TSPEC)) { @@ -37254,6 +37262,18 @@ class GetPartitionsFilterSpec { 'type' => TType::STRING, ), ), + 9 => array( + 'var' => 'filterExpr', + 'type' => TType::LST, + 'etype' => TType::BYTE, + 'elem' => array( + 'type' => TType::BYTE, + ), + ), + 10 => array( + 'var' => 'defaultPartName', + 'type' => TType::STRING, + ), ); } if (is_array($vals)) { @@ -37263,6 +37283,12 @@ class GetPartitionsFilterSpec { if (isset($vals['filters'])) { $this->filters = $vals['filters']; } + if (isset($vals['filterExpr'])) { + $this->filterExpr = $vals['filterExpr']; + } + if (isset($vals['defaultPartName'])) { + $this->defaultPartName = $vals['defaultPartName']; + } } } @@ -37309,6 +37335,30 @@ class GetPartitionsFilterSpec { $xfer += $input->skip($ftype); } break; + case 9: + if ($ftype == TType::LST) { + $this->filterExpr = array(); + $_size1035 = 0; + $_etype1038 = 0; + $xfer += $input->readListBegin($_etype1038, $_size1035); + for ($_i1039 = 0; $_i1039 < $_size1035; ++$_i1039) + { + $elem1040 = null; + $xfer += $input->readByte($elem1040); + $this->filterExpr []= $elem1040; + } + $xfer += $input->readListEnd(); + } else { + $xfer += $input->skip($ftype); + } + break; + case 10: + if ($ftype == TType::STRING) { + $xfer += $input->readString($this->defaultPartName); + } else { + $xfer += $input->skip($ftype); + } + break; default: $xfer += $input->skip($ftype); break; @@ -37335,15 +37385,37 @@ class GetPartitionsFilterSpec { { $output->writeListBegin(TType::STRING, count($this->filters)); { - foreach ($this->filters as $iter1035) + foreach ($this->filters as $iter1041) { - $xfer += $output->writeString($iter1035); + $xfer += $output->writeString($iter1041); } } $output->writeListEnd(); } $xfer += $output->writeFieldEnd(); } + if ($this->filterExpr !== null) { + if (!is_array($this->filterExpr)) { + throw new TProtocolException('Bad type in structure.', TProtocolException::INVALID_DATA); + } + $xfer += $output->writeFieldBegin('filterExpr', TType::LST, 9); + { + $output->writeListBegin(TType::BYTE, count($this->filterExpr)); + { + foreach ($this->filterExpr as $iter1042) + { + $xfer += $output->writeByte($iter1042); + } + } + $output->writeListEnd(); + } + $xfer += $output->writeFieldEnd(); + } + if ($this->defaultPartName !== null) { + $xfer += $output->writeFieldBegin('defaultPartName', TType::STRING, 10); + $xfer += $output->writeString($this->defaultPartName); + $xfer += $output->writeFieldEnd(); + } $xfer += $output->writeFieldStop(); $xfer += $output->writeStructEnd(); return $xfer; @@ -37402,15 +37474,15 @@ class GetPartitionsResponse { case 1: if ($ftype == TType::LST) { $this->partitionSpec = array(); - $_size1036 = 0; - $_etype1039 = 0; - $xfer += $input->readListBegin($_etype1039, $_size1036); - for ($_i1040 = 0; $_i1040 < $_size1036; ++$_i1040) + $_size1043 = 0; + $_etype1046 = 0; + $xfer += $input->readListBegin($_etype1046, $_size1043); + for ($_i1047 = 0; $_i1047 < $_size1043; ++$_i1047) { - $elem1041 = null; - $elem1041 = new \metastore\PartitionSpec(); - $xfer += $elem1041->read($input); - $this->partitionSpec []= $elem1041; + $elem1048 = null; + $elem1048 = new \metastore\PartitionSpec(); + $xfer += $elem1048->read($input); + $this->partitionSpec []= $elem1048; } $xfer += $input->readListEnd(); } else { @@ -37438,9 +37510,9 @@ class GetPartitionsResponse { { $output->writeListBegin(TType::STRUCT, count($this->partitionSpec)); { - foreach ($this->partitionSpec as $iter1042) + foreach ($this->partitionSpec as $iter1049) { - $xfer += $iter1042->write($output); + $xfer += $iter1049->write($output); } } $output->writeListEnd(); @@ -37644,14 +37716,14 @@ class GetPartitionsRequest { case 6: if ($ftype == TType::LST) { $this->groupNames = array(); - $_size1043 = 0; - $_etype1046 = 0; - $xfer += $input->readListBegin($_etype1046, $_size1043); - for ($_i1047 = 0; $_i1047 < $_size1043; ++$_i1047) + $_size1050 = 0; + $_etype1053 = 0; + $xfer += $input->readListBegin($_etype1053, $_size1050); + for ($_i1054 = 0; $_i1054 < $_size1050; ++$_i1054) { - $elem1048 = null; - $xfer += $input->readString($elem1048); - $this->groupNames []= $elem1048; + $elem1055 = null; + $xfer += $input->readString($elem1055); + $this->groupNames []= $elem1055; } $xfer += $input->readListEnd(); } else { @@ -37677,14 +37749,14 @@ class GetPartitionsRequest { case 9: if ($ftype == TType::LST) { $this->processorCapabilities = array(); - $_size1049 = 0; - $_etype1052 = 0; - $xfer += $input->readListBegin($_etype1052, $_size1049); - for ($_i1053 = 0; $_i1053 < $_size1049; ++$_i1053) + $_size1056 = 0; + $_etype1059 = 0; + $xfer += $input->readListBegin($_etype1059, $_size1056); + for ($_i1060 = 0; $_i1060 < $_size1056; ++$_i1060) { - $elem1054 = null; - $xfer += $input->readString($elem1054); - $this->processorCapabilities []= $elem1054; + $elem1061 = null; + $xfer += $input->readString($elem1061); + $this->processorCapabilities []= $elem1061; } $xfer += $input->readListEnd(); } else { @@ -37744,9 +37816,9 @@ class GetPartitionsRequest { { $output->writeListBegin(TType::STRING, count($this->groupNames)); { - foreach ($this->groupNames as $iter1055) + foreach ($this->groupNames as $iter1062) { - $xfer += $output->writeString($iter1055); + $xfer += $output->writeString($iter1062); } } $output->writeListEnd(); @@ -37777,9 +37849,9 @@ class GetPartitionsRequest { { $output->writeListBegin(TType::STRING, count($this->processorCapabilities)); { - foreach ($this->processorCapabilities as $iter1056) + foreach ($this->processorCapabilities as $iter1063) { - $xfer += $output->writeString($iter1056); + $xfer += $output->writeString($iter1063); } } $output->writeListEnd(); diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py index 37d5d03eed..28bb158917 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ThriftHiveMetastore.py @@ -17720,10 +17720,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1057, _size1054) = iprot.readListBegin() - for _i1058 in xrange(_size1054): - _elem1059 = iprot.readString() - self.success.append(_elem1059) + (_etype1064, _size1061) = iprot.readListBegin() + for _i1065 in xrange(_size1061): + _elem1066 = iprot.readString() + self.success.append(_elem1066) iprot.readListEnd() else: iprot.skip(ftype) @@ -17746,8 +17746,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 iter1060 in self.success: - oprot.writeString(iter1060) + for iter1067 in self.success: + oprot.writeString(iter1067) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -17852,10 +17852,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1064, _size1061) = iprot.readListBegin() - for _i1065 in xrange(_size1061): - _elem1066 = iprot.readString() - self.success.append(_elem1066) + (_etype1071, _size1068) = iprot.readListBegin() + for _i1072 in xrange(_size1068): + _elem1073 = iprot.readString() + self.success.append(_elem1073) iprot.readListEnd() else: iprot.skip(ftype) @@ -17878,8 +17878,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 iter1067 in self.success: - oprot.writeString(iter1067) + for iter1074 in self.success: + oprot.writeString(iter1074) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -18649,12 +18649,12 @@ def read(self, iprot): if fid == 0: if ftype == TType.MAP: self.success = {} - (_ktype1069, _vtype1070, _size1068 ) = iprot.readMapBegin() - for _i1072 in xrange(_size1068): - _key1073 = iprot.readString() - _val1074 = Type() - _val1074.read(iprot) - self.success[_key1073] = _val1074 + (_ktype1076, _vtype1077, _size1075 ) = iprot.readMapBegin() + for _i1079 in xrange(_size1075): + _key1080 = iprot.readString() + _val1081 = Type() + _val1081.read(iprot) + self.success[_key1080] = _val1081 iprot.readMapEnd() else: iprot.skip(ftype) @@ -18677,9 +18677,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 kiter1075,viter1076 in self.success.items(): - oprot.writeString(kiter1075) - viter1076.write(oprot) + for kiter1082,viter1083 in self.success.items(): + oprot.writeString(kiter1082) + viter1083.write(oprot) oprot.writeMapEnd() oprot.writeFieldEnd() if self.o2 is not None: @@ -18822,11 +18822,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1080, _size1077) = iprot.readListBegin() - for _i1081 in xrange(_size1077): - _elem1082 = FieldSchema() - _elem1082.read(iprot) - self.success.append(_elem1082) + (_etype1087, _size1084) = iprot.readListBegin() + for _i1088 in xrange(_size1084): + _elem1089 = FieldSchema() + _elem1089.read(iprot) + self.success.append(_elem1089) iprot.readListEnd() else: iprot.skip(ftype) @@ -18861,8 +18861,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 iter1083 in self.success: - iter1083.write(oprot) + for iter1090 in self.success: + iter1090.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -19029,11 +19029,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1087, _size1084) = iprot.readListBegin() - for _i1088 in xrange(_size1084): - _elem1089 = FieldSchema() - _elem1089.read(iprot) - self.success.append(_elem1089) + (_etype1094, _size1091) = iprot.readListBegin() + for _i1095 in xrange(_size1091): + _elem1096 = FieldSchema() + _elem1096.read(iprot) + self.success.append(_elem1096) iprot.readListEnd() else: iprot.skip(ftype) @@ -19068,8 +19068,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 iter1090 in self.success: - iter1090.write(oprot) + for iter1097 in self.success: + iter1097.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -19222,11 +19222,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1094, _size1091) = iprot.readListBegin() - for _i1095 in xrange(_size1091): - _elem1096 = FieldSchema() - _elem1096.read(iprot) - self.success.append(_elem1096) + (_etype1101, _size1098) = iprot.readListBegin() + for _i1102 in xrange(_size1098): + _elem1103 = FieldSchema() + _elem1103.read(iprot) + self.success.append(_elem1103) iprot.readListEnd() else: iprot.skip(ftype) @@ -19261,8 +19261,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 iter1097 in self.success: - iter1097.write(oprot) + for iter1104 in self.success: + iter1104.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -19429,11 +19429,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1101, _size1098) = iprot.readListBegin() - for _i1102 in xrange(_size1098): - _elem1103 = FieldSchema() - _elem1103.read(iprot) - self.success.append(_elem1103) + (_etype1108, _size1105) = iprot.readListBegin() + for _i1109 in xrange(_size1105): + _elem1110 = FieldSchema() + _elem1110.read(iprot) + self.success.append(_elem1110) iprot.readListEnd() else: iprot.skip(ftype) @@ -19468,8 +19468,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 iter1104 in self.success: - iter1104.write(oprot) + for iter1111 in self.success: + iter1111.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -19922,66 +19922,66 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.primaryKeys = [] - (_etype1108, _size1105) = iprot.readListBegin() - for _i1109 in xrange(_size1105): - _elem1110 = SQLPrimaryKey() - _elem1110.read(iprot) - self.primaryKeys.append(_elem1110) + (_etype1115, _size1112) = iprot.readListBegin() + for _i1116 in xrange(_size1112): + _elem1117 = SQLPrimaryKey() + _elem1117.read(iprot) + self.primaryKeys.append(_elem1117) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 3: if ftype == TType.LIST: self.foreignKeys = [] - (_etype1114, _size1111) = iprot.readListBegin() - for _i1115 in xrange(_size1111): - _elem1116 = SQLForeignKey() - _elem1116.read(iprot) - self.foreignKeys.append(_elem1116) + (_etype1121, _size1118) = iprot.readListBegin() + for _i1122 in xrange(_size1118): + _elem1123 = SQLForeignKey() + _elem1123.read(iprot) + self.foreignKeys.append(_elem1123) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 4: if ftype == TType.LIST: self.uniqueConstraints = [] - (_etype1120, _size1117) = iprot.readListBegin() - for _i1121 in xrange(_size1117): - _elem1122 = SQLUniqueConstraint() - _elem1122.read(iprot) - self.uniqueConstraints.append(_elem1122) + (_etype1127, _size1124) = iprot.readListBegin() + for _i1128 in xrange(_size1124): + _elem1129 = SQLUniqueConstraint() + _elem1129.read(iprot) + self.uniqueConstraints.append(_elem1129) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 5: if ftype == TType.LIST: self.notNullConstraints = [] - (_etype1126, _size1123) = iprot.readListBegin() - for _i1127 in xrange(_size1123): - _elem1128 = SQLNotNullConstraint() - _elem1128.read(iprot) - self.notNullConstraints.append(_elem1128) + (_etype1133, _size1130) = iprot.readListBegin() + for _i1134 in xrange(_size1130): + _elem1135 = SQLNotNullConstraint() + _elem1135.read(iprot) + self.notNullConstraints.append(_elem1135) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 6: if ftype == TType.LIST: self.defaultConstraints = [] - (_etype1132, _size1129) = iprot.readListBegin() - for _i1133 in xrange(_size1129): - _elem1134 = SQLDefaultConstraint() - _elem1134.read(iprot) - self.defaultConstraints.append(_elem1134) + (_etype1139, _size1136) = iprot.readListBegin() + for _i1140 in xrange(_size1136): + _elem1141 = SQLDefaultConstraint() + _elem1141.read(iprot) + self.defaultConstraints.append(_elem1141) iprot.readListEnd() else: iprot.skip(ftype) elif fid == 7: if ftype == TType.LIST: self.checkConstraints = [] - (_etype1138, _size1135) = iprot.readListBegin() - for _i1139 in xrange(_size1135): - _elem1140 = SQLCheckConstraint() - _elem1140.read(iprot) - self.checkConstraints.append(_elem1140) + (_etype1145, _size1142) = iprot.readListBegin() + for _i1146 in xrange(_size1142): + _elem1147 = SQLCheckConstraint() + _elem1147.read(iprot) + self.checkConstraints.append(_elem1147) iprot.readListEnd() else: iprot.skip(ftype) @@ -20002,43 +20002,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 iter1141 in self.primaryKeys: - iter1141.write(oprot) + for iter1148 in self.primaryKeys: + iter1148.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 iter1142 in self.foreignKeys: - iter1142.write(oprot) + for iter1149 in self.foreignKeys: + iter1149.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 iter1143 in self.uniqueConstraints: - iter1143.write(oprot) + for iter1150 in self.uniqueConstraints: + iter1150.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 iter1144 in self.notNullConstraints: - iter1144.write(oprot) + for iter1151 in self.notNullConstraints: + iter1151.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 iter1145 in self.defaultConstraints: - iter1145.write(oprot) + for iter1152 in self.defaultConstraints: + iter1152.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 iter1146 in self.checkConstraints: - iter1146.write(oprot) + for iter1153 in self.checkConstraints: + iter1153.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -21772,10 +21772,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.partNames = [] - (_etype1150, _size1147) = iprot.readListBegin() - for _i1151 in xrange(_size1147): - _elem1152 = iprot.readString() - self.partNames.append(_elem1152) + (_etype1157, _size1154) = iprot.readListBegin() + for _i1158 in xrange(_size1154): + _elem1159 = iprot.readString() + self.partNames.append(_elem1159) iprot.readListEnd() else: iprot.skip(ftype) @@ -21800,8 +21800,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 iter1153 in self.partNames: - oprot.writeString(iter1153) + for iter1160 in self.partNames: + oprot.writeString(iter1160) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -22146,10 +22146,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1157, _size1154) = iprot.readListBegin() - for _i1158 in xrange(_size1154): - _elem1159 = iprot.readString() - self.success.append(_elem1159) + (_etype1164, _size1161) = iprot.readListBegin() + for _i1165 in xrange(_size1161): + _elem1166 = iprot.readString() + self.success.append(_elem1166) iprot.readListEnd() else: iprot.skip(ftype) @@ -22172,8 +22172,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 iter1160 in self.success: - oprot.writeString(iter1160) + for iter1167 in self.success: + oprot.writeString(iter1167) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -22323,10 +22323,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1164, _size1161) = iprot.readListBegin() - for _i1165 in xrange(_size1161): - _elem1166 = iprot.readString() - self.success.append(_elem1166) + (_etype1171, _size1168) = iprot.readListBegin() + for _i1172 in xrange(_size1168): + _elem1173 = iprot.readString() + self.success.append(_elem1173) iprot.readListEnd() else: iprot.skip(ftype) @@ -22349,8 +22349,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 iter1167 in self.success: - oprot.writeString(iter1167) + for iter1174 in self.success: + oprot.writeString(iter1174) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -22455,11 +22455,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1171, _size1168) = iprot.readListBegin() - for _i1172 in xrange(_size1168): - _elem1173 = Table() - _elem1173.read(iprot) - self.success.append(_elem1173) + (_etype1178, _size1175) = iprot.readListBegin() + for _i1179 in xrange(_size1175): + _elem1180 = Table() + _elem1180.read(iprot) + self.success.append(_elem1180) iprot.readListEnd() else: iprot.skip(ftype) @@ -22482,8 +22482,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 iter1174 in self.success: - iter1174.write(oprot) + for iter1181 in self.success: + iter1181.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -22607,10 +22607,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1178, _size1175) = iprot.readListBegin() - for _i1179 in xrange(_size1175): - _elem1180 = iprot.readString() - self.success.append(_elem1180) + (_etype1185, _size1182) = iprot.readListBegin() + for _i1186 in xrange(_size1182): + _elem1187 = iprot.readString() + self.success.append(_elem1187) iprot.readListEnd() else: iprot.skip(ftype) @@ -22633,8 +22633,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 iter1181 in self.success: - oprot.writeString(iter1181) + for iter1188 in self.success: + oprot.writeString(iter1188) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -22707,10 +22707,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.tbl_types = [] - (_etype1185, _size1182) = iprot.readListBegin() - for _i1186 in xrange(_size1182): - _elem1187 = iprot.readString() - self.tbl_types.append(_elem1187) + (_etype1192, _size1189) = iprot.readListBegin() + for _i1193 in xrange(_size1189): + _elem1194 = iprot.readString() + self.tbl_types.append(_elem1194) iprot.readListEnd() else: iprot.skip(ftype) @@ -22735,8 +22735,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 iter1188 in self.tbl_types: - oprot.writeString(iter1188) + for iter1195 in self.tbl_types: + oprot.writeString(iter1195) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -22792,11 +22792,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1192, _size1189) = iprot.readListBegin() - for _i1193 in xrange(_size1189): - _elem1194 = TableMeta() - _elem1194.read(iprot) - self.success.append(_elem1194) + (_etype1199, _size1196) = iprot.readListBegin() + for _i1200 in xrange(_size1196): + _elem1201 = TableMeta() + _elem1201.read(iprot) + self.success.append(_elem1201) iprot.readListEnd() else: iprot.skip(ftype) @@ -22819,8 +22819,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 iter1195 in self.success: - iter1195.write(oprot) + for iter1202 in self.success: + iter1202.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -22944,10 +22944,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1199, _size1196) = iprot.readListBegin() - for _i1200 in xrange(_size1196): - _elem1201 = iprot.readString() - self.success.append(_elem1201) + (_etype1206, _size1203) = iprot.readListBegin() + for _i1207 in xrange(_size1203): + _elem1208 = iprot.readString() + self.success.append(_elem1208) iprot.readListEnd() else: iprot.skip(ftype) @@ -22970,8 +22970,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 iter1202 in self.success: - oprot.writeString(iter1202) + for iter1209 in self.success: + oprot.writeString(iter1209) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -23207,10 +23207,10 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.tbl_names = [] - (_etype1206, _size1203) = iprot.readListBegin() - for _i1207 in xrange(_size1203): - _elem1208 = iprot.readString() - self.tbl_names.append(_elem1208) + (_etype1213, _size1210) = iprot.readListBegin() + for _i1214 in xrange(_size1210): + _elem1215 = iprot.readString() + self.tbl_names.append(_elem1215) iprot.readListEnd() else: iprot.skip(ftype) @@ -23231,8 +23231,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 iter1209 in self.tbl_names: - oprot.writeString(iter1209) + for iter1216 in self.tbl_names: + oprot.writeString(iter1216) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -23284,11 +23284,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1213, _size1210) = iprot.readListBegin() - for _i1214 in xrange(_size1210): - _elem1215 = Table() - _elem1215.read(iprot) - self.success.append(_elem1215) + (_etype1220, _size1217) = iprot.readListBegin() + for _i1221 in xrange(_size1217): + _elem1222 = Table() + _elem1222.read(iprot) + self.success.append(_elem1222) iprot.readListEnd() else: iprot.skip(ftype) @@ -23305,8 +23305,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 iter1216 in self.success: - iter1216.write(oprot) + for iter1223 in self.success: + iter1223.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -23426,11 +23426,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1220, _size1217) = iprot.readListBegin() - for _i1221 in xrange(_size1217): - _elem1222 = ExtendedTableInfo() - _elem1222.read(iprot) - self.success.append(_elem1222) + (_etype1227, _size1224) = iprot.readListBegin() + for _i1228 in xrange(_size1224): + _elem1229 = ExtendedTableInfo() + _elem1229.read(iprot) + self.success.append(_elem1229) iprot.readListEnd() else: iprot.skip(ftype) @@ -23453,8 +23453,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 iter1223 in self.success: - iter1223.write(oprot) + for iter1230 in self.success: + iter1230.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -24327,10 +24327,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1227, _size1224) = iprot.readListBegin() - for _i1228 in xrange(_size1224): - _elem1229 = iprot.readString() - self.success.append(_elem1229) + (_etype1234, _size1231) = iprot.readListBegin() + for _i1235 in xrange(_size1231): + _elem1236 = iprot.readString() + self.success.append(_elem1236) iprot.readListEnd() else: iprot.skip(ftype) @@ -24365,8 +24365,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 iter1230 in self.success: - oprot.writeString(iter1230) + for iter1237 in self.success: + oprot.writeString(iter1237) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -25495,11 +25495,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.new_parts = [] - (_etype1234, _size1231) = iprot.readListBegin() - for _i1235 in xrange(_size1231): - _elem1236 = Partition() - _elem1236.read(iprot) - self.new_parts.append(_elem1236) + (_etype1241, _size1238) = iprot.readListBegin() + for _i1242 in xrange(_size1238): + _elem1243 = Partition() + _elem1243.read(iprot) + self.new_parts.append(_elem1243) iprot.readListEnd() else: iprot.skip(ftype) @@ -25516,8 +25516,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 iter1237 in self.new_parts: - iter1237.write(oprot) + for iter1244 in self.new_parts: + iter1244.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -25675,11 +25675,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.new_parts = [] - (_etype1241, _size1238) = iprot.readListBegin() - for _i1242 in xrange(_size1238): - _elem1243 = PartitionSpec() - _elem1243.read(iprot) - self.new_parts.append(_elem1243) + (_etype1248, _size1245) = iprot.readListBegin() + for _i1249 in xrange(_size1245): + _elem1250 = PartitionSpec() + _elem1250.read(iprot) + self.new_parts.append(_elem1250) iprot.readListEnd() else: iprot.skip(ftype) @@ -25696,8 +25696,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 iter1244 in self.new_parts: - iter1244.write(oprot) + for iter1251 in self.new_parts: + iter1251.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -25871,10 +25871,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1248, _size1245) = iprot.readListBegin() - for _i1249 in xrange(_size1245): - _elem1250 = iprot.readString() - self.part_vals.append(_elem1250) + (_etype1255, _size1252) = iprot.readListBegin() + for _i1256 in xrange(_size1252): + _elem1257 = iprot.readString() + self.part_vals.append(_elem1257) iprot.readListEnd() else: iprot.skip(ftype) @@ -25899,8 +25899,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 iter1251 in self.part_vals: - oprot.writeString(iter1251) + for iter1258 in self.part_vals: + oprot.writeString(iter1258) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -26253,10 +26253,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1255, _size1252) = iprot.readListBegin() - for _i1256 in xrange(_size1252): - _elem1257 = iprot.readString() - self.part_vals.append(_elem1257) + (_etype1262, _size1259) = iprot.readListBegin() + for _i1263 in xrange(_size1259): + _elem1264 = iprot.readString() + self.part_vals.append(_elem1264) iprot.readListEnd() else: iprot.skip(ftype) @@ -26287,8 +26287,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 iter1258 in self.part_vals: - oprot.writeString(iter1258) + for iter1265 in self.part_vals: + oprot.writeString(iter1265) oprot.writeListEnd() oprot.writeFieldEnd() if self.environment_context is not None: @@ -26883,10 +26883,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1262, _size1259) = iprot.readListBegin() - for _i1263 in xrange(_size1259): - _elem1264 = iprot.readString() - self.part_vals.append(_elem1264) + (_etype1269, _size1266) = iprot.readListBegin() + for _i1270 in xrange(_size1266): + _elem1271 = iprot.readString() + self.part_vals.append(_elem1271) iprot.readListEnd() else: iprot.skip(ftype) @@ -26916,8 +26916,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 iter1265 in self.part_vals: - oprot.writeString(iter1265) + for iter1272 in self.part_vals: + oprot.writeString(iter1272) oprot.writeListEnd() oprot.writeFieldEnd() if self.deleteData is not None: @@ -27090,10 +27090,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1269, _size1266) = iprot.readListBegin() - for _i1270 in xrange(_size1266): - _elem1271 = iprot.readString() - self.part_vals.append(_elem1271) + (_etype1276, _size1273) = iprot.readListBegin() + for _i1277 in xrange(_size1273): + _elem1278 = iprot.readString() + self.part_vals.append(_elem1278) iprot.readListEnd() else: iprot.skip(ftype) @@ -27129,8 +27129,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 iter1272 in self.part_vals: - oprot.writeString(iter1272) + for iter1279 in self.part_vals: + oprot.writeString(iter1279) oprot.writeListEnd() oprot.writeFieldEnd() if self.deleteData is not None: @@ -27867,10 +27867,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1276, _size1273) = iprot.readListBegin() - for _i1277 in xrange(_size1273): - _elem1278 = iprot.readString() - self.part_vals.append(_elem1278) + (_etype1283, _size1280) = iprot.readListBegin() + for _i1284 in xrange(_size1280): + _elem1285 = iprot.readString() + self.part_vals.append(_elem1285) iprot.readListEnd() else: iprot.skip(ftype) @@ -27895,8 +27895,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 iter1279 in self.part_vals: - oprot.writeString(iter1279) + for iter1286 in self.part_vals: + oprot.writeString(iter1286) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -28055,11 +28055,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.MAP: self.partitionSpecs = {} - (_ktype1281, _vtype1282, _size1280 ) = iprot.readMapBegin() - for _i1284 in xrange(_size1280): - _key1285 = iprot.readString() - _val1286 = iprot.readString() - self.partitionSpecs[_key1285] = _val1286 + (_ktype1288, _vtype1289, _size1287 ) = iprot.readMapBegin() + for _i1291 in xrange(_size1287): + _key1292 = iprot.readString() + _val1293 = iprot.readString() + self.partitionSpecs[_key1292] = _val1293 iprot.readMapEnd() else: iprot.skip(ftype) @@ -28096,9 +28096,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 kiter1287,viter1288 in self.partitionSpecs.items(): - oprot.writeString(kiter1287) - oprot.writeString(viter1288) + for kiter1294,viter1295 in self.partitionSpecs.items(): + oprot.writeString(kiter1294) + oprot.writeString(viter1295) oprot.writeMapEnd() oprot.writeFieldEnd() if self.source_db is not None: @@ -28303,11 +28303,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.MAP: self.partitionSpecs = {} - (_ktype1290, _vtype1291, _size1289 ) = iprot.readMapBegin() - for _i1293 in xrange(_size1289): - _key1294 = iprot.readString() - _val1295 = iprot.readString() - self.partitionSpecs[_key1294] = _val1295 + (_ktype1297, _vtype1298, _size1296 ) = iprot.readMapBegin() + for _i1300 in xrange(_size1296): + _key1301 = iprot.readString() + _val1302 = iprot.readString() + self.partitionSpecs[_key1301] = _val1302 iprot.readMapEnd() else: iprot.skip(ftype) @@ -28344,9 +28344,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 kiter1296,viter1297 in self.partitionSpecs.items(): - oprot.writeString(kiter1296) - oprot.writeString(viter1297) + for kiter1303,viter1304 in self.partitionSpecs.items(): + oprot.writeString(kiter1303) + oprot.writeString(viter1304) oprot.writeMapEnd() oprot.writeFieldEnd() if self.source_db is not None: @@ -28429,11 +28429,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1301, _size1298) = iprot.readListBegin() - for _i1302 in xrange(_size1298): - _elem1303 = Partition() - _elem1303.read(iprot) - self.success.append(_elem1303) + (_etype1308, _size1305) = iprot.readListBegin() + for _i1309 in xrange(_size1305): + _elem1310 = Partition() + _elem1310.read(iprot) + self.success.append(_elem1310) iprot.readListEnd() else: iprot.skip(ftype) @@ -28474,8 +28474,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 iter1304 in self.success: - iter1304.write(oprot) + for iter1311 in self.success: + iter1311.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -28569,10 +28569,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1308, _size1305) = iprot.readListBegin() - for _i1309 in xrange(_size1305): - _elem1310 = iprot.readString() - self.part_vals.append(_elem1310) + (_etype1315, _size1312) = iprot.readListBegin() + for _i1316 in xrange(_size1312): + _elem1317 = iprot.readString() + self.part_vals.append(_elem1317) iprot.readListEnd() else: iprot.skip(ftype) @@ -28584,10 +28584,10 @@ def read(self, iprot): elif fid == 5: if ftype == TType.LIST: self.group_names = [] - (_etype1314, _size1311) = iprot.readListBegin() - for _i1315 in xrange(_size1311): - _elem1316 = iprot.readString() - self.group_names.append(_elem1316) + (_etype1321, _size1318) = iprot.readListBegin() + for _i1322 in xrange(_size1318): + _elem1323 = iprot.readString() + self.group_names.append(_elem1323) iprot.readListEnd() else: iprot.skip(ftype) @@ -28612,8 +28612,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 iter1317 in self.part_vals: - oprot.writeString(iter1317) + for iter1324 in self.part_vals: + oprot.writeString(iter1324) oprot.writeListEnd() oprot.writeFieldEnd() if self.user_name is not None: @@ -28623,8 +28623,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 iter1318 in self.group_names: - oprot.writeString(iter1318) + for iter1325 in self.group_names: + oprot.writeString(iter1325) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -29053,11 +29053,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1322, _size1319) = iprot.readListBegin() - for _i1323 in xrange(_size1319): - _elem1324 = Partition() - _elem1324.read(iprot) - self.success.append(_elem1324) + (_etype1329, _size1326) = iprot.readListBegin() + for _i1330 in xrange(_size1326): + _elem1331 = Partition() + _elem1331.read(iprot) + self.success.append(_elem1331) iprot.readListEnd() else: iprot.skip(ftype) @@ -29086,8 +29086,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 iter1325 in self.success: - iter1325.write(oprot) + for iter1332 in self.success: + iter1332.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -29181,10 +29181,10 @@ def read(self, iprot): elif fid == 5: if ftype == TType.LIST: self.group_names = [] - (_etype1329, _size1326) = iprot.readListBegin() - for _i1330 in xrange(_size1326): - _elem1331 = iprot.readString() - self.group_names.append(_elem1331) + (_etype1336, _size1333) = iprot.readListBegin() + for _i1337 in xrange(_size1333): + _elem1338 = iprot.readString() + self.group_names.append(_elem1338) iprot.readListEnd() else: iprot.skip(ftype) @@ -29217,8 +29217,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 iter1332 in self.group_names: - oprot.writeString(iter1332) + for iter1339 in self.group_names: + oprot.writeString(iter1339) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -29279,11 +29279,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1336, _size1333) = iprot.readListBegin() - for _i1337 in xrange(_size1333): - _elem1338 = Partition() - _elem1338.read(iprot) - self.success.append(_elem1338) + (_etype1343, _size1340) = iprot.readListBegin() + for _i1344 in xrange(_size1340): + _elem1345 = Partition() + _elem1345.read(iprot) + self.success.append(_elem1345) iprot.readListEnd() else: iprot.skip(ftype) @@ -29312,8 +29312,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 iter1339 in self.success: - iter1339.write(oprot) + for iter1346 in self.success: + iter1346.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -29471,11 +29471,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1343, _size1340) = iprot.readListBegin() - for _i1344 in xrange(_size1340): - _elem1345 = PartitionSpec() - _elem1345.read(iprot) - self.success.append(_elem1345) + (_etype1350, _size1347) = iprot.readListBegin() + for _i1351 in xrange(_size1347): + _elem1352 = PartitionSpec() + _elem1352.read(iprot) + self.success.append(_elem1352) iprot.readListEnd() else: iprot.skip(ftype) @@ -29504,8 +29504,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 iter1346 in self.success: - iter1346.write(oprot) + for iter1353 in self.success: + iter1353.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -29663,10 +29663,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1350, _size1347) = iprot.readListBegin() - for _i1351 in xrange(_size1347): - _elem1352 = iprot.readString() - self.success.append(_elem1352) + (_etype1357, _size1354) = iprot.readListBegin() + for _i1358 in xrange(_size1354): + _elem1359 = iprot.readString() + self.success.append(_elem1359) iprot.readListEnd() else: iprot.skip(ftype) @@ -29695,8 +29695,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 iter1353 in self.success: - oprot.writeString(iter1353) + for iter1360 in self.success: + oprot.writeString(iter1360) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -29936,10 +29936,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1357, _size1354) = iprot.readListBegin() - for _i1358 in xrange(_size1354): - _elem1359 = iprot.readString() - self.part_vals.append(_elem1359) + (_etype1364, _size1361) = iprot.readListBegin() + for _i1365 in xrange(_size1361): + _elem1366 = iprot.readString() + self.part_vals.append(_elem1366) iprot.readListEnd() else: iprot.skip(ftype) @@ -29969,8 +29969,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 iter1360 in self.part_vals: - oprot.writeString(iter1360) + for iter1367 in self.part_vals: + oprot.writeString(iter1367) oprot.writeListEnd() oprot.writeFieldEnd() if self.max_parts is not None: @@ -30034,11 +30034,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1364, _size1361) = iprot.readListBegin() - for _i1365 in xrange(_size1361): - _elem1366 = Partition() - _elem1366.read(iprot) - self.success.append(_elem1366) + (_etype1371, _size1368) = iprot.readListBegin() + for _i1372 in xrange(_size1368): + _elem1373 = Partition() + _elem1373.read(iprot) + self.success.append(_elem1373) iprot.readListEnd() else: iprot.skip(ftype) @@ -30067,8 +30067,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 iter1367 in self.success: - iter1367.write(oprot) + for iter1374 in self.success: + iter1374.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -30155,10 +30155,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1371, _size1368) = iprot.readListBegin() - for _i1372 in xrange(_size1368): - _elem1373 = iprot.readString() - self.part_vals.append(_elem1373) + (_etype1378, _size1375) = iprot.readListBegin() + for _i1379 in xrange(_size1375): + _elem1380 = iprot.readString() + self.part_vals.append(_elem1380) iprot.readListEnd() else: iprot.skip(ftype) @@ -30175,10 +30175,10 @@ def read(self, iprot): elif fid == 6: if ftype == TType.LIST: self.group_names = [] - (_etype1377, _size1374) = iprot.readListBegin() - for _i1378 in xrange(_size1374): - _elem1379 = iprot.readString() - self.group_names.append(_elem1379) + (_etype1384, _size1381) = iprot.readListBegin() + for _i1385 in xrange(_size1381): + _elem1386 = iprot.readString() + self.group_names.append(_elem1386) iprot.readListEnd() else: iprot.skip(ftype) @@ -30203,8 +30203,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 iter1380 in self.part_vals: - oprot.writeString(iter1380) + for iter1387 in self.part_vals: + oprot.writeString(iter1387) oprot.writeListEnd() oprot.writeFieldEnd() if self.max_parts is not None: @@ -30218,8 +30218,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 iter1381 in self.group_names: - oprot.writeString(iter1381) + for iter1388 in self.group_names: + oprot.writeString(iter1388) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -30281,11 +30281,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1385, _size1382) = iprot.readListBegin() - for _i1386 in xrange(_size1382): - _elem1387 = Partition() - _elem1387.read(iprot) - self.success.append(_elem1387) + (_etype1392, _size1389) = iprot.readListBegin() + for _i1393 in xrange(_size1389): + _elem1394 = Partition() + _elem1394.read(iprot) + self.success.append(_elem1394) iprot.readListEnd() else: iprot.skip(ftype) @@ -30314,8 +30314,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 iter1388 in self.success: - iter1388.write(oprot) + for iter1395 in self.success: + iter1395.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -30396,10 +30396,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1392, _size1389) = iprot.readListBegin() - for _i1393 in xrange(_size1389): - _elem1394 = iprot.readString() - self.part_vals.append(_elem1394) + (_etype1399, _size1396) = iprot.readListBegin() + for _i1400 in xrange(_size1396): + _elem1401 = iprot.readString() + self.part_vals.append(_elem1401) iprot.readListEnd() else: iprot.skip(ftype) @@ -30429,8 +30429,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 iter1395 in self.part_vals: - oprot.writeString(iter1395) + for iter1402 in self.part_vals: + oprot.writeString(iter1402) oprot.writeListEnd() oprot.writeFieldEnd() if self.max_parts is not None: @@ -30494,10 +30494,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1399, _size1396) = iprot.readListBegin() - for _i1400 in xrange(_size1396): - _elem1401 = iprot.readString() - self.success.append(_elem1401) + (_etype1406, _size1403) = iprot.readListBegin() + for _i1407 in xrange(_size1403): + _elem1408 = iprot.readString() + self.success.append(_elem1408) iprot.readListEnd() else: iprot.skip(ftype) @@ -30526,8 +30526,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 iter1402 in self.success: - oprot.writeString(iter1402) + for iter1409 in self.success: + oprot.writeString(iter1409) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -30698,11 +30698,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1406, _size1403) = iprot.readListBegin() - for _i1407 in xrange(_size1403): - _elem1408 = Partition() - _elem1408.read(iprot) - self.success.append(_elem1408) + (_etype1413, _size1410) = iprot.readListBegin() + for _i1414 in xrange(_size1410): + _elem1415 = Partition() + _elem1415.read(iprot) + self.success.append(_elem1415) iprot.readListEnd() else: iprot.skip(ftype) @@ -30731,8 +30731,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 iter1409 in self.success: - iter1409.write(oprot) + for iter1416 in self.success: + iter1416.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -30903,11 +30903,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1413, _size1410) = iprot.readListBegin() - for _i1414 in xrange(_size1410): - _elem1415 = PartitionSpec() - _elem1415.read(iprot) - self.success.append(_elem1415) + (_etype1420, _size1417) = iprot.readListBegin() + for _i1421 in xrange(_size1417): + _elem1422 = PartitionSpec() + _elem1422.read(iprot) + self.success.append(_elem1422) iprot.readListEnd() else: iprot.skip(ftype) @@ -30936,8 +30936,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 iter1416 in self.success: - iter1416.write(oprot) + for iter1423 in self.success: + iter1423.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -31357,10 +31357,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.names = [] - (_etype1420, _size1417) = iprot.readListBegin() - for _i1421 in xrange(_size1417): - _elem1422 = iprot.readString() - self.names.append(_elem1422) + (_etype1427, _size1424) = iprot.readListBegin() + for _i1428 in xrange(_size1424): + _elem1429 = iprot.readString() + self.names.append(_elem1429) iprot.readListEnd() else: iprot.skip(ftype) @@ -31385,8 +31385,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 iter1423 in self.names: - oprot.writeString(iter1423) + for iter1430 in self.names: + oprot.writeString(iter1430) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -31445,11 +31445,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1427, _size1424) = iprot.readListBegin() - for _i1428 in xrange(_size1424): - _elem1429 = Partition() - _elem1429.read(iprot) - self.success.append(_elem1429) + (_etype1434, _size1431) = iprot.readListBegin() + for _i1435 in xrange(_size1431): + _elem1436 = Partition() + _elem1436.read(iprot) + self.success.append(_elem1436) iprot.readListEnd() else: iprot.skip(ftype) @@ -31478,8 +31478,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 iter1430 in self.success: - iter1430.write(oprot) + for iter1437 in self.success: + iter1437.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -31888,11 +31888,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.new_parts = [] - (_etype1434, _size1431) = iprot.readListBegin() - for _i1435 in xrange(_size1431): - _elem1436 = Partition() - _elem1436.read(iprot) - self.new_parts.append(_elem1436) + (_etype1441, _size1438) = iprot.readListBegin() + for _i1442 in xrange(_size1438): + _elem1443 = Partition() + _elem1443.read(iprot) + self.new_parts.append(_elem1443) iprot.readListEnd() else: iprot.skip(ftype) @@ -31917,8 +31917,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 iter1437 in self.new_parts: - iter1437.write(oprot) + for iter1444 in self.new_parts: + iter1444.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -32071,11 +32071,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.new_parts = [] - (_etype1441, _size1438) = iprot.readListBegin() - for _i1442 in xrange(_size1438): - _elem1443 = Partition() - _elem1443.read(iprot) - self.new_parts.append(_elem1443) + (_etype1448, _size1445) = iprot.readListBegin() + for _i1449 in xrange(_size1445): + _elem1450 = Partition() + _elem1450.read(iprot) + self.new_parts.append(_elem1450) iprot.readListEnd() else: iprot.skip(ftype) @@ -32106,8 +32106,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 iter1444 in self.new_parts: - iter1444.write(oprot) + for iter1451 in self.new_parts: + iter1451.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.environment_context is not None: @@ -32610,10 +32610,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.part_vals = [] - (_etype1448, _size1445) = iprot.readListBegin() - for _i1449 in xrange(_size1445): - _elem1450 = iprot.readString() - self.part_vals.append(_elem1450) + (_etype1455, _size1452) = iprot.readListBegin() + for _i1456 in xrange(_size1452): + _elem1457 = iprot.readString() + self.part_vals.append(_elem1457) iprot.readListEnd() else: iprot.skip(ftype) @@ -32644,8 +32644,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 iter1451 in self.part_vals: - oprot.writeString(iter1451) + for iter1458 in self.part_vals: + oprot.writeString(iter1458) oprot.writeListEnd() oprot.writeFieldEnd() if self.new_part is not None: @@ -32946,10 +32946,10 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.part_vals = [] - (_etype1455, _size1452) = iprot.readListBegin() - for _i1456 in xrange(_size1452): - _elem1457 = iprot.readString() - self.part_vals.append(_elem1457) + (_etype1462, _size1459) = iprot.readListBegin() + for _i1463 in xrange(_size1459): + _elem1464 = iprot.readString() + self.part_vals.append(_elem1464) iprot.readListEnd() else: iprot.skip(ftype) @@ -32971,8 +32971,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 iter1458 in self.part_vals: - oprot.writeString(iter1458) + for iter1465 in self.part_vals: + oprot.writeString(iter1465) oprot.writeListEnd() oprot.writeFieldEnd() if self.throw_exception is not None: @@ -33330,10 +33330,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1462, _size1459) = iprot.readListBegin() - for _i1463 in xrange(_size1459): - _elem1464 = iprot.readString() - self.success.append(_elem1464) + (_etype1469, _size1466) = iprot.readListBegin() + for _i1470 in xrange(_size1466): + _elem1471 = iprot.readString() + self.success.append(_elem1471) iprot.readListEnd() else: iprot.skip(ftype) @@ -33356,8 +33356,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 iter1465 in self.success: - oprot.writeString(iter1465) + for iter1472 in self.success: + oprot.writeString(iter1472) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -33481,11 +33481,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.MAP: self.success = {} - (_ktype1467, _vtype1468, _size1466 ) = iprot.readMapBegin() - for _i1470 in xrange(_size1466): - _key1471 = iprot.readString() - _val1472 = iprot.readString() - self.success[_key1471] = _val1472 + (_ktype1474, _vtype1475, _size1473 ) = iprot.readMapBegin() + for _i1477 in xrange(_size1473): + _key1478 = iprot.readString() + _val1479 = iprot.readString() + self.success[_key1478] = _val1479 iprot.readMapEnd() else: iprot.skip(ftype) @@ -33508,9 +33508,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 kiter1473,viter1474 in self.success.items(): - oprot.writeString(kiter1473) - oprot.writeString(viter1474) + for kiter1480,viter1481 in self.success.items(): + oprot.writeString(kiter1480) + oprot.writeString(viter1481) oprot.writeMapEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -33586,11 +33586,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.MAP: self.part_vals = {} - (_ktype1476, _vtype1477, _size1475 ) = iprot.readMapBegin() - for _i1479 in xrange(_size1475): - _key1480 = iprot.readString() - _val1481 = iprot.readString() - self.part_vals[_key1480] = _val1481 + (_ktype1483, _vtype1484, _size1482 ) = iprot.readMapBegin() + for _i1486 in xrange(_size1482): + _key1487 = iprot.readString() + _val1488 = iprot.readString() + self.part_vals[_key1487] = _val1488 iprot.readMapEnd() else: iprot.skip(ftype) @@ -33620,9 +33620,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 kiter1482,viter1483 in self.part_vals.items(): - oprot.writeString(kiter1482) - oprot.writeString(viter1483) + for kiter1489,viter1490 in self.part_vals.items(): + oprot.writeString(kiter1489) + oprot.writeString(viter1490) oprot.writeMapEnd() oprot.writeFieldEnd() if self.eventType is not None: @@ -33836,11 +33836,11 @@ def read(self, iprot): elif fid == 3: if ftype == TType.MAP: self.part_vals = {} - (_ktype1485, _vtype1486, _size1484 ) = iprot.readMapBegin() - for _i1488 in xrange(_size1484): - _key1489 = iprot.readString() - _val1490 = iprot.readString() - self.part_vals[_key1489] = _val1490 + (_ktype1492, _vtype1493, _size1491 ) = iprot.readMapBegin() + for _i1495 in xrange(_size1491): + _key1496 = iprot.readString() + _val1497 = iprot.readString() + self.part_vals[_key1496] = _val1497 iprot.readMapEnd() else: iprot.skip(ftype) @@ -33870,9 +33870,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 kiter1491,viter1492 in self.part_vals.items(): - oprot.writeString(kiter1491) - oprot.writeString(viter1492) + for kiter1498,viter1499 in self.part_vals.items(): + oprot.writeString(kiter1498) + oprot.writeString(viter1499) oprot.writeMapEnd() oprot.writeFieldEnd() if self.eventType is not None: @@ -37924,10 +37924,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1496, _size1493) = iprot.readListBegin() - for _i1497 in xrange(_size1493): - _elem1498 = iprot.readString() - self.success.append(_elem1498) + (_etype1503, _size1500) = iprot.readListBegin() + for _i1504 in xrange(_size1500): + _elem1505 = iprot.readString() + self.success.append(_elem1505) iprot.readListEnd() else: iprot.skip(ftype) @@ -37950,8 +37950,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 iter1499 in self.success: - oprot.writeString(iter1499) + for iter1506 in self.success: + oprot.writeString(iter1506) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -38639,10 +38639,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1503, _size1500) = iprot.readListBegin() - for _i1504 in xrange(_size1500): - _elem1505 = iprot.readString() - self.success.append(_elem1505) + (_etype1510, _size1507) = iprot.readListBegin() + for _i1511 in xrange(_size1507): + _elem1512 = iprot.readString() + self.success.append(_elem1512) iprot.readListEnd() else: iprot.skip(ftype) @@ -38665,8 +38665,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 iter1506 in self.success: - oprot.writeString(iter1506) + for iter1513 in self.success: + oprot.writeString(iter1513) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -39180,11 +39180,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1510, _size1507) = iprot.readListBegin() - for _i1511 in xrange(_size1507): - _elem1512 = Role() - _elem1512.read(iprot) - self.success.append(_elem1512) + (_etype1517, _size1514) = iprot.readListBegin() + for _i1518 in xrange(_size1514): + _elem1519 = Role() + _elem1519.read(iprot) + self.success.append(_elem1519) iprot.readListEnd() else: iprot.skip(ftype) @@ -39207,8 +39207,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 iter1513 in self.success: - iter1513.write(oprot) + for iter1520 in self.success: + iter1520.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -39717,10 +39717,10 @@ def read(self, iprot): elif fid == 3: if ftype == TType.LIST: self.group_names = [] - (_etype1517, _size1514) = iprot.readListBegin() - for _i1518 in xrange(_size1514): - _elem1519 = iprot.readString() - self.group_names.append(_elem1519) + (_etype1524, _size1521) = iprot.readListBegin() + for _i1525 in xrange(_size1521): + _elem1526 = iprot.readString() + self.group_names.append(_elem1526) iprot.readListEnd() else: iprot.skip(ftype) @@ -39745,8 +39745,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 iter1520 in self.group_names: - oprot.writeString(iter1520) + for iter1527 in self.group_names: + oprot.writeString(iter1527) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -39973,11 +39973,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1524, _size1521) = iprot.readListBegin() - for _i1525 in xrange(_size1521): - _elem1526 = HiveObjectPrivilege() - _elem1526.read(iprot) - self.success.append(_elem1526) + (_etype1531, _size1528) = iprot.readListBegin() + for _i1532 in xrange(_size1528): + _elem1533 = HiveObjectPrivilege() + _elem1533.read(iprot) + self.success.append(_elem1533) iprot.readListEnd() else: iprot.skip(ftype) @@ -40000,8 +40000,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 iter1527 in self.success: - iter1527.write(oprot) + for iter1534 in self.success: + iter1534.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -40671,10 +40671,10 @@ def read(self, iprot): elif fid == 2: if ftype == TType.LIST: self.group_names = [] - (_etype1531, _size1528) = iprot.readListBegin() - for _i1532 in xrange(_size1528): - _elem1533 = iprot.readString() - self.group_names.append(_elem1533) + (_etype1538, _size1535) = iprot.readListBegin() + for _i1539 in xrange(_size1535): + _elem1540 = iprot.readString() + self.group_names.append(_elem1540) iprot.readListEnd() else: iprot.skip(ftype) @@ -40695,8 +40695,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 iter1534 in self.group_names: - oprot.writeString(iter1534) + for iter1541 in self.group_names: + oprot.writeString(iter1541) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -40751,10 +40751,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1538, _size1535) = iprot.readListBegin() - for _i1539 in xrange(_size1535): - _elem1540 = iprot.readString() - self.success.append(_elem1540) + (_etype1545, _size1542) = iprot.readListBegin() + for _i1546 in xrange(_size1542): + _elem1547 = iprot.readString() + self.success.append(_elem1547) iprot.readListEnd() else: iprot.skip(ftype) @@ -40777,8 +40777,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 iter1541 in self.success: - oprot.writeString(iter1541) + for iter1548 in self.success: + oprot.writeString(iter1548) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -41710,10 +41710,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1545, _size1542) = iprot.readListBegin() - for _i1546 in xrange(_size1542): - _elem1547 = iprot.readString() - self.success.append(_elem1547) + (_etype1552, _size1549) = iprot.readListBegin() + for _i1553 in xrange(_size1549): + _elem1554 = iprot.readString() + self.success.append(_elem1554) iprot.readListEnd() else: iprot.skip(ftype) @@ -41730,8 +41730,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 iter1548 in self.success: - oprot.writeString(iter1548) + for iter1555 in self.success: + oprot.writeString(iter1555) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -42258,10 +42258,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1552, _size1549) = iprot.readListBegin() - for _i1553 in xrange(_size1549): - _elem1554 = iprot.readString() - self.success.append(_elem1554) + (_etype1559, _size1556) = iprot.readListBegin() + for _i1560 in xrange(_size1556): + _elem1561 = iprot.readString() + self.success.append(_elem1561) iprot.readListEnd() else: iprot.skip(ftype) @@ -42278,8 +42278,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 iter1555 in self.success: - oprot.writeString(iter1555) + for iter1562 in self.success: + oprot.writeString(iter1562) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -45292,10 +45292,10 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1559, _size1556) = iprot.readListBegin() - for _i1560 in xrange(_size1556): - _elem1561 = iprot.readString() - self.success.append(_elem1561) + (_etype1566, _size1563) = iprot.readListBegin() + for _i1567 in xrange(_size1563): + _elem1568 = iprot.readString() + self.success.append(_elem1568) iprot.readListEnd() else: iprot.skip(ftype) @@ -45312,8 +45312,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 iter1562 in self.success: - oprot.writeString(iter1562) + for iter1569 in self.success: + oprot.writeString(iter1569) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -51623,11 +51623,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1566, _size1563) = iprot.readListBegin() - for _i1567 in xrange(_size1563): - _elem1568 = SchemaVersion() - _elem1568.read(iprot) - self.success.append(_elem1568) + (_etype1573, _size1570) = iprot.readListBegin() + for _i1574 in xrange(_size1570): + _elem1575 = SchemaVersion() + _elem1575.read(iprot) + self.success.append(_elem1575) iprot.readListEnd() else: iprot.skip(ftype) @@ -51656,8 +51656,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 iter1569 in self.success: - iter1569.write(oprot) + for iter1576 in self.success: + iter1576.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: @@ -53132,11 +53132,11 @@ def read(self, iprot): if fid == 0: if ftype == TType.LIST: self.success = [] - (_etype1573, _size1570) = iprot.readListBegin() - for _i1574 in xrange(_size1570): - _elem1575 = RuntimeStat() - _elem1575.read(iprot) - self.success.append(_elem1575) + (_etype1580, _size1577) = iprot.readListBegin() + for _i1581 in xrange(_size1577): + _elem1582 = RuntimeStat() + _elem1582.read(iprot) + self.success.append(_elem1582) iprot.readListEnd() else: iprot.skip(ftype) @@ -53159,8 +53159,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 iter1576 in self.success: - iter1576.write(oprot) + for iter1583 in self.success: + iter1583.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() if self.o1 is not None: diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py index cf3137928f..c9cadd1195 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-py/hive_metastore/ttypes.py @@ -26213,6 +26213,8 @@ class GetPartitionsFilterSpec: Attributes: - filterMode - filters + - filterExpr + - defaultPartName """ thrift_spec = ( @@ -26225,11 +26227,15 @@ class GetPartitionsFilterSpec: None, # 6 (7, TType.I32, 'filterMode', None, None, ), # 7 (8, TType.LIST, 'filters', (TType.STRING,None), None, ), # 8 + (9, TType.LIST, 'filterExpr', (TType.BYTE,None), None, ), # 9 + (10, TType.STRING, 'defaultPartName', None, None, ), # 10 ) - def __init__(self, filterMode=None, filters=None,): + def __init__(self, filterMode=None, filters=None, filterExpr=None, defaultPartName=None,): self.filterMode = filterMode self.filters = filters + self.filterExpr = filterExpr + self.defaultPartName = defaultPartName 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: @@ -26255,6 +26261,21 @@ def read(self, iprot): iprot.readListEnd() else: iprot.skip(ftype) + elif fid == 9: + if ftype == TType.LIST: + self.filterExpr = [] + (_etype1035, _size1032) = iprot.readListBegin() + for _i1036 in xrange(_size1032): + _elem1037 = iprot.readByte() + self.filterExpr.append(_elem1037) + iprot.readListEnd() + else: + iprot.skip(ftype) + elif fid == 10: + if ftype == TType.STRING: + self.defaultPartName = iprot.readString() + else: + iprot.skip(ftype) else: iprot.skip(ftype) iprot.readFieldEnd() @@ -26272,10 +26293,21 @@ def write(self, oprot): if self.filters is not None: oprot.writeFieldBegin('filters', TType.LIST, 8) oprot.writeListBegin(TType.STRING, len(self.filters)) - for iter1032 in self.filters: - oprot.writeString(iter1032) + for iter1038 in self.filters: + oprot.writeString(iter1038) + oprot.writeListEnd() + oprot.writeFieldEnd() + if self.filterExpr is not None: + oprot.writeFieldBegin('filterExpr', TType.LIST, 9) + oprot.writeListBegin(TType.BYTE, len(self.filterExpr)) + for iter1039 in self.filterExpr: + oprot.writeByte(iter1039) oprot.writeListEnd() oprot.writeFieldEnd() + if self.defaultPartName is not None: + oprot.writeFieldBegin('defaultPartName', TType.STRING, 10) + oprot.writeString(self.defaultPartName) + oprot.writeFieldEnd() oprot.writeFieldStop() oprot.writeStructEnd() @@ -26287,6 +26319,8 @@ def __hash__(self): value = 17 value = (value * 31) ^ hash(self.filterMode) value = (value * 31) ^ hash(self.filters) + value = (value * 31) ^ hash(self.filterExpr) + value = (value * 31) ^ hash(self.defaultPartName) return value def __repr__(self): @@ -26326,11 +26360,11 @@ def read(self, iprot): if fid == 1: if ftype == TType.LIST: self.partitionSpec = [] - (_etype1036, _size1033) = iprot.readListBegin() - for _i1037 in xrange(_size1033): - _elem1038 = PartitionSpec() - _elem1038.read(iprot) - self.partitionSpec.append(_elem1038) + (_etype1043, _size1040) = iprot.readListBegin() + for _i1044 in xrange(_size1040): + _elem1045 = PartitionSpec() + _elem1045.read(iprot) + self.partitionSpec.append(_elem1045) iprot.readListEnd() else: iprot.skip(ftype) @@ -26347,8 +26381,8 @@ def write(self, oprot): if self.partitionSpec is not None: oprot.writeFieldBegin('partitionSpec', TType.LIST, 1) oprot.writeListBegin(TType.STRUCT, len(self.partitionSpec)) - for iter1039 in self.partitionSpec: - iter1039.write(oprot) + for iter1046 in self.partitionSpec: + iter1046.write(oprot) oprot.writeListEnd() oprot.writeFieldEnd() oprot.writeFieldStop() @@ -26452,10 +26486,10 @@ def read(self, iprot): elif fid == 6: if ftype == TType.LIST: self.groupNames = [] - (_etype1043, _size1040) = iprot.readListBegin() - for _i1044 in xrange(_size1040): - _elem1045 = iprot.readString() - self.groupNames.append(_elem1045) + (_etype1050, _size1047) = iprot.readListBegin() + for _i1051 in xrange(_size1047): + _elem1052 = iprot.readString() + self.groupNames.append(_elem1052) iprot.readListEnd() else: iprot.skip(ftype) @@ -26474,10 +26508,10 @@ def read(self, iprot): elif fid == 9: if ftype == TType.LIST: self.processorCapabilities = [] - (_etype1049, _size1046) = iprot.readListBegin() - for _i1050 in xrange(_size1046): - _elem1051 = iprot.readString() - self.processorCapabilities.append(_elem1051) + (_etype1056, _size1053) = iprot.readListBegin() + for _i1057 in xrange(_size1053): + _elem1058 = iprot.readString() + self.processorCapabilities.append(_elem1058) iprot.readListEnd() else: iprot.skip(ftype) @@ -26519,8 +26553,8 @@ def write(self, oprot): if self.groupNames is not None: oprot.writeFieldBegin('groupNames', TType.LIST, 6) oprot.writeListBegin(TType.STRING, len(self.groupNames)) - for iter1052 in self.groupNames: - oprot.writeString(iter1052) + for iter1059 in self.groupNames: + oprot.writeString(iter1059) oprot.writeListEnd() oprot.writeFieldEnd() if self.projectionSpec is not None: @@ -26534,8 +26568,8 @@ def write(self, oprot): if self.processorCapabilities is not None: oprot.writeFieldBegin('processorCapabilities', TType.LIST, 9) oprot.writeListBegin(TType.STRING, len(self.processorCapabilities)) - for iter1053 in self.processorCapabilities: - oprot.writeString(iter1053) + for iter1060 in self.processorCapabilities: + oprot.writeString(iter1060) oprot.writeListEnd() oprot.writeFieldEnd() if self.processorIdentifier is not None: diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb index 849970eb56..30481166fd 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-rb/hive_metastore_types.rb @@ -5860,10 +5860,14 @@ class GetPartitionsFilterSpec include ::Thrift::Struct, ::Thrift::Struct_Union FILTERMODE = 7 FILTERS = 8 + FILTEREXPR = 9 + DEFAULTPARTNAME = 10 FIELDS = { FILTERMODE => {:type => ::Thrift::Types::I32, :name => 'filterMode', :optional => true, :enum_class => ::PartitionFilterMode}, - FILTERS => {:type => ::Thrift::Types::LIST, :name => 'filters', :element => {:type => ::Thrift::Types::STRING}, :optional => true} + FILTERS => {:type => ::Thrift::Types::LIST, :name => 'filters', :element => {:type => ::Thrift::Types::STRING}, :optional => true}, + FILTEREXPR => {:type => ::Thrift::Types::LIST, :name => 'filterExpr', :element => {:type => ::Thrift::Types::BYTE}, :optional => true}, + DEFAULTPARTNAME => {:type => ::Thrift::Types::STRING, :name => 'defaultPartName', :optional => true} } def struct_fields; FIELDS; end diff --git a/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift b/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift index 098ddec5dc..91dcdf93c1 100644 --- a/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift +++ b/standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift @@ -1909,8 +1909,10 @@ enum PartitionFilterMode { } struct GetPartitionsFilterSpec { - 7: optional PartitionFilterMode filterMode, - 8: optional list filters //used as list of partitionNames or list of values or expressions depending on mode + 7: optional PartitionFilterMode filterMode, + 8: optional list filters //used as list of partitionNames or list of values + 9: optional list filterExpr //used as list of expressions for BY_EXPR mode + 10: optional string defaultPartName //used in BY_EXPR mode to rewrite expression } struct GetPartitionsResponse { diff --git a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreDirectSql.java b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreDirectSql.java index d1558876f1..2ebcee68b0 100644 --- a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreDirectSql.java +++ b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/MetaStoreDirectSql.java @@ -586,10 +586,6 @@ public Database getDatabase(String catName, String dbName) throws MetaException{ final String catName = tbl.getCatName(); List partitionIds = null; if (filterSpec.isSetFilterMode()) { - List filters = filterSpec.getFilters(); - if (filters == null || filters.isEmpty()) { - throw new MetaException("Invalid filter expressions in the filter spec"); - } switch(filterSpec.getFilterMode()) { case BY_EXPR: partitionIds = @@ -606,7 +602,8 @@ public Database getDatabase(String catName, String dbName) throws MetaException{ case BY_VALUES: // we are going to use the SQL regex pattern in the LIKE clause below. So the default string // is _% and not .* - String partNameMatcher = MetaStoreUtils.makePartNameMatcher(tbl, filters, "_%"); + String partNameMatcher = MetaStoreUtils.makePartNameMatcher(tbl, filterSpec.getFilters(), + "_%"); String partNamesLikeFilter = "" + PARTITIONS + ".\"PART_NAME\" LIKE (?)"; partitionIds = diff --git a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java index 53b7a67a42..29c3a281b2 100644 --- a/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java +++ b/standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java @@ -3949,6 +3949,12 @@ protected boolean canUseDirectSql(GetHelper> ctx) throws MetaExc true, true); } + //TODO + /*List filters = filterSpec.getFilters(); + if (filters == null || filters.isEmpty()) { + throw new MetaException("Invalid filter expressions in the filter spec"); + } */ + // anonymous class below requires final String objects final String includeParamKeyPattern = inputIncludePattern; final String excludeParamKeyPattern = inputExcludePattern; @@ -3956,38 +3962,43 @@ protected boolean canUseDirectSql(GetHelper> ctx) throws MetaExc return new GetListHelper(table.getCatName(), table.getDbName(), table.getTableName(), fieldList, true, true) { private final SqlFilterForPushdown filter = new SqlFilterForPushdown(); - private ExpressionTree tree; + private String defaultPartitionName; + private byte[] byteFilterExpr; + + private ExpressionTree initExpressionTree() throws MetaException { + defaultPartitionName = filterSpec.getDefaultPartName(); + List filterExpr = filterSpec.getFilterExpr(); + byteFilterExpr = org.apache.commons.lang.ArrayUtils.toPrimitive(filterExpr.toArray(new Byte[filterExpr.size()])); + + return PartFilterExprUtil.makeExpressionTree(expressionProxy, byteFilterExpr, + getDefaultPartitionName(defaultPartitionName)); + } @Override protected boolean canUseDirectSql(GetHelper> ctx) throws MetaException { - if (filterSpec.isSetFilterMode() && filterSpec.getFilterMode().equals(PartitionFilterMode.BY_EXPR)) { - // if the filter mode is BY_EXPR initialize the filter and generate the expression tree - // if there are more than one filter string we AND them together - initExpressionTree(); - return directSql.generateSqlFilterForPushdown(ctx.getTable(), tree, filter); - } - // BY_VALUES and BY_NAMES are always supported return true; } - private void initExpressionTree() throws MetaException { - StringBuilder filterBuilder = new StringBuilder(); - int len = filterSpec.getFilters().size(); - List filters = filterSpec.getFilters(); - for (int i = 0; i < len; i++) { - filterBuilder.append('('); - filterBuilder.append(filters.get(i)); - filterBuilder.append(')'); - if (i + 1 < len) { - filterBuilder.append(" AND "); - } - } - String filterStr = filterBuilder.toString(); - tree = PartFilterExprUtil.getFilterParser(filterStr).tree; - } - @Override protected List getSqlResult(GetHelper> ctx) throws MetaException { + //if expr mode, generate filter + if (filterSpec.isSetFilterMode() && filterSpec.getFilterMode().equals(PartitionFilterMode.BY_EXPR)) { + ExpressionTree exprTree = initExpressionTree(); + if (exprTree != null) { + SqlFilterForPushdown filter = new SqlFilterForPushdown(); + if (directSql.generateSqlFilterForPushdown(ctx.getTable(), exprTree, + defaultPartitionName, filter)) { + return directSql + .getPartitionsUsingProjectionAndFilterSpec(ctx.getTable(), ctx.partitionFields, + includeParamKeyPattern, excludeParamKeyPattern, filterSpec, filter); + } + } + // We couldn't do SQL filter pushdown. Get names via normal means. + List partNames = new LinkedList<>(); + getPartitionNamesPrunedByExprNoTxn( + ctx.getTable(), byteFilterExpr, defaultPartitionName, (short)-1 , partNames); + return directSql.getPartitionsViaSqlFilter(catName, dbName, tblName, partNames); + } return directSql .getPartitionsUsingProjectionAndFilterSpec(ctx.getTable(), ctx.partitionFields, includeParamKeyPattern, excludeParamKeyPattern, filterSpec, filter); @@ -3999,41 +4010,46 @@ private void initExpressionTree() throws MetaException { // For single-valued fields we can use setResult() to implement projection of fields but // JDO doesn't support multi-valued fields in setResult() so currently JDO implementation // fallbacks to full-partition fetch if the requested fields contain multi-valued fields - List fieldNames = PartitionProjectionEvaluator.getMPartitionFieldNames(ctx.partitionFields); - Map params = new HashMap<>(); - String jdoFilter = null; - if (filterSpec.isSetFilterMode()) { - // generate the JDO filter string - switch(filterSpec.getFilterMode()) { - case BY_EXPR: - if (tree == null) { - // tree could be null when directSQL is disabled - initExpressionTree(); - } + List fieldNames = ctx.partitionFields; + Map params = new HashMap<>(); + String jdoFilter = null; + if (filterSpec.isSetFilterMode()) { + // generate the JDO filter string + switch(filterSpec.getFilterMode()) { + case BY_EXPR: + ExpressionTree exprTree = initExpressionTree(); + if(exprTree == null) { + // We couldn't do JDOQL filter pushdown. Get names via normal means. + List partNames = new ArrayList<>(); + getPartitionNamesPrunedByExprNoTxn( + ctx.getTable(), byteFilterExpr, defaultPartitionName, (short)-1, partNames); + return getPartitionsViaOrmFilter(catName, dbName, tblName, partNames); + } else { jdoFilter = - makeQueryFilterString(table.getCatName(), table.getDbName(), table, tree, params, + makeQueryFilterString(table.getCatName(), table.getDbName(), table, exprTree, params, true); if (jdoFilter == null) { throw new MetaException("Could not generate JDO filter from given expression"); } break; - case BY_NAMES: - jdoFilter = getJDOFilterStrForPartitionNames(table.getCatName(), table.getDbName(), - table.getTableName(), filterSpec.getFilters(), params); - break; - case BY_VALUES: - jdoFilter = getJDOFilterStrForPartitionVals(table, filterSpec.getFilters(), params); - break; - default: - throw new MetaException("Unsupported filter mode " + filterSpec.getFilterMode()); } - } else { - // filter mode is not set create simple JDOFilterStr and params - jdoFilter = "table.tableName == t1 && table.database.name == t2 && table.database.catalogName == t3"; - params.put("t1", normalizeIdentifier(tblName)); - params.put("t2", normalizeIdentifier(dbName)); - params.put("t3", normalizeIdentifier(catName)); + case BY_NAMES: + jdoFilter = getJDOFilterStrForPartitionNames(table.getCatName(), table.getDbName(), + table.getTableName(), filterSpec.getFilters(), params); + break; + case BY_VALUES: + jdoFilter = getJDOFilterStrForPartitionVals(table, filterSpec.getFilters(), params); + break; + default: + throw new MetaException("Unsupported filter mode " + filterSpec.getFilterMode()); } + } else { + // filter mode is not set create simple JDOFilterStr and params + jdoFilter = "table.tableName == t1 && table.database.name == t2 && table.database.catalogName == t3"; + params.put("t1", normalizeIdentifier(tblName)); + params.put("t2", normalizeIdentifier(dbName)); + params.put("t3", normalizeIdentifier(catName)); + } try (QueryWrapper queryWrapper = new QueryWrapper()) { return convertToParts( listMPartitionsWithProjection(queryWrapper, fieldNames, jdoFilter, params));