http://git-wip-us.apache.org/repos/asf/hive/blob/754443e6/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java ---------------------------------------------------------------------- diff --cc metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java index 4134483,d827d6c..6fdd29a --- a/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java +++ b/metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/ThriftHiveMetastore.java @@@ -48379,8 -48004,1032 +48532,1032 @@@ public class ThriftHiveMetastore public boolean equals(Object that) { if (that == null) return false; - if (that instanceof get_tables_args) - return this.equals((get_tables_args)that); + if (that instanceof get_tables_args) + return this.equals((get_tables_args)that); + return false; + } + + public boolean equals(get_tables_args that) { + if (that == null) + return false; + + boolean this_present_db_name = true && this.isSetDb_name(); + boolean that_present_db_name = true && that.isSetDb_name(); + if (this_present_db_name || that_present_db_name) { + if (!(this_present_db_name && that_present_db_name)) + return false; + if (!this.db_name.equals(that.db_name)) + return false; + } + + boolean this_present_pattern = true && this.isSetPattern(); + boolean that_present_pattern = true && that.isSetPattern(); + if (this_present_pattern || that_present_pattern) { + if (!(this_present_pattern && that_present_pattern)) + return false; + if (!this.pattern.equals(that.pattern)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + List<Object> list = new ArrayList<Object>(); + + boolean present_db_name = true && (isSetDb_name()); + list.add(present_db_name); + if (present_db_name) + list.add(db_name); + + boolean present_pattern = true && (isSetPattern()); + list.add(present_pattern); + if (present_pattern) + list.add(pattern); + + return list.hashCode(); + } + + @Override + public int compareTo(get_tables_args other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = Boolean.valueOf(isSetDb_name()).compareTo(other.isSetDb_name()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetDb_name()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.db_name, other.db_name); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetPattern()).compareTo(other.isSetPattern()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetPattern()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.pattern, other.pattern); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + schemes.get(iprot.getScheme()).getScheme().read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + schemes.get(oprot.getScheme()).getScheme().write(oprot, this); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder("get_tables_args("); + boolean first = true; + + sb.append("db_name:"); + if (this.db_name == null) { + sb.append("null"); + } else { + sb.append(this.db_name); + } + first = false; + if (!first) sb.append(", "); + sb.append("pattern:"); + if (this.pattern == null) { + sb.append("null"); + } else { + sb.append(this.pattern); + } + first = false; + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + } + + private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { + try { + write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException { + try { + read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private static class get_tables_argsStandardSchemeFactory implements SchemeFactory { + public get_tables_argsStandardScheme getScheme() { + return new get_tables_argsStandardScheme(); + } + } + + private static class get_tables_argsStandardScheme extends StandardScheme<get_tables_args> { + + public void read(org.apache.thrift.protocol.TProtocol iprot, get_tables_args struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TField schemeField; + iprot.readStructBegin(); + while (true) + { + schemeField = iprot.readFieldBegin(); + if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { + break; + } + switch (schemeField.id) { + case 1: // DB_NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.db_name = iprot.readString(); + struct.setDb_nameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // PATTERN + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.pattern = iprot.readString(); + struct.setPatternIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + default: + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, get_tables_args struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.db_name != null) { + oprot.writeFieldBegin(DB_NAME_FIELD_DESC); + oprot.writeString(struct.db_name); + oprot.writeFieldEnd(); + } + if (struct.pattern != null) { + oprot.writeFieldBegin(PATTERN_FIELD_DESC); + oprot.writeString(struct.pattern); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class get_tables_argsTupleSchemeFactory implements SchemeFactory { + public get_tables_argsTupleScheme getScheme() { + return new get_tables_argsTupleScheme(); + } + } + + private static class get_tables_argsTupleScheme extends TupleScheme<get_tables_args> { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, get_tables_args struct) throws org.apache.thrift.TException { + TTupleProtocol oprot = (TTupleProtocol) prot; + BitSet optionals = new BitSet(); + if (struct.isSetDb_name()) { + optionals.set(0); + } + if (struct.isSetPattern()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetDb_name()) { + oprot.writeString(struct.db_name); + } + if (struct.isSetPattern()) { + oprot.writeString(struct.pattern); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_args struct) throws org.apache.thrift.TException { + TTupleProtocol iprot = (TTupleProtocol) prot; + BitSet incoming = iprot.readBitSet(2); + if (incoming.get(0)) { + struct.db_name = iprot.readString(); + struct.setDb_nameIsSet(true); + } + if (incoming.get(1)) { + struct.pattern = iprot.readString(); + struct.setPatternIsSet(true); + } + } + } + + } + + public static class get_tables_result implements org.apache.thrift.TBase<get_tables_result, get_tables_result._Fields>, java.io.Serializable, Cloneable, Comparable<get_tables_result> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("get_tables_result"); + + private static final org.apache.thrift.protocol.TField SUCCESS_FIELD_DESC = new org.apache.thrift.protocol.TField("success", org.apache.thrift.protocol.TType.LIST, (short)0); + private static final org.apache.thrift.protocol.TField O1_FIELD_DESC = new org.apache.thrift.protocol.TField("o1", org.apache.thrift.protocol.TType.STRUCT, (short)1); + + private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); + static { + schemes.put(StandardScheme.class, new get_tables_resultStandardSchemeFactory()); + schemes.put(TupleScheme.class, new get_tables_resultTupleSchemeFactory()); + } + + private List<String> success; // required + private MetaException o1; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + public enum _Fields implements org.apache.thrift.TFieldIdEnum { + SUCCESS((short)0, "success"), + O1((short)1, "o1"); + + private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); + + static { + for (_Fields field : EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 0: // SUCCESS + return SUCCESS; + case 1: // O1 + return O1; + default: + return null; + } + } + + /** + * Find the _Fields constant that matches fieldId, throwing an exception + * if it is not found. + */ + public static _Fields findByThriftIdOrThrow(int fieldId) { + _Fields fields = findByThriftId(fieldId); + if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + public static _Fields findByName(String name) { + return byName.get(name); + } + + private final short _thriftId; + private final String _fieldName; + + _Fields(short thriftId, String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + public short getThriftFieldId() { + return _thriftId; + } + + public String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.SUCCESS, new org.apache.thrift.meta_data.FieldMetaData("success", org.apache.thrift.TFieldRequirementType.DEFAULT, + 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.O1, new org.apache.thrift.meta_data.FieldMetaData("o1", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT))); + metaDataMap = Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(get_tables_result.class, metaDataMap); + } + + public get_tables_result() { + } + + public get_tables_result( + List<String> success, + MetaException o1) + { + this(); + this.success = success; + this.o1 = o1; + } + + /** + * Performs a deep copy on <i>other</i>. + */ + public get_tables_result(get_tables_result other) { + if (other.isSetSuccess()) { + List<String> __this__success = new ArrayList<String>(other.success); + this.success = __this__success; + } + if (other.isSetO1()) { + this.o1 = new MetaException(other.o1); + } + } + + public get_tables_result deepCopy() { + return new get_tables_result(this); + } + + @Override + public void clear() { + this.success = null; + this.o1 = null; + } + + public int getSuccessSize() { + return (this.success == null) ? 0 : this.success.size(); + } + + public java.util.Iterator<String> getSuccessIterator() { + return (this.success == null) ? null : this.success.iterator(); + } + + public void addToSuccess(String elem) { + if (this.success == null) { + this.success = new ArrayList<String>(); + } + this.success.add(elem); + } + + public List<String> getSuccess() { + return this.success; + } + + public void setSuccess(List<String> success) { + this.success = success; + } + + public void unsetSuccess() { + this.success = null; + } + + /** Returns true if field success is set (has been assigned a value) and false otherwise */ + public boolean isSetSuccess() { + return this.success != null; + } + + public void setSuccessIsSet(boolean value) { + if (!value) { + this.success = null; + } + } + + public MetaException getO1() { + return this.o1; + } + + public void setO1(MetaException o1) { + this.o1 = o1; + } + + public void unsetO1() { + this.o1 = null; + } + + /** Returns true if field o1 is set (has been assigned a value) and false otherwise */ + public boolean isSetO1() { + return this.o1 != null; + } + + public void setO1IsSet(boolean value) { + if (!value) { + this.o1 = null; + } + } + + public void setFieldValue(_Fields field, Object value) { + switch (field) { + case SUCCESS: + if (value == null) { + unsetSuccess(); + } else { + setSuccess((List<String>)value); + } + break; + + case O1: + if (value == null) { + unsetO1(); + } else { + setO1((MetaException)value); + } + break; + + } + } + + public Object getFieldValue(_Fields field) { + switch (field) { + case SUCCESS: + return getSuccess(); + + case O1: + return getO1(); + + } + throw new IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + public boolean isSet(_Fields field) { + if (field == null) { + throw new IllegalArgumentException(); + } + + switch (field) { + case SUCCESS: + return isSetSuccess(); + case O1: + return isSetO1(); + } + throw new IllegalStateException(); + } + + @Override + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof get_tables_result) + return this.equals((get_tables_result)that); + return false; + } + + public boolean equals(get_tables_result that) { + if (that == null) + return false; + + boolean this_present_success = true && this.isSetSuccess(); + boolean that_present_success = true && that.isSetSuccess(); + if (this_present_success || that_present_success) { + if (!(this_present_success && that_present_success)) + return false; + if (!this.success.equals(that.success)) + return false; + } + + boolean this_present_o1 = true && this.isSetO1(); + boolean that_present_o1 = true && that.isSetO1(); + if (this_present_o1 || that_present_o1) { + if (!(this_present_o1 && that_present_o1)) + return false; + if (!this.o1.equals(that.o1)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + List<Object> list = new ArrayList<Object>(); + + boolean present_success = true && (isSetSuccess()); + list.add(present_success); + if (present_success) + list.add(success); + + boolean present_o1 = true && (isSetO1()); + list.add(present_o1); + if (present_o1) + list.add(o1); + + return list.hashCode(); + } + + @Override + public int compareTo(get_tables_result other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = Boolean.valueOf(isSetSuccess()).compareTo(other.isSetSuccess()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSuccess()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.success, other.success); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetO1()).compareTo(other.isSetO1()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetO1()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.o1, other.o1); + if (lastComparison != 0) { + return lastComparison; + } + } + return 0; + } + + public _Fields fieldForId(int fieldId) { + return _Fields.findByThriftId(fieldId); + } + + public void read(org.apache.thrift.protocol.TProtocol iprot) throws org.apache.thrift.TException { + schemes.get(iprot.getScheme()).getScheme().read(iprot, this); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot) throws org.apache.thrift.TException { + schemes.get(oprot.getScheme()).getScheme().write(oprot, this); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder("get_tables_result("); + boolean first = true; + + sb.append("success:"); + if (this.success == null) { + sb.append("null"); + } else { + sb.append(this.success); + } + first = false; + if (!first) sb.append(", "); + sb.append("o1:"); + if (this.o1 == null) { + sb.append("null"); + } else { + sb.append(this.o1); + } + first = false; + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + } + + private void writeObject(java.io.ObjectOutputStream out) throws java.io.IOException { + try { + write(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(out))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private void readObject(java.io.ObjectInputStream in) throws java.io.IOException, ClassNotFoundException { + try { + read(new org.apache.thrift.protocol.TCompactProtocol(new org.apache.thrift.transport.TIOStreamTransport(in))); + } catch (org.apache.thrift.TException te) { + throw new java.io.IOException(te); + } + } + + private static class get_tables_resultStandardSchemeFactory implements SchemeFactory { + public get_tables_resultStandardScheme getScheme() { + return new get_tables_resultStandardScheme(); + } + } + + private static class get_tables_resultStandardScheme extends StandardScheme<get_tables_result> { + + public void read(org.apache.thrift.protocol.TProtocol iprot, get_tables_result struct) throws org.apache.thrift.TException { + org.apache.thrift.protocol.TField schemeField; + iprot.readStructBegin(); + while (true) + { + schemeField = iprot.readFieldBegin(); + if (schemeField.type == org.apache.thrift.protocol.TType.STOP) { + break; + } + switch (schemeField.id) { + case 0: // SUCCESS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { - org.apache.thrift.protocol.TList _list716 = iprot.readListBegin(); - struct.success = new ArrayList<String>(_list716.size); - String _elem717; - for (int _i718 = 0; _i718 < _list716.size; ++_i718) ++ org.apache.thrift.protocol.TList _list724 = iprot.readListBegin(); ++ struct.success = new ArrayList<String>(_list724.size); ++ String _elem725; ++ for (int _i726 = 0; _i726 < _list724.size; ++_i726) + { - _elem717 = iprot.readString(); - struct.success.add(_elem717); ++ _elem725 = iprot.readString(); ++ struct.success.add(_elem725); + } + iprot.readListEnd(); + } + struct.setSuccessIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 1: // O1 + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.o1 = new MetaException(); + struct.o1.read(iprot); + struct.setO1IsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + default: + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + iprot.readFieldEnd(); + } + iprot.readStructEnd(); + struct.validate(); + } + + public void write(org.apache.thrift.protocol.TProtocol oprot, get_tables_result struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.success != null) { + oprot.writeFieldBegin(SUCCESS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); - for (String _iter719 : struct.success) ++ for (String _iter727 : struct.success) + { - oprot.writeString(_iter719); ++ oprot.writeString(_iter727); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.o1 != null) { + oprot.writeFieldBegin(O1_FIELD_DESC); + struct.o1.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class get_tables_resultTupleSchemeFactory implements SchemeFactory { + public get_tables_resultTupleScheme getScheme() { + return new get_tables_resultTupleScheme(); + } + } + + private static class get_tables_resultTupleScheme extends TupleScheme<get_tables_result> { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, get_tables_result struct) throws org.apache.thrift.TException { + TTupleProtocol oprot = (TTupleProtocol) prot; + BitSet optionals = new BitSet(); + if (struct.isSetSuccess()) { + optionals.set(0); + } + if (struct.isSetO1()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetSuccess()) { + { + oprot.writeI32(struct.success.size()); - for (String _iter720 : struct.success) ++ for (String _iter728 : struct.success) + { - oprot.writeString(_iter720); ++ oprot.writeString(_iter728); + } + } + } + if (struct.isSetO1()) { + struct.o1.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, get_tables_result struct) throws org.apache.thrift.TException { + TTupleProtocol iprot = (TTupleProtocol) prot; + BitSet incoming = iprot.readBitSet(2); + if (incoming.get(0)) { + { - org.apache.thrift.protocol.TList _list721 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.success = new ArrayList<String>(_list721.size); - String _elem722; - for (int _i723 = 0; _i723 < _list721.size; ++_i723) ++ org.apache.thrift.protocol.TList _list729 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.success = new ArrayList<String>(_list729.size); ++ String _elem730; ++ for (int _i731 = 0; _i731 < _list729.size; ++_i731) + { - _elem722 = iprot.readString(); - struct.success.add(_elem722); ++ _elem730 = iprot.readString(); ++ struct.success.add(_elem730); + } + } + struct.setSuccessIsSet(true); + } + if (incoming.get(1)) { + struct.o1 = new MetaException(); + struct.o1.read(iprot); + struct.setO1IsSet(true); + } + } + } + + } + + public static class get_tables_by_type_args implements org.apache.thrift.TBase<get_tables_by_type_args, get_tables_by_type_args._Fields>, java.io.Serializable, Cloneable, Comparable<get_tables_by_type_args> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("get_tables_by_type_args"); + + private static final org.apache.thrift.protocol.TField DB_NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("db_name", org.apache.thrift.protocol.TType.STRING, (short)1); + private static final org.apache.thrift.protocol.TField PATTERN_FIELD_DESC = new org.apache.thrift.protocol.TField("pattern", org.apache.thrift.protocol.TType.STRING, (short)2); + private static final org.apache.thrift.protocol.TField TABLE_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("tableType", org.apache.thrift.protocol.TType.STRING, (short)3); + + private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); + static { + schemes.put(StandardScheme.class, new get_tables_by_type_argsStandardSchemeFactory()); + schemes.put(TupleScheme.class, new get_tables_by_type_argsTupleSchemeFactory()); + } + + private String db_name; // required + private String pattern; // required + private String tableType; // required + + /** The set of fields this struct contains, along with convenience methods for finding and manipulating them. */ + public enum _Fields implements org.apache.thrift.TFieldIdEnum { + DB_NAME((short)1, "db_name"), + PATTERN((short)2, "pattern"), + TABLE_TYPE((short)3, "tableType"); + + private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); + + static { + for (_Fields field : EnumSet.allOf(_Fields.class)) { + byName.put(field.getFieldName(), field); + } + } + + /** + * Find the _Fields constant that matches fieldId, or null if its not found. + */ + public static _Fields findByThriftId(int fieldId) { + switch(fieldId) { + case 1: // DB_NAME + return DB_NAME; + case 2: // PATTERN + return PATTERN; + case 3: // TABLE_TYPE + return TABLE_TYPE; + default: + return null; + } + } + + /** + * Find the _Fields constant that matches fieldId, throwing an exception + * if it is not found. + */ + public static _Fields findByThriftIdOrThrow(int fieldId) { + _Fields fields = findByThriftId(fieldId); + if (fields == null) throw new IllegalArgumentException("Field " + fieldId + " doesn't exist!"); + return fields; + } + + /** + * Find the _Fields constant that matches name, or null if its not found. + */ + public static _Fields findByName(String name) { + return byName.get(name); + } + + private final short _thriftId; + private final String _fieldName; + + _Fields(short thriftId, String fieldName) { + _thriftId = thriftId; + _fieldName = fieldName; + } + + public short getThriftFieldId() { + return _thriftId; + } + + public String getFieldName() { + return _fieldName; + } + } + + // isset id assignments + public static final Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> metaDataMap; + static { + Map<_Fields, org.apache.thrift.meta_data.FieldMetaData> tmpMap = new EnumMap<_Fields, org.apache.thrift.meta_data.FieldMetaData>(_Fields.class); + tmpMap.put(_Fields.DB_NAME, new org.apache.thrift.meta_data.FieldMetaData("db_name", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.PATTERN, new org.apache.thrift.meta_data.FieldMetaData("pattern", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.TABLE_TYPE, new org.apache.thrift.meta_data.FieldMetaData("tableType", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + metaDataMap = Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(get_tables_by_type_args.class, metaDataMap); + } + + public get_tables_by_type_args() { + } + + public get_tables_by_type_args( + String db_name, + String pattern, + String tableType) + { + this(); + this.db_name = db_name; + this.pattern = pattern; + this.tableType = tableType; + } + + /** + * Performs a deep copy on <i>other</i>. + */ + public get_tables_by_type_args(get_tables_by_type_args other) { + if (other.isSetDb_name()) { + this.db_name = other.db_name; + } + if (other.isSetPattern()) { + this.pattern = other.pattern; + } + if (other.isSetTableType()) { + this.tableType = other.tableType; + } + } + + public get_tables_by_type_args deepCopy() { + return new get_tables_by_type_args(this); + } + + @Override + public void clear() { + this.db_name = null; + this.pattern = null; + this.tableType = null; + } + + public String getDb_name() { + return this.db_name; + } + + public void setDb_name(String db_name) { + this.db_name = db_name; + } + + public void unsetDb_name() { + this.db_name = null; + } + + /** Returns true if field db_name is set (has been assigned a value) and false otherwise */ + public boolean isSetDb_name() { + return this.db_name != null; + } + + public void setDb_nameIsSet(boolean value) { + if (!value) { + this.db_name = null; + } + } + + public String getPattern() { + return this.pattern; + } + + public void setPattern(String pattern) { + this.pattern = pattern; + } + + public void unsetPattern() { + this.pattern = null; + } + + /** Returns true if field pattern is set (has been assigned a value) and false otherwise */ + public boolean isSetPattern() { + return this.pattern != null; + } + + public void setPatternIsSet(boolean value) { + if (!value) { + this.pattern = null; + } + } + + public String getTableType() { + return this.tableType; + } + + public void setTableType(String tableType) { + this.tableType = tableType; + } + + public void unsetTableType() { + this.tableType = null; + } + + /** Returns true if field tableType is set (has been assigned a value) and false otherwise */ + public boolean isSetTableType() { + return this.tableType != null; + } + + public void setTableTypeIsSet(boolean value) { + if (!value) { + this.tableType = null; + } + } + + public void setFieldValue(_Fields field, Object value) { + switch (field) { + case DB_NAME: + if (value == null) { + unsetDb_name(); + } else { + setDb_name((String)value); + } + break; + + case PATTERN: + if (value == null) { + unsetPattern(); + } else { + setPattern((String)value); + } + break; + + case TABLE_TYPE: + if (value == null) { + unsetTableType(); + } else { + setTableType((String)value); + } + break; + + } + } + + public Object getFieldValue(_Fields field) { + switch (field) { + case DB_NAME: + return getDb_name(); + + case PATTERN: + return getPattern(); + + case TABLE_TYPE: + return getTableType(); + + } + throw new IllegalStateException(); + } + + /** Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise */ + public boolean isSet(_Fields field) { + if (field == null) { + throw new IllegalArgumentException(); + } + + switch (field) { + case DB_NAME: + return isSetDb_name(); + case PATTERN: + return isSetPattern(); + case TABLE_TYPE: + return isSetTableType(); + } + throw new IllegalStateException(); + } + + @Override + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof get_tables_by_type_args) + return this.equals((get_tables_by_type_args)that); return false; } @@@ -49014,13 -49718,13 +50246,13 @@@ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list724 = iprot.readListBegin(); -- struct.success = new ArrayList<String>(_list724.size); -- String _elem725; -- for (int _i726 = 0; _i726 < _list724.size; ++_i726) ++ org.apache.thrift.protocol.TList _list732 = iprot.readListBegin(); ++ struct.success = new ArrayList<String>(_list732.size); ++ String _elem733; ++ for (int _i734 = 0; _i734 < _list732.size; ++_i734) { -- _elem725 = iprot.readString(); -- struct.success.add(_elem725); ++ _elem733 = iprot.readString(); ++ struct.success.add(_elem733); } iprot.readListEnd(); } @@@ -49055,9 -49759,9 +50287,9 @@@ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); -- for (String _iter727 : struct.success) ++ for (String _iter735 : struct.success) { -- oprot.writeString(_iter727); ++ oprot.writeString(_iter735); } oprot.writeListEnd(); } @@@ -49096,9 -49800,9 +50328,9 @@@ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); -- for (String _iter728 : struct.success) ++ for (String _iter736 : struct.success) { -- oprot.writeString(_iter728); ++ oprot.writeString(_iter736); } } } @@@ -49113,13 -49817,13 +50345,13 @@@ BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list729 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.success = new ArrayList<String>(_list729.size); -- String _elem730; -- for (int _i731 = 0; _i731 < _list729.size; ++_i731) ++ org.apache.thrift.protocol.TList _list737 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.success = new ArrayList<String>(_list737.size); ++ String _elem738; ++ for (int _i739 = 0; _i739 < _list737.size; ++_i739) { -- _elem730 = iprot.readString(); -- struct.success.add(_elem730); ++ _elem738 = iprot.readString(); ++ struct.success.add(_elem738); } } struct.setSuccessIsSet(true); @@@ -49624,13 -50328,13 +50856,13 @@@ case 3: // TBL_TYPES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list732 = iprot.readListBegin(); -- struct.tbl_types = new ArrayList<String>(_list732.size); -- String _elem733; -- for (int _i734 = 0; _i734 < _list732.size; ++_i734) ++ org.apache.thrift.protocol.TList _list740 = iprot.readListBegin(); ++ struct.tbl_types = new ArrayList<String>(_list740.size); ++ String _elem741; ++ for (int _i742 = 0; _i742 < _list740.size; ++_i742) { -- _elem733 = iprot.readString(); -- struct.tbl_types.add(_elem733); ++ _elem741 = iprot.readString(); ++ struct.tbl_types.add(_elem741); } iprot.readListEnd(); } @@@ -49666,9 -50370,9 +50898,9 @@@ 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 _iter735 : struct.tbl_types) ++ for (String _iter743 : struct.tbl_types) { -- oprot.writeString(_iter735); ++ oprot.writeString(_iter743); } oprot.writeListEnd(); } @@@ -49711,9 -50415,9 +50943,9 @@@ if (struct.isSetTbl_types()) { { oprot.writeI32(struct.tbl_types.size()); -- for (String _iter736 : struct.tbl_types) ++ for (String _iter744 : struct.tbl_types) { -- oprot.writeString(_iter736); ++ oprot.writeString(_iter744); } } } @@@ -49733,13 -50437,13 +50965,13 @@@ } if (incoming.get(2)) { { -- org.apache.thrift.protocol.TList _list737 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.tbl_types = new ArrayList<String>(_list737.size); -- String _elem738; -- for (int _i739 = 0; _i739 < _list737.size; ++_i739) ++ org.apache.thrift.protocol.TList _list745 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.tbl_types = new ArrayList<String>(_list745.size); ++ String _elem746; ++ for (int _i747 = 0; _i747 < _list745.size; ++_i747) { -- _elem738 = iprot.readString(); -- struct.tbl_types.add(_elem738); ++ _elem746 = iprot.readString(); ++ struct.tbl_types.add(_elem746); } } struct.setTbl_typesIsSet(true); @@@ -50145,14 -50849,14 +51377,14 @@@ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list740 = iprot.readListBegin(); -- struct.success = new ArrayList<TableMeta>(_list740.size); -- TableMeta _elem741; -- for (int _i742 = 0; _i742 < _list740.size; ++_i742) ++ org.apache.thrift.protocol.TList _list748 = iprot.readListBegin(); ++ struct.success = new ArrayList<TableMeta>(_list748.size); ++ TableMeta _elem749; ++ for (int _i750 = 0; _i750 < _list748.size; ++_i750) { -- _elem741 = new TableMeta(); -- _elem741.read(iprot); -- struct.success.add(_elem741); ++ _elem749 = new TableMeta(); ++ _elem749.read(iprot); ++ struct.success.add(_elem749); } iprot.readListEnd(); } @@@ -50187,9 -50891,9 +51419,9 @@@ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); -- for (TableMeta _iter743 : struct.success) ++ for (TableMeta _iter751 : struct.success) { -- _iter743.write(oprot); ++ _iter751.write(oprot); } oprot.writeListEnd(); } @@@ -50228,9 -50932,9 +51460,9 @@@ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); -- for (TableMeta _iter744 : struct.success) ++ for (TableMeta _iter752 : struct.success) { -- _iter744.write(oprot); ++ _iter752.write(oprot); } } } @@@ -50245,14 -50949,14 +51477,14 @@@ BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list745 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); -- struct.success = new ArrayList<TableMeta>(_list745.size); -- TableMeta _elem746; -- for (int _i747 = 0; _i747 < _list745.size; ++_i747) ++ org.apache.thrift.protocol.TList _list753 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); ++ struct.success = new ArrayList<TableMeta>(_list753.size); ++ TableMeta _elem754; ++ for (int _i755 = 0; _i755 < _list753.size; ++_i755) { -- _elem746 = new TableMeta(); -- _elem746.read(iprot); -- struct.success.add(_elem746); ++ _elem754 = new TableMeta(); ++ _elem754.read(iprot); ++ struct.success.add(_elem754); } } struct.setSuccessIsSet(true); @@@ -51018,13 -51722,13 +52250,13 @@@ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list748 = iprot.readListBegin(); -- struct.success = new ArrayList<String>(_list748.size); -- String _elem749; -- for (int _i750 = 0; _i750 < _list748.size; ++_i750) ++ org.apache.thrift.protocol.TList _list756 = iprot.readListBegin(); ++ struct.success = new ArrayList<String>(_list756.size); ++ String _elem757; ++ for (int _i758 = 0; _i758 < _list756.size; ++_i758) { -- _elem749 = iprot.readString(); -- struct.success.add(_elem749); ++ _elem757 = iprot.readString(); ++ struct.success.add(_elem757); } iprot.readListEnd(); } @@@ -51059,9 -51763,9 +52291,9 @@@ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); -- for (String _iter751 : struct.success) ++ for (String _iter759 : struct.success) { -- oprot.writeString(_iter751); ++ oprot.writeString(_iter759); } oprot.writeListEnd(); } @@@ -51100,9 -51804,9 +52332,9 @@@ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); -- for (String _iter752 : struct.success) ++ for (String _iter760 : struct.success) { -- oprot.writeString(_iter752); ++ oprot.writeString(_iter760); } } } @@@ -51117,13 -51821,13 +52349,13 @@@ BitSet incoming = iprot.readBitSet(2); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list753 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.success = new ArrayList<String>(_list753.size); -- String _elem754; -- for (int _i755 = 0; _i755 < _list753.size; ++_i755) ++ org.apache.thrift.protocol.TList _list761 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.success = new ArrayList<String>(_list761.size); ++ String _elem762; ++ for (int _i763 = 0; _i763 < _list761.size; ++_i763) { -- _elem754 = iprot.readString(); -- struct.success.add(_elem754); ++ _elem762 = iprot.readString(); ++ struct.success.add(_elem762); } } struct.setSuccessIsSet(true); @@@ -52576,13 -53280,13 +53808,13 @@@ case 2: // TBL_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list756 = iprot.readListBegin(); -- struct.tbl_names = new ArrayList<String>(_list756.size); -- String _elem757; -- for (int _i758 = 0; _i758 < _list756.size; ++_i758) ++ org.apache.thrift.protocol.TList _list764 = iprot.readListBegin(); ++ struct.tbl_names = new ArrayList<String>(_list764.size); ++ String _elem765; ++ for (int _i766 = 0; _i766 < _list764.size; ++_i766) { -- _elem757 = iprot.readString(); -- struct.tbl_names.add(_elem757); ++ _elem765 = iprot.readString(); ++ struct.tbl_names.add(_elem765); } iprot.readListEnd(); } @@@ -52613,9 -53317,9 +53845,9 @@@ 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 _iter759 : struct.tbl_names) ++ for (String _iter767 : struct.tbl_names) { -- oprot.writeString(_iter759); ++ oprot.writeString(_iter767); } oprot.writeListEnd(); } @@@ -52652,9 -53356,9 +53884,9 @@@ if (struct.isSetTbl_names()) { { oprot.writeI32(struct.tbl_names.size()); -- for (String _iter760 : struct.tbl_names) ++ for (String _iter768 : struct.tbl_names) { -- oprot.writeString(_iter760); ++ oprot.writeString(_iter768); } } } @@@ -52670,13 -53374,13 +53902,13 @@@ } if (incoming.get(1)) { { -- org.apache.thrift.protocol.TList _list761 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.tbl_names = new ArrayList<String>(_list761.size); -- String _elem762; -- for (int _i763 = 0; _i763 < _list761.size; ++_i763) ++ org.apache.thrift.protocol.TList _list769 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.tbl_names = new ArrayList<String>(_list769.size); ++ String _elem770; ++ for (int _i771 = 0; _i771 < _list769.size; ++_i771) { -- _elem762 = iprot.readString(); -- struct.tbl_names.add(_elem762); ++ _elem770 = iprot.readString(); ++ struct.tbl_names.add(_elem770); } } struct.setTbl_namesIsSet(true); @@@ -53244,14 -53948,14 +54476,14 @@@ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list764 = iprot.readListBegin(); -- struct.success = new ArrayList<Table>(_list764.size); -- Table _elem765; -- for (int _i766 = 0; _i766 < _list764.size; ++_i766) ++ org.apache.thrift.protocol.TList _list772 = iprot.readListBegin(); ++ struct.success = new ArrayList<Table>(_list772.size); ++ Table _elem773; ++ for (int _i774 = 0; _i774 < _list772.size; ++_i774) { -- _elem765 = new Table(); -- _elem765.read(iprot); -- struct.success.add(_elem765); ++ _elem773 = new Table(); ++ _elem773.read(iprot); ++ struct.success.add(_elem773); } iprot.readListEnd(); } @@@ -53304,9 -54008,9 +54536,9 @@@ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); -- for (Table _iter767 : struct.success) ++ for (Table _iter775 : struct.success) { -- _iter767.write(oprot); ++ _iter775.write(oprot); } oprot.writeListEnd(); } @@@ -53361,9 -54065,9 +54593,9 @@@ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); -- for (Table _iter768 : struct.success) ++ for (Table _iter776 : struct.success) { -- _iter768.write(oprot); ++ _iter776.write(oprot); } } } @@@ -53384,14 -54088,14 +54616,14 @@@ BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list769 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); -- struct.success = new ArrayList<Table>(_list769.size); -- Table _elem770; -- for (int _i771 = 0; _i771 < _list769.size; ++_i771) ++ org.apache.thrift.protocol.TList _list777 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); ++ struct.success = new ArrayList<Table>(_list777.size); ++ Table _elem778; ++ for (int _i779 = 0; _i779 < _list777.size; ++_i779) { -- _elem770 = new Table(); -- _elem770.read(iprot); -- struct.success.add(_elem770); ++ _elem778 = new Table(); ++ _elem778.read(iprot); ++ struct.success.add(_elem778); } } struct.setSuccessIsSet(true); @@@ -54537,13 -55241,13 +55769,13 @@@ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list772 = iprot.readListBegin(); -- struct.success = new ArrayList<String>(_list772.size); -- String _elem773; -- for (int _i774 = 0; _i774 < _list772.size; ++_i774) ++ org.apache.thrift.protocol.TList _list780 = iprot.readListBegin(); ++ struct.success = new ArrayList<String>(_list780.size); ++ String _elem781; ++ for (int _i782 = 0; _i782 < _list780.size; ++_i782) { -- _elem773 = iprot.readString(); -- struct.success.add(_elem773); ++ _elem781 = iprot.readString(); ++ struct.success.add(_elem781); } iprot.readListEnd(); } @@@ -54596,9 -55300,9 +55828,9 @@@ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.success.size())); -- for (String _iter775 : struct.success) ++ for (String _iter783 : struct.success) { -- oprot.writeString(_iter775); ++ oprot.writeString(_iter783); } oprot.writeListEnd(); } @@@ -54653,9 -55357,9 +55885,9 @@@ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); -- for (String _iter776 : struct.success) ++ for (String _iter784 : struct.success) { -- oprot.writeString(_iter776); ++ oprot.writeString(_iter784); } } } @@@ -54676,13 -55380,13 +55908,13 @@@ BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list777 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.success = new ArrayList<String>(_list777.size); -- String _elem778; -- for (int _i779 = 0; _i779 < _list777.size; ++_i779) ++ org.apache.thrift.protocol.TList _list785 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.success = new ArrayList<String>(_list785.size); ++ String _elem786; ++ for (int _i787 = 0; _i787 < _list785.size; ++_i787) { -- _elem778 = iprot.readString(); -- struct.success.add(_elem778); ++ _elem786 = iprot.readString(); ++ struct.success.add(_elem786); } } struct.setSuccessIsSet(true); @@@ -60541,14 -61245,14 +61773,14 @@@ case 1: // NEW_PARTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list780 = iprot.readListBegin(); -- struct.new_parts = new ArrayList<Partition>(_list780.size); -- Partition _elem781; -- for (int _i782 = 0; _i782 < _list780.size; ++_i782) ++ org.apache.thrift.protocol.TList _list788 = iprot.readListBegin(); ++ struct.new_parts = new ArrayList<Partition>(_list788.size); ++ Partition _elem789; ++ for (int _i790 = 0; _i790 < _list788.size; ++_i790) { -- _elem781 = new Partition(); -- _elem781.read(iprot); -- struct.new_parts.add(_elem781); ++ _elem789 = new Partition(); ++ _elem789.read(iprot); ++ struct.new_parts.add(_elem789); } iprot.readListEnd(); } @@@ -60574,9 -61278,9 +61806,9 @@@ 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 _iter783 : struct.new_parts) ++ for (Partition _iter791 : struct.new_parts) { -- _iter783.write(oprot); ++ _iter791.write(oprot); } oprot.writeListEnd(); } @@@ -60607,9 -61311,9 +61839,9 @@@ if (struct.isSetNew_parts()) { { oprot.writeI32(struct.new_parts.size()); -- for (Partition _iter784 : struct.new_parts) ++ for (Partition _iter792 : struct.new_parts) { -- _iter784.write(oprot); ++ _iter792.write(oprot); } } } @@@ -60621,14 -61325,14 +61853,14 @@@ BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list785 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); -- struct.new_parts = new ArrayList<Partition>(_list785.size); -- Partition _elem786; -- for (int _i787 = 0; _i787 < _list785.size; ++_i787) ++ org.apache.thrift.protocol.TList _list793 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); ++ struct.new_parts = new ArrayList<Partition>(_list793.size); ++ Partition _elem794; ++ for (int _i795 = 0; _i795 < _list793.size; ++_i795) { -- _elem786 = new Partition(); -- _elem786.read(iprot); -- struct.new_parts.add(_elem786); ++ _elem794 = new Partition(); ++ _elem794.read(iprot); ++ struct.new_parts.add(_elem794); } } struct.setNew_partsIsSet(true); @@@ -61629,14 -62333,14 +62861,14 @@@ case 1: // NEW_PARTS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list788 = iprot.readListBegin(); -- struct.new_parts = new ArrayList<PartitionSpec>(_list788.size); -- PartitionSpec _elem789; -- for (int _i790 = 0; _i790 < _list788.size; ++_i790) ++ org.apache.thrift.protocol.TList _list796 = iprot.readListBegin(); ++ struct.new_parts = new ArrayList<PartitionSpec>(_list796.size); ++ PartitionSpec _elem797; ++ for (int _i798 = 0; _i798 < _list796.size; ++_i798) { -- _elem789 = new PartitionSpec(); -- _elem789.read(iprot); -- struct.new_parts.add(_elem789); ++ _elem797 = new PartitionSpec(); ++ _elem797.read(iprot); ++ struct.new_parts.add(_elem797); } iprot.readListEnd(); } @@@ -61662,9 -62366,9 +62894,9 @@@ 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 _iter791 : struct.new_parts) ++ for (PartitionSpec _iter799 : struct.new_parts) { -- _iter791.write(oprot); ++ _iter799.write(oprot); } oprot.writeListEnd(); } @@@ -61695,9 -62399,9 +62927,9 @@@ if (struct.isSetNew_parts()) { { oprot.writeI32(struct.new_parts.size()); -- for (PartitionSpec _iter792 : struct.new_parts) ++ for (PartitionSpec _iter800 : struct.new_parts) { -- _iter792.write(oprot); ++ _iter800.write(oprot); } } } @@@ -61709,14 -62413,14 +62941,14 @@@ BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list793 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); -- struct.new_parts = new ArrayList<PartitionSpec>(_list793.size); -- PartitionSpec _elem794; -- for (int _i795 = 0; _i795 < _list793.size; ++_i795) ++ org.apache.thrift.protocol.TList _list801 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); ++ struct.new_parts = new ArrayList<PartitionSpec>(_list801.size); ++ PartitionSpec _elem802; ++ for (int _i803 = 0; _i803 < _list801.size; ++_i803) { -- _elem794 = new PartitionSpec(); -- _elem794.read(iprot); -- struct.new_parts.add(_elem794); ++ _elem802 = new PartitionSpec(); ++ _elem802.read(iprot); ++ struct.new_parts.add(_elem802); } } struct.setNew_partsIsSet(true); @@@ -62892,13 -63596,13 +64124,13 @@@ case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list796 = iprot.readListBegin(); -- struct.part_vals = new ArrayList<String>(_list796.size); -- String _elem797; -- for (int _i798 = 0; _i798 < _list796.size; ++_i798) ++ org.apache.thrift.protocol.TList _list804 = iprot.readListBegin(); ++ struct.part_vals = new ArrayList<String>(_list804.size); ++ String _elem805; ++ for (int _i806 = 0; _i806 < _list804.size; ++_i806) { -- _elem797 = iprot.readString(); -- struct.part_vals.add(_elem797); ++ _elem805 = iprot.readString(); ++ struct.part_vals.add(_elem805); } iprot.readListEnd(); } @@@ -62934,9 -63638,9 +64166,9 @@@ 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 _iter799 : struct.part_vals) ++ for (String _iter807 : struct.part_vals) { -- oprot.writeString(_iter799); ++ oprot.writeString(_iter807); } oprot.writeListEnd(); } @@@ -62979,9 -63683,9 +64211,9 @@@ if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); -- for (String _iter800 : struct.part_vals) ++ for (String _iter808 : struct.part_vals) { -- oprot.writeString(_iter800); ++ oprot.writeString(_iter808); } } } @@@ -63001,13 -63705,13 +64233,13 @@@ } if (incoming.get(2)) { { -- org.apache.thrift.protocol.TList _list801 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.part_vals = new ArrayList<String>(_list801.size); -- String _elem802; -- for (int _i803 = 0; _i803 < _list801.size; ++_i803) ++ org.apache.thrift.protocol.TList _list809 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.part_vals = new ArrayList<String>(_list809.size); ++ String _elem810; ++ for (int _i811 = 0; _i811 < _list809.size; ++_i811) { -- _elem802 = iprot.readString(); -- struct.part_vals.add(_elem802); ++ _elem810 = iprot.readString(); ++ struct.part_vals.add(_elem810); } } struct.setPart_valsIsSet(true); @@@ -65316,13 -66020,13 +66548,13 @@@ case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list804 = iprot.readListBegin(); -- struct.part_vals = new ArrayList<String>(_list804.size); -- String _elem805; -- for (int _i806 = 0; _i806 < _list804.size; ++_i806) ++ org.apache.thrift.protocol.TList _list812 = iprot.readListBegin(); ++ struct.part_vals = new ArrayList<String>(_list812.size); ++ String _elem813; ++ for (int _i814 = 0; _i814 < _list812.size; ++_i814) { -- _elem805 = iprot.readString(); -- struct.part_vals.add(_elem805); ++ _elem813 = iprot.readString(); ++ struct.part_vals.add(_elem813); } iprot.readListEnd(); } @@@ -65367,9 -66071,9 +66599,9 @@@ 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 _iter807 : struct.part_vals) ++ for (String _iter815 : struct.part_vals) { -- oprot.writeString(_iter807); ++ oprot.writeString(_iter815); } oprot.writeListEnd(); } @@@ -65420,9 -66124,9 +66652,9 @@@ if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); -- for (String _iter808 : struct.part_vals) ++ for (String _iter816 : struct.part_vals) { -- oprot.writeString(_iter808); ++ oprot.writeString(_iter816); } } } @@@ -65445,13 -66149,13 +66677,13 @@@ } if (incoming.get(2)) { { -- org.apache.thrift.protocol.TList _list809 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.part_vals = new ArrayList<String>(_list809.size); -- String _elem810; -- for (int _i811 = 0; _i811 < _list809.size; ++_i811) ++ org.apache.thrift.protocol.TList _list817 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.part_vals = new ArrayList<String>(_list817.size); ++ String _elem818; ++ for (int _i819 = 0; _i819 < _list817.size; ++_i819) { -- _elem810 = iprot.readString(); -- struct.part_vals.add(_elem810); ++ _elem818 = iprot.readString(); ++ struct.part_vals.add(_elem818); } } struct.setPart_valsIsSet(true); @@@ -69321,13 -70025,13 +70553,13 @@@ case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list812 = iprot.readListBegin(); -- struct.part_vals = new ArrayList<String>(_list812.size); -- String _elem813; -- for (int _i814 = 0; _i814 < _list812.size; ++_i814) ++ org.apache.thrift.protocol.TList _list820 = iprot.readListBegin(); ++ struct.part_vals = new ArrayList<String>(_list820.size); ++ String _elem821; ++ for (int _i822 = 0; _i822 < _list820.size; ++_i822) { -- _elem813 = iprot.readString(); -- struct.part_vals.add(_elem813); ++ _elem821 = iprot.readString(); ++ struct.part_vals.add(_elem821); } iprot.readListEnd(); } @@@ -69371,9 -70075,9 +70603,9 @@@ 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 _iter815 : struct.part_vals) ++ for (String _iter823 : struct.part_vals) { -- oprot.writeString(_iter815); ++ oprot.writeString(_iter823); } oprot.writeListEnd(); } @@@ -69422,9 -70126,9 +70654,9 @@@ if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); -- for (String _iter816 : struct.part_vals) ++ for (String _iter824 : struct.part_vals) { -- oprot.writeString(_iter816); ++ oprot.writeString(_iter824); } } } @@@ -69447,13 -70151,13 +70679,13 @@@ } if (incoming.get(2)) { { -- org.apache.thrift.protocol.TList _list817 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.part_vals = new ArrayList<String>(_list817.size); -- String _elem818; -- for (int _i819 = 0; _i819 < _list817.size; ++_i819) ++ org.apache.thrift.protocol.TList _list825 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.part_vals = new ArrayList<String>(_list825.size); ++ String _elem826; ++ for (int _i827 = 0; _i827 < _list825.size; ++_i827) { -- _elem818 = iprot.readString(); -- struct.part_vals.add(_elem818); ++ _elem826 = iprot.readString(); ++ struct.part_vals.add(_elem826); } } struct.setPart_valsIsSet(true); @@@ -70692,13 -71396,13 +71924,13 @@@ case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list820 = iprot.readListBegin(); -- struct.part_vals = new ArrayList<String>(_list820.size); -- String _elem821; -- for (int _i822 = 0; _i822 < _list820.size; ++_i822) ++ org.apache.thrift.protocol.TList _list828 = iprot.readListBegin(); ++ struct.part_vals = new ArrayList<String>(_list828.size); ++ String _elem829; ++ for (int _i830 = 0; _i830 < _list828.size; ++_i830) { -- _elem821 = iprot.readString(); -- struct.part_vals.add(_elem821); ++ _elem829 = iprot.readString(); ++ struct.part_vals.add(_elem829); } iprot.readListEnd(); } @@@ -70751,9 -71455,9 +71983,9 @@@ 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 _iter823 : struct.part_vals) ++ for (String _iter831 : struct.part_vals) { -- oprot.writeString(_iter823); ++ oprot.writeString(_iter831); } oprot.writeListEnd(); } @@@ -70810,9 -71514,9 +72042,9 @@@ if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); -- for (String _iter824 : struct.part_vals) ++ for (String _iter832 : struct.part_vals) { -- oprot.writeString(_iter824); ++ oprot.writeString(_iter832); } } } @@@ -70838,13 -71542,13 +72070,13 @@@ } if (incoming.get(2)) { { -- org.apache.thrift.protocol.TList _list825 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.part_vals = new ArrayList<String>(_list825.size); -- String _elem826; -- for (int _i827 = 0; _i827 < _list825.size; ++_i827) ++ org.apache.thrift.protocol.TList _list833 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.part_vals = new ArrayList<String>(_list833.size); ++ String _elem834; ++ for (int _i835 = 0; _i835 < _list833.size; ++_i835) { -- _elem826 = iprot.readString(); -- struct.part_vals.add(_elem826); ++ _elem834 = iprot.readString(); ++ struct.part_vals.add(_elem834); } } struct.setPart_valsIsSet(true); @@@ -75446,13 -76150,13 +76678,13 @@@ case 3: // PART_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list828 = iprot.readListBegin(); -- struct.part_vals = new ArrayList<String>(_list828.size); -- String _elem829; -- for (int _i830 = 0; _i830 < _list828.size; ++_i830) ++ org.apache.thrift.protocol.TList _list836 = iprot.readListBegin(); ++ struct.part_vals = new ArrayList<String>(_list836.size); ++ String _elem837; ++ for (int _i838 = 0; _i838 < _list836.size; ++_i838) { -- _elem829 = iprot.readString(); -- struct.part_vals.add(_elem829); ++ _elem837 = iprot.readString(); ++ struct.part_vals.add(_elem837); } iprot.readListEnd(); } @@@ -75488,9 -76192,9 +76720,9 @@@ 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 _iter831 : struct.part_vals) ++ for (String _iter839 : struct.part_vals) { -- oprot.writeString(_iter831); ++ oprot.writeString(_iter839); } oprot.writeListEnd(); } @@@ -75533,9 -76237,9 +76765,9 @@@ if (struct.isSetPart_vals()) { { oprot.writeI32(struct.part_vals.size()); -- for (String _iter832 : struct.part_vals) ++ for (String _iter840 : struct.part_vals) { -- oprot.writeString(_iter832); ++ oprot.writeString(_iter840); } } } @@@ -75555,13 -76259,13 +76787,13 @@@ } if (incoming.get(2)) { { -- org.apache.thrift.protocol.TList _list833 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.part_vals = new ArrayList<String>(_list833.size); -- String _elem834; -- for (int _i835 = 0; _i835 < _list833.size; ++_i835) ++ org.apache.thrift.protocol.TList _list841 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.part_vals = new ArrayList<String>(_list841.size); ++ String _elem842; ++ for (int _i843 = 0; _i843 < _list841.size; ++_i843) { -- _elem834 = iprot.readString(); -- struct.part_vals.add(_elem834); ++ _elem842 = iprot.readString(); ++ struct.part_vals.add(_elem842); } } struct.setPart_valsIsSet(true); @@@ -76779,15 -77483,15 +78011,15 @@@ case 1: // PARTITION_SPECS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { -- org.apache.thrift.protocol.TMap _map836 = iprot.readMapBegin(); -- struct.partitionSpecs = new HashMap<String,String>(2*_map836.size); -- String _key837; -- String _val838; -- for (int _i839 = 0; _i839 < _map836.size; ++_i839) ++ org.apache.thrift.protocol.TMap _map844 = iprot.readMapBegin(); ++ struct.partitionSpecs = new HashMap<String,String>(2*_map844.size); ++ String _key845; ++ String _val846; ++ for (int _i847 = 0; _i847 < _map844.size; ++_i847) { -- _key837 = iprot.readString(); -- _val838 = iprot.readString(); -- struct.partitionSpecs.put(_key837, _val838); ++ _key845 = iprot.readString(); ++ _val846 = iprot.readString(); ++ struct.partitionSpecs.put(_key845, _val846); } iprot.readMapEnd(); } @@@ -76845,10 -77549,10 +78077,10 @@@ oprot.writeFieldBegin(PARTITION_SPECS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.partitionSpecs.size())); -- for (Map.Entry<String, String> _iter840 : struct.partitionSpecs.entrySet()) ++ for (Map.Entry<String, String> _iter848 : struct.partitionSpecs.entrySet()) { -- oprot.writeString(_iter840.getKey()); -- oprot.writeString(_iter840.getValue()); ++ oprot.writeString(_iter848.getKey()); ++ oprot.writeString(_iter848.getValue()); } oprot.writeMapEnd(); } @@@ -76911,10 -77615,10 +78143,10 @@@ if (struct.isSetPartitionSpecs()) { { oprot.writeI32(struct.partitionSpecs.size()); -- for (Map.Entry<String, String> _iter841 : struct.partitionSpecs.entrySet()) ++ for (Map.Entry<String, String> _iter849 : struct.partitionSpecs.entrySet()) { -- oprot.writeString(_iter841.getKey()); -- oprot.writeString(_iter841.getValue()); ++ oprot.writeString(_iter849.getKey()); ++ oprot.writeString(_iter849.getValue()); } } } @@@ -76938,15 -77642,15 +78170,15 @@@ BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TMap _map842 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.partitionSpecs = new HashMap<String,String>(2*_map842.size); -- String _key843; -- String _val844; -- for (int _i845 = 0; _i845 < _map842.size; ++_i845) ++ org.apache.thrift.protocol.TMap _map850 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.partitionSpecs = new HashMap<String,String>(2*_map850.size); ++ String _key851; ++ String _val852; ++ for (int _i853 = 0; _i853 < _map850.size; ++_i853) { -- _key843 = iprot.readString(); -- _val844 = iprot.readString(); -- struct.partitionSpecs.put(_key843, _val844); ++ _key851 = iprot.readString(); ++ _val852 = iprot.readString(); ++ struct.partitionSpecs.put(_key851, _val852); } } struct.setPartitionSpecsIsSet(true); @@@ -78392,15 -79096,15 +79624,15 @@@ case 1: // PARTITION_SPECS if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { -- org.apache.thrift.protocol.TMap _map846 = iprot.readMapBegin(); -- struct.partitionSpecs = new HashMap<String,String>(2*_map846.size); -- String _key847; -- String _val848; -- for (int _i849 = 0; _i849 < _map846.size; ++_i849) ++ org.apache.thrift.protocol.TMap _map854 = iprot.readMapBegin(); ++ struct.partitionSpecs = new HashMap<String,String>(2*_map854.size); ++ String _key855; ++ String _val856; ++ for (int _i857 = 0; _i857 < _map854.size; ++_i857) { -- _key847 = iprot.readString(); -- _val848 = iprot.readString(); -- struct.partitionSpecs.put(_key847, _val848); ++ _key855 = iprot.readString(); ++ _val856 = iprot.readString(); ++ struct.partitionSpecs.put(_key855, _val856); } iprot.readMapEnd(); } @@@ -78458,10 -79162,10 +79690,10 @@@ oprot.writeFieldBegin(PARTITION_SPECS_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.partitionSpecs.size())); -- for (Map.Entry<String, String> _iter850 : struct.partitionSpecs.entrySet()) ++ for (Map.Entry<String, String> _iter858 : struct.partitionSpecs.entrySet()) { -- oprot.writeString(_iter850.getKey()); -- oprot.writeString(_iter850.getValue()); ++ oprot.writeString(_iter858.getKey()); ++ oprot.writeString(_iter858.getValue()); } oprot.writeMapEnd(); } @@@ -78524,10 -79228,10 +79756,10 @@@ if (struct.isSetPartitionSpecs()) { { oprot.writeI32(struct.partitionSpecs.size()); -- for (Map.Entry<String, String> _iter851 : struct.partitionSpecs.entrySet()) ++ for (Map.Entry<String, String> _iter859 : struct.partitionSpecs.entrySet()) { -- oprot.writeString(_iter851.getKey()); -- oprot.writeString(_iter851.getValue()); ++ oprot.writeString(_iter859.getKey()); ++ oprot.writeString(_iter859.getValue()); } } } @@@ -78551,15 -79255,15 +79783,15 @@@ BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TMap _map852 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); -- struct.partitionSpecs = new HashMap<String,String>(2*_map852.size); -- String _key853; -- String _val854; -- for (int _i855 = 0; _i855 < _map852.size; ++_i855) ++ org.apache.thrift.protocol.TMap _map860 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); ++ struct.partitionSpecs = new HashMap<String,String>(2*_map860.size); ++ String _key861; ++ String _val862; ++ for (int _i863 = 0; _i863 < _map860.size; ++_i863) { -- _key853 = iprot.readString(); -- _val854 = iprot.readString(); -- struct.partitionSpecs.put(_key853, _val854); ++ _key861 = iprot.readString(); ++ _val862 = iprot.readString(); ++ struct.partitionSpecs.put(_key861, _val862); } } struct.setPartitionSpecsIsSet(true); @@@ -79224,14 -79928,14 +80456,14 @@@ case 0: // SUCCESS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { -- org.apache.thrift.protocol.TList _list856 = iprot.readListBegin(); -- struct.success = new ArrayList<Partition>(_list856.size); -- Partition _elem857; -- for (int _i858 = 0; _i858 < _list856.size; ++_i858) ++ org.apache.thrift.protocol.TList _list864 = iprot.readListBegin(); ++ struct.success = new ArrayList<Partition>(_list864.size); ++ Partition _elem865; ++ for (int _i866 = 0; _i866 < _list864.size; ++_i866) { -- _elem857 = new Partition(); -- _elem857.read(iprot); -- struct.success.add(_elem857); ++ _elem865 = new Partition(); ++ _elem865.read(iprot); ++ struct.success.add(_elem865); } iprot.readListEnd(); } @@@ -79293,9 -79997,9 +80525,9 @@@ oprot.writeFieldBegin(SUCCESS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.success.size())); -- for (Partition _iter859 : struct.success) ++ for (Partition _iter867 : struct.success) { -- _iter859.write(oprot); ++ _iter867.write(oprot); } oprot.writeListEnd(); } @@@ -79358,9 -80062,9 +80590,9 @@@ if (struct.isSetSuccess()) { { oprot.writeI32(struct.success.size()); -- for (Partition _iter860 : struct.success) ++ for (Partition _iter868 : struct.success) { -- _iter860.write(oprot); ++ _iter868.write(oprot); } } } @@@ -79384,14 -80088,14 +80616,14 @@@ BitSet incoming = iprot.readBitSet(5); if (incoming.get(0)) { { -- org.apache.thrift.protocol.TList _list861 = new org.apache.thrif
<TRUNCATED>
