http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java index 95ea81f..e6b0fd5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CommitTxnRequest.java @@ -42,6 +42,7 @@ import org.slf4j.LoggerFactory; private static final org.apache.thrift.protocol.TField REPL_POLICY_FIELD_DESC = new org.apache.thrift.protocol.TField("replPolicy", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField WRITE_EVENT_INFOS_FIELD_DESC = new org.apache.thrift.protocol.TField("writeEventInfos", org.apache.thrift.protocol.TType.LIST, (short)3); private static final org.apache.thrift.protocol.TField KEY_VALUE_FIELD_DESC = new org.apache.thrift.protocol.TField("keyValue", org.apache.thrift.protocol.TType.STRUCT, (short)4); + private static final org.apache.thrift.protocol.TField REPL_LAST_ID_INFO_FIELD_DESC = new org.apache.thrift.protocol.TField("replLastIdInfo", org.apache.thrift.protocol.TType.STRUCT, (short)5); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { @@ -53,13 +54,15 @@ import org.slf4j.LoggerFactory; private String replPolicy; // optional private List<WriteEventInfo> writeEventInfos; // optional private CommitTxnKeyValue keyValue; // optional + private ReplLastIdInfo replLastIdInfo; // 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 { TXNID((short)1, "txnid"), REPL_POLICY((short)2, "replPolicy"), WRITE_EVENT_INFOS((short)3, "writeEventInfos"), - KEY_VALUE((short)4, "keyValue"); + KEY_VALUE((short)4, "keyValue"), + REPL_LAST_ID_INFO((short)5, "replLastIdInfo"); private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); @@ -82,6 +85,8 @@ import org.slf4j.LoggerFactory; return WRITE_EVENT_INFOS; case 4: // KEY_VALUE return KEY_VALUE; + case 5: // REPL_LAST_ID_INFO + return REPL_LAST_ID_INFO; default: return null; } @@ -124,7 +129,7 @@ import org.slf4j.LoggerFactory; // isset id assignments private static final int __TXNID_ISSET_ID = 0; private byte __isset_bitfield = 0; - private static final _Fields optionals[] = {_Fields.REPL_POLICY,_Fields.WRITE_EVENT_INFOS,_Fields.KEY_VALUE}; + private static final _Fields optionals[] = {_Fields.REPL_POLICY,_Fields.WRITE_EVENT_INFOS,_Fields.KEY_VALUE,_Fields.REPL_LAST_ID_INFO}; 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); @@ -137,6 +142,8 @@ import org.slf4j.LoggerFactory; new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT , "WriteEventInfo")))); tmpMap.put(_Fields.KEY_VALUE, new org.apache.thrift.meta_data.FieldMetaData("keyValue", org.apache.thrift.TFieldRequirementType.OPTIONAL, new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, CommitTxnKeyValue.class))); + tmpMap.put(_Fields.REPL_LAST_ID_INFO, new org.apache.thrift.meta_data.FieldMetaData("replLastIdInfo", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRUCT , "ReplLastIdInfo"))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(CommitTxnRequest.class, metaDataMap); } @@ -171,6 +178,9 @@ import org.slf4j.LoggerFactory; if (other.isSetKeyValue()) { this.keyValue = new CommitTxnKeyValue(other.keyValue); } + if (other.isSetReplLastIdInfo()) { + this.replLastIdInfo = other.replLastIdInfo; + } } public CommitTxnRequest deepCopy() { @@ -184,6 +194,7 @@ import org.slf4j.LoggerFactory; this.replPolicy = null; this.writeEventInfos = null; this.keyValue = null; + this.replLastIdInfo = null; } public long getTxnid() { @@ -292,6 +303,29 @@ import org.slf4j.LoggerFactory; } } + public ReplLastIdInfo getReplLastIdInfo() { + return this.replLastIdInfo; + } + + public void setReplLastIdInfo(ReplLastIdInfo replLastIdInfo) { + this.replLastIdInfo = replLastIdInfo; + } + + public void unsetReplLastIdInfo() { + this.replLastIdInfo = null; + } + + /** Returns true if field replLastIdInfo is set (has been assigned a value) and false otherwise */ + public boolean isSetReplLastIdInfo() { + return this.replLastIdInfo != null; + } + + public void setReplLastIdInfoIsSet(boolean value) { + if (!value) { + this.replLastIdInfo = null; + } + } + public void setFieldValue(_Fields field, Object value) { switch (field) { case TXNID: @@ -326,6 +360,14 @@ import org.slf4j.LoggerFactory; } break; + case REPL_LAST_ID_INFO: + if (value == null) { + unsetReplLastIdInfo(); + } else { + setReplLastIdInfo((ReplLastIdInfo)value); + } + break; + } } @@ -343,6 +385,9 @@ import org.slf4j.LoggerFactory; case KEY_VALUE: return getKeyValue(); + case REPL_LAST_ID_INFO: + return getReplLastIdInfo(); + } throw new IllegalStateException(); } @@ -362,6 +407,8 @@ import org.slf4j.LoggerFactory; return isSetWriteEventInfos(); case KEY_VALUE: return isSetKeyValue(); + case REPL_LAST_ID_INFO: + return isSetReplLastIdInfo(); } throw new IllegalStateException(); } @@ -415,6 +462,15 @@ import org.slf4j.LoggerFactory; return false; } + boolean this_present_replLastIdInfo = true && this.isSetReplLastIdInfo(); + boolean that_present_replLastIdInfo = true && that.isSetReplLastIdInfo(); + if (this_present_replLastIdInfo || that_present_replLastIdInfo) { + if (!(this_present_replLastIdInfo && that_present_replLastIdInfo)) + return false; + if (!this.replLastIdInfo.equals(that.replLastIdInfo)) + return false; + } + return true; } @@ -442,6 +498,11 @@ import org.slf4j.LoggerFactory; if (present_keyValue) list.add(keyValue); + boolean present_replLastIdInfo = true && (isSetReplLastIdInfo()); + list.add(present_replLastIdInfo); + if (present_replLastIdInfo) + list.add(replLastIdInfo); + return list.hashCode(); } @@ -493,6 +554,16 @@ import org.slf4j.LoggerFactory; return lastComparison; } } + lastComparison = Boolean.valueOf(isSetReplLastIdInfo()).compareTo(other.isSetReplLastIdInfo()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetReplLastIdInfo()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.replLastIdInfo, other.replLastIdInfo); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -546,6 +617,16 @@ import org.slf4j.LoggerFactory; } first = false; } + if (isSetReplLastIdInfo()) { + if (!first) sb.append(", "); + sb.append("replLastIdInfo:"); + if (this.replLastIdInfo == null) { + sb.append("null"); + } else { + sb.append(this.replLastIdInfo); + } + first = false; + } sb.append(")"); return sb.toString(); } @@ -642,6 +723,15 @@ import org.slf4j.LoggerFactory; org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 5: // REPL_LAST_ID_INFO + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.replLastIdInfo = new ReplLastIdInfo(); + struct.replLastIdInfo.read(iprot); + struct.setReplLastIdInfoIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -686,6 +776,13 @@ import org.slf4j.LoggerFactory; oprot.writeFieldEnd(); } } + if (struct.replLastIdInfo != null) { + if (struct.isSetReplLastIdInfo()) { + oprot.writeFieldBegin(REPL_LAST_ID_INFO_FIELD_DESC); + struct.replLastIdInfo.write(oprot); + oprot.writeFieldEnd(); + } + } oprot.writeFieldStop(); oprot.writeStructEnd(); } @@ -714,7 +811,10 @@ import org.slf4j.LoggerFactory; if (struct.isSetKeyValue()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetReplLastIdInfo()) { + optionals.set(3); + } + oprot.writeBitSet(optionals, 4); if (struct.isSetReplPolicy()) { oprot.writeString(struct.replPolicy); } @@ -730,6 +830,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetKeyValue()) { struct.keyValue.write(oprot); } + if (struct.isSetReplLastIdInfo()) { + struct.replLastIdInfo.write(oprot); + } } @Override @@ -737,7 +840,7 @@ import org.slf4j.LoggerFactory; TTupleProtocol iprot = (TTupleProtocol) prot; struct.txnid = iprot.readI64(); struct.setTxnidIsSet(true); - BitSet incoming = iprot.readBitSet(3); + BitSet incoming = iprot.readBitSet(4); if (incoming.get(0)) { struct.replPolicy = iprot.readString(); struct.setReplPolicyIsSet(true); @@ -761,6 +864,11 @@ import org.slf4j.LoggerFactory; struct.keyValue.read(iprot); struct.setKeyValueIsSet(true); } + if (incoming.get(3)) { + struct.replLastIdInfo = new ReplLastIdInfo(); + struct.replLastIdInfo.read(iprot); + struct.setReplLastIdInfoIsSet(true); + } } }
http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java index dd6df74..4155d4f 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CompactionRequest.java @@ -814,15 +814,15 @@ import org.slf4j.LoggerFactory; case 6: // PROPERTIES if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map698 = iprot.readMapBegin(); - struct.properties = new HashMap<String,String>(2*_map698.size); - String _key699; - String _val700; - for (int _i701 = 0; _i701 < _map698.size; ++_i701) + org.apache.thrift.protocol.TMap _map706 = iprot.readMapBegin(); + struct.properties = new HashMap<String,String>(2*_map706.size); + String _key707; + String _val708; + for (int _i709 = 0; _i709 < _map706.size; ++_i709) { - _key699 = iprot.readString(); - _val700 = iprot.readString(); - struct.properties.put(_key699, _val700); + _key707 = iprot.readString(); + _val708 = iprot.readString(); + struct.properties.put(_key707, _val708); } iprot.readMapEnd(); } @@ -878,10 +878,10 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(PROPERTIES_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, struct.properties.size())); - for (Map.Entry<String, String> _iter702 : struct.properties.entrySet()) + for (Map.Entry<String, String> _iter710 : struct.properties.entrySet()) { - oprot.writeString(_iter702.getKey()); - oprot.writeString(_iter702.getValue()); + oprot.writeString(_iter710.getKey()); + oprot.writeString(_iter710.getValue()); } oprot.writeMapEnd(); } @@ -928,10 +928,10 @@ import org.slf4j.LoggerFactory; if (struct.isSetProperties()) { { oprot.writeI32(struct.properties.size()); - for (Map.Entry<String, String> _iter703 : struct.properties.entrySet()) + for (Map.Entry<String, String> _iter711 : struct.properties.entrySet()) { - oprot.writeString(_iter703.getKey()); - oprot.writeString(_iter703.getValue()); + oprot.writeString(_iter711.getKey()); + oprot.writeString(_iter711.getValue()); } } } @@ -957,15 +957,15 @@ import org.slf4j.LoggerFactory; } if (incoming.get(2)) { { - org.apache.thrift.protocol.TMap _map704 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.properties = new HashMap<String,String>(2*_map704.size); - String _key705; - String _val706; - for (int _i707 = 0; _i707 < _map704.size; ++_i707) + org.apache.thrift.protocol.TMap _map712 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.STRING, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.properties = new HashMap<String,String>(2*_map712.size); + String _key713; + String _val714; + for (int _i715 = 0; _i715 < _map712.size; ++_i715) { - _key705 = iprot.readString(); - _val706 = iprot.readString(); - struct.properties.put(_key705, _val706); + _key713 = iprot.readString(); + _val714 = iprot.readString(); + struct.properties.put(_key713, _val714); } } struct.setPropertiesIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java index d631e21..9595a5d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/CreationMetadata.java @@ -792,13 +792,13 @@ import org.slf4j.LoggerFactory; case 4: // TABLES_USED if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set724 = iprot.readSetBegin(); - struct.tablesUsed = new HashSet<String>(2*_set724.size); - String _elem725; - for (int _i726 = 0; _i726 < _set724.size; ++_i726) + org.apache.thrift.protocol.TSet _set732 = iprot.readSetBegin(); + struct.tablesUsed = new HashSet<String>(2*_set732.size); + String _elem733; + for (int _i734 = 0; _i734 < _set732.size; ++_i734) { - _elem725 = iprot.readString(); - struct.tablesUsed.add(_elem725); + _elem733 = iprot.readString(); + struct.tablesUsed.add(_elem733); } iprot.readSetEnd(); } @@ -855,9 +855,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(TABLES_USED_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, struct.tablesUsed.size())); - for (String _iter727 : struct.tablesUsed) + for (String _iter735 : struct.tablesUsed) { - oprot.writeString(_iter727); + oprot.writeString(_iter735); } oprot.writeSetEnd(); } @@ -897,9 +897,9 @@ import org.slf4j.LoggerFactory; oprot.writeString(struct.tblName); { oprot.writeI32(struct.tablesUsed.size()); - for (String _iter728 : struct.tablesUsed) + for (String _iter736 : struct.tablesUsed) { - oprot.writeString(_iter728); + oprot.writeString(_iter736); } } BitSet optionals = new BitSet(); @@ -928,13 +928,13 @@ import org.slf4j.LoggerFactory; struct.tblName = iprot.readString(); struct.setTblNameIsSet(true); { - org.apache.thrift.protocol.TSet _set729 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tablesUsed = new HashSet<String>(2*_set729.size); - String _elem730; - for (int _i731 = 0; _i731 < _set729.size; ++_i731) + org.apache.thrift.protocol.TSet _set737 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tablesUsed = new HashSet<String>(2*_set737.size); + String _elem738; + for (int _i739 = 0; _i739 < _set737.size; ++_i739) { - _elem730 = iprot.readString(); - struct.tablesUsed.add(_elem730); + _elem738 = iprot.readString(); + struct.tablesUsed.add(_elem738); } } struct.setTablesUsedIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java index 8f5b4e5..f2f8fb4 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FindSchemasByColsResp.java @@ -350,14 +350,14 @@ import org.slf4j.LoggerFactory; case 1: // SCHEMA_VERSIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list944 = iprot.readListBegin(); - struct.schemaVersions = new ArrayList<SchemaVersionDescriptor>(_list944.size); - SchemaVersionDescriptor _elem945; - for (int _i946 = 0; _i946 < _list944.size; ++_i946) + org.apache.thrift.protocol.TList _list952 = iprot.readListBegin(); + struct.schemaVersions = new ArrayList<SchemaVersionDescriptor>(_list952.size); + SchemaVersionDescriptor _elem953; + for (int _i954 = 0; _i954 < _list952.size; ++_i954) { - _elem945 = new SchemaVersionDescriptor(); - _elem945.read(iprot); - struct.schemaVersions.add(_elem945); + _elem953 = new SchemaVersionDescriptor(); + _elem953.read(iprot); + struct.schemaVersions.add(_elem953); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(SCHEMA_VERSIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.schemaVersions.size())); - for (SchemaVersionDescriptor _iter947 : struct.schemaVersions) + for (SchemaVersionDescriptor _iter955 : struct.schemaVersions) { - _iter947.write(oprot); + _iter955.write(oprot); } oprot.writeListEnd(); } @@ -416,9 +416,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetSchemaVersions()) { { oprot.writeI32(struct.schemaVersions.size()); - for (SchemaVersionDescriptor _iter948 : struct.schemaVersions) + for (SchemaVersionDescriptor _iter956 : struct.schemaVersions) { - _iter948.write(oprot); + _iter956.write(oprot); } } } @@ -430,14 +430,14 @@ import org.slf4j.LoggerFactory; BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list949 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.schemaVersions = new ArrayList<SchemaVersionDescriptor>(_list949.size); - SchemaVersionDescriptor _elem950; - for (int _i951 = 0; _i951 < _list949.size; ++_i951) + org.apache.thrift.protocol.TList _list957 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.schemaVersions = new ArrayList<SchemaVersionDescriptor>(_list957.size); + SchemaVersionDescriptor _elem958; + for (int _i959 = 0; _i959 < _list957.size; ++_i959) { - _elem950 = new SchemaVersionDescriptor(); - _elem950.read(iprot); - struct.schemaVersions.add(_elem950); + _elem958 = new SchemaVersionDescriptor(); + _elem958.read(iprot); + struct.schemaVersions.add(_elem958); } } struct.setSchemaVersionsIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java index dc2627a..f7e188d 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/FireEventRequest.java @@ -794,13 +794,13 @@ import org.slf4j.LoggerFactory; case 5: // PARTITION_VALS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list764 = iprot.readListBegin(); - struct.partitionVals = new ArrayList<String>(_list764.size); - String _elem765; - for (int _i766 = 0; _i766 < _list764.size; ++_i766) + org.apache.thrift.protocol.TList _list772 = iprot.readListBegin(); + struct.partitionVals = new ArrayList<String>(_list772.size); + String _elem773; + for (int _i774 = 0; _i774 < _list772.size; ++_i774) { - _elem765 = iprot.readString(); - struct.partitionVals.add(_elem765); + _elem773 = iprot.readString(); + struct.partitionVals.add(_elem773); } iprot.readListEnd(); } @@ -857,9 +857,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(PARTITION_VALS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.partitionVals.size())); - for (String _iter767 : struct.partitionVals) + for (String _iter775 : struct.partitionVals) { - oprot.writeString(_iter767); + oprot.writeString(_iter775); } oprot.writeListEnd(); } @@ -915,9 +915,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetPartitionVals()) { { oprot.writeI32(struct.partitionVals.size()); - for (String _iter768 : struct.partitionVals) + for (String _iter776 : struct.partitionVals) { - oprot.writeString(_iter768); + oprot.writeString(_iter776); } } } @@ -945,13 +945,13 @@ import org.slf4j.LoggerFactory; } if (incoming.get(2)) { { - org.apache.thrift.protocol.TList _list769 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.partitionVals = new ArrayList<String>(_list769.size); - String _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.STRING, iprot.readI32()); + struct.partitionVals = new ArrayList<String>(_list777.size); + String _elem778; + for (int _i779 = 0; _i779 < _list777.size; ++_i779) { - _elem770 = iprot.readString(); - struct.partitionVals.add(_elem770); + _elem778 = iprot.readString(); + struct.partitionVals.add(_elem778); } } struct.setPartitionValsIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java index 13fe5fa..bd38bbe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetAllFunctionsResponse.java @@ -346,14 +346,14 @@ import org.slf4j.LoggerFactory; case 1: // FUNCTIONS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list840 = iprot.readListBegin(); - struct.functions = new ArrayList<Function>(_list840.size); - Function _elem841; - for (int _i842 = 0; _i842 < _list840.size; ++_i842) + org.apache.thrift.protocol.TList _list848 = iprot.readListBegin(); + struct.functions = new ArrayList<Function>(_list848.size); + Function _elem849; + for (int _i850 = 0; _i850 < _list848.size; ++_i850) { - _elem841 = new Function(); - _elem841.read(iprot); - struct.functions.add(_elem841); + _elem849 = new Function(); + _elem849.read(iprot); + struct.functions.add(_elem849); } iprot.readListEnd(); } @@ -380,9 +380,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(FUNCTIONS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.functions.size())); - for (Function _iter843 : struct.functions) + for (Function _iter851 : struct.functions) { - _iter843.write(oprot); + _iter851.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetFunctions()) { { oprot.writeI32(struct.functions.size()); - for (Function _iter844 : struct.functions) + for (Function _iter852 : struct.functions) { - _iter844.write(oprot); + _iter852.write(oprot); } } } @@ -428,14 +428,14 @@ import org.slf4j.LoggerFactory; BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list845 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.functions = new ArrayList<Function>(_list845.size); - Function _elem846; - for (int _i847 = 0; _i847 < _list845.size; ++_i847) + org.apache.thrift.protocol.TList _list853 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.functions = new ArrayList<Function>(_list853.size); + Function _elem854; + for (int _i855 = 0; _i855 < _list853.size; ++_i855) { - _elem846 = new Function(); - _elem846.read(iprot); - struct.functions.add(_elem846); + _elem854 = new Function(); + _elem854.read(iprot); + struct.functions.add(_elem854); } } struct.setFunctionsIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java index 976bf00..fb591dc 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprRequest.java @@ -619,13 +619,13 @@ import org.slf4j.LoggerFactory; case 1: // FILE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list790 = iprot.readListBegin(); - struct.fileIds = new ArrayList<Long>(_list790.size); - long _elem791; - for (int _i792 = 0; _i792 < _list790.size; ++_i792) + org.apache.thrift.protocol.TList _list798 = iprot.readListBegin(); + struct.fileIds = new ArrayList<Long>(_list798.size); + long _elem799; + for (int _i800 = 0; _i800 < _list798.size; ++_i800) { - _elem791 = iprot.readI64(); - struct.fileIds.add(_elem791); + _elem799 = iprot.readI64(); + struct.fileIds.add(_elem799); } iprot.readListEnd(); } @@ -675,9 +675,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(FILE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.fileIds.size())); - for (long _iter793 : struct.fileIds) + for (long _iter801 : struct.fileIds) { - oprot.writeI64(_iter793); + oprot.writeI64(_iter801); } oprot.writeListEnd(); } @@ -719,9 +719,9 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.fileIds.size()); - for (long _iter794 : struct.fileIds) + for (long _iter802 : struct.fileIds) { - oprot.writeI64(_iter794); + oprot.writeI64(_iter802); } } oprot.writeBinary(struct.expr); @@ -745,13 +745,13 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByExprRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list795 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.fileIds = new ArrayList<Long>(_list795.size); - long _elem796; - for (int _i797 = 0; _i797 < _list795.size; ++_i797) + org.apache.thrift.protocol.TList _list803 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.fileIds = new ArrayList<Long>(_list803.size); + long _elem804; + for (int _i805 = 0; _i805 < _list803.size; ++_i805) { - _elem796 = iprot.readI64(); - struct.fileIds.add(_elem796); + _elem804 = iprot.readI64(); + struct.fileIds.add(_elem804); } } struct.setFileIdsIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java index 16a0113..e8dfba5 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataByExprResult.java @@ -444,16 +444,16 @@ import org.slf4j.LoggerFactory; case 1: // METADATA if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map780 = iprot.readMapBegin(); - struct.metadata = new HashMap<Long,MetadataPpdResult>(2*_map780.size); - long _key781; - MetadataPpdResult _val782; - for (int _i783 = 0; _i783 < _map780.size; ++_i783) + org.apache.thrift.protocol.TMap _map788 = iprot.readMapBegin(); + struct.metadata = new HashMap<Long,MetadataPpdResult>(2*_map788.size); + long _key789; + MetadataPpdResult _val790; + for (int _i791 = 0; _i791 < _map788.size; ++_i791) { - _key781 = iprot.readI64(); - _val782 = new MetadataPpdResult(); - _val782.read(iprot); - struct.metadata.put(_key781, _val782); + _key789 = iprot.readI64(); + _val790 = new MetadataPpdResult(); + _val790.read(iprot); + struct.metadata.put(_key789, _val790); } iprot.readMapEnd(); } @@ -487,10 +487,10 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(METADATA_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, struct.metadata.size())); - for (Map.Entry<Long, MetadataPpdResult> _iter784 : struct.metadata.entrySet()) + for (Map.Entry<Long, MetadataPpdResult> _iter792 : struct.metadata.entrySet()) { - oprot.writeI64(_iter784.getKey()); - _iter784.getValue().write(oprot); + oprot.writeI64(_iter792.getKey()); + _iter792.getValue().write(oprot); } oprot.writeMapEnd(); } @@ -518,10 +518,10 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.metadata.size()); - for (Map.Entry<Long, MetadataPpdResult> _iter785 : struct.metadata.entrySet()) + for (Map.Entry<Long, MetadataPpdResult> _iter793 : struct.metadata.entrySet()) { - oprot.writeI64(_iter785.getKey()); - _iter785.getValue().write(oprot); + oprot.writeI64(_iter793.getKey()); + _iter793.getValue().write(oprot); } } oprot.writeBool(struct.isSupported); @@ -531,16 +531,16 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataByExprResult struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map786 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.metadata = new HashMap<Long,MetadataPpdResult>(2*_map786.size); - long _key787; - MetadataPpdResult _val788; - for (int _i789 = 0; _i789 < _map786.size; ++_i789) + org.apache.thrift.protocol.TMap _map794 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.metadata = new HashMap<Long,MetadataPpdResult>(2*_map794.size); + long _key795; + MetadataPpdResult _val796; + for (int _i797 = 0; _i797 < _map794.size; ++_i797) { - _key787 = iprot.readI64(); - _val788 = new MetadataPpdResult(); - _val788.read(iprot); - struct.metadata.put(_key787, _val788); + _key795 = iprot.readI64(); + _val796 = new MetadataPpdResult(); + _val796.read(iprot); + struct.metadata.put(_key795, _val796); } } struct.setMetadataIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java index 9e3ed8b..3d32f37 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataRequest.java @@ -351,13 +351,13 @@ import org.slf4j.LoggerFactory; case 1: // FILE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list808 = iprot.readListBegin(); - struct.fileIds = new ArrayList<Long>(_list808.size); - long _elem809; - for (int _i810 = 0; _i810 < _list808.size; ++_i810) + org.apache.thrift.protocol.TList _list816 = iprot.readListBegin(); + struct.fileIds = new ArrayList<Long>(_list816.size); + long _elem817; + for (int _i818 = 0; _i818 < _list816.size; ++_i818) { - _elem809 = iprot.readI64(); - struct.fileIds.add(_elem809); + _elem817 = iprot.readI64(); + struct.fileIds.add(_elem817); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(FILE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, struct.fileIds.size())); - for (long _iter811 : struct.fileIds) + for (long _iter819 : struct.fileIds) { - oprot.writeI64(_iter811); + oprot.writeI64(_iter819); } oprot.writeListEnd(); } @@ -410,9 +410,9 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.fileIds.size()); - for (long _iter812 : struct.fileIds) + for (long _iter820 : struct.fileIds) { - oprot.writeI64(_iter812); + oprot.writeI64(_iter820); } } } @@ -421,13 +421,13 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list813 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.fileIds = new ArrayList<Long>(_list813.size); - long _elem814; - for (int _i815 = 0; _i815 < _list813.size; ++_i815) + org.apache.thrift.protocol.TList _list821 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.fileIds = new ArrayList<Long>(_list821.size); + long _elem822; + for (int _i823 = 0; _i823 < _list821.size; ++_i823) { - _elem814 = iprot.readI64(); - struct.fileIds.add(_elem814); + _elem822 = iprot.readI64(); + struct.fileIds.add(_elem822); } } struct.setFileIdsIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java index bc73f1e..2b176ef 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetFileMetadataResult.java @@ -433,15 +433,15 @@ import org.slf4j.LoggerFactory; case 1: // METADATA if (schemeField.type == org.apache.thrift.protocol.TType.MAP) { { - org.apache.thrift.protocol.TMap _map798 = iprot.readMapBegin(); - struct.metadata = new HashMap<Long,ByteBuffer>(2*_map798.size); - long _key799; - ByteBuffer _val800; - for (int _i801 = 0; _i801 < _map798.size; ++_i801) + org.apache.thrift.protocol.TMap _map806 = iprot.readMapBegin(); + struct.metadata = new HashMap<Long,ByteBuffer>(2*_map806.size); + long _key807; + ByteBuffer _val808; + for (int _i809 = 0; _i809 < _map806.size; ++_i809) { - _key799 = iprot.readI64(); - _val800 = iprot.readBinary(); - struct.metadata.put(_key799, _val800); + _key807 = iprot.readI64(); + _val808 = iprot.readBinary(); + struct.metadata.put(_key807, _val808); } iprot.readMapEnd(); } @@ -475,10 +475,10 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(METADATA_FIELD_DESC); { oprot.writeMapBegin(new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, struct.metadata.size())); - for (Map.Entry<Long, ByteBuffer> _iter802 : struct.metadata.entrySet()) + for (Map.Entry<Long, ByteBuffer> _iter810 : struct.metadata.entrySet()) { - oprot.writeI64(_iter802.getKey()); - oprot.writeBinary(_iter802.getValue()); + oprot.writeI64(_iter810.getKey()); + oprot.writeBinary(_iter810.getValue()); } oprot.writeMapEnd(); } @@ -506,10 +506,10 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.metadata.size()); - for (Map.Entry<Long, ByteBuffer> _iter803 : struct.metadata.entrySet()) + for (Map.Entry<Long, ByteBuffer> _iter811 : struct.metadata.entrySet()) { - oprot.writeI64(_iter803.getKey()); - oprot.writeBinary(_iter803.getValue()); + oprot.writeI64(_iter811.getKey()); + oprot.writeBinary(_iter811.getValue()); } } oprot.writeBool(struct.isSupported); @@ -519,15 +519,15 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, GetFileMetadataResult struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TMap _map804 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.metadata = new HashMap<Long,ByteBuffer>(2*_map804.size); - long _key805; - ByteBuffer _val806; - for (int _i807 = 0; _i807 < _map804.size; ++_i807) + org.apache.thrift.protocol.TMap _map812 = new org.apache.thrift.protocol.TMap(org.apache.thrift.protocol.TType.I64, org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.metadata = new HashMap<Long,ByteBuffer>(2*_map812.size); + long _key813; + ByteBuffer _val814; + for (int _i815 = 0; _i815 < _map812.size; ++_i815) { - _key805 = iprot.readI64(); - _val806 = iprot.readBinary(); - struct.metadata.put(_key805, _val806); + _key813 = iprot.readI64(); + _val814 = iprot.readBinary(); + struct.metadata.put(_key813, _val814); } } struct.setMetadataIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsFilterSpec.java ---------------------------------------------------------------------- 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 57511ce..c0fe726 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 @@ -444,13 +444,13 @@ import org.slf4j.LoggerFactory; case 8: // FILTERS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list976 = iprot.readListBegin(); - struct.filters = new ArrayList<String>(_list976.size); - String _elem977; - for (int _i978 = 0; _i978 < _list976.size; ++_i978) + org.apache.thrift.protocol.TList _list984 = iprot.readListBegin(); + struct.filters = new ArrayList<String>(_list984.size); + String _elem985; + for (int _i986 = 0; _i986 < _list984.size; ++_i986) { - _elem977 = iprot.readString(); - struct.filters.add(_elem977); + _elem985 = iprot.readString(); + struct.filters.add(_elem985); } iprot.readListEnd(); } @@ -484,9 +484,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(FILTERS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.filters.size())); - for (String _iter979 : struct.filters) + for (String _iter987 : struct.filters) { - oprot.writeString(_iter979); + oprot.writeString(_iter987); } oprot.writeListEnd(); } @@ -524,9 +524,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetFilters()) { { oprot.writeI32(struct.filters.size()); - for (String _iter980 : struct.filters) + for (String _iter988 : struct.filters) { - oprot.writeString(_iter980); + oprot.writeString(_iter988); } } } @@ -542,13 +542,13 @@ import org.slf4j.LoggerFactory; } if (incoming.get(1)) { { - org.apache.thrift.protocol.TList _list981 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.filters = new ArrayList<String>(_list981.size); - String _elem982; - for (int _i983 = 0; _i983 < _list981.size; ++_i983) + org.apache.thrift.protocol.TList _list989 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.filters = new ArrayList<String>(_list989.size); + String _elem990; + for (int _i991 = 0; _i991 < _list989.size; ++_i991) { - _elem982 = iprot.readString(); - struct.filters.add(_elem982); + _elem990 = iprot.readString(); + struct.filters.add(_elem990); } } struct.setFiltersIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsProjectionSpec.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsProjectionSpec.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsProjectionSpec.java index bf7b6b7..db91e0b 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsProjectionSpec.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsProjectionSpec.java @@ -509,13 +509,13 @@ import org.slf4j.LoggerFactory; case 1: // FIELD_LIST if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list968 = iprot.readListBegin(); - struct.fieldList = new ArrayList<String>(_list968.size); - String _elem969; - for (int _i970 = 0; _i970 < _list968.size; ++_i970) + org.apache.thrift.protocol.TList _list976 = iprot.readListBegin(); + struct.fieldList = new ArrayList<String>(_list976.size); + String _elem977; + for (int _i978 = 0; _i978 < _list976.size; ++_i978) { - _elem969 = iprot.readString(); - struct.fieldList.add(_elem969); + _elem977 = iprot.readString(); + struct.fieldList.add(_elem977); } iprot.readListEnd(); } @@ -557,9 +557,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(FIELD_LIST_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.fieldList.size())); - for (String _iter971 : struct.fieldList) + for (String _iter979 : struct.fieldList) { - oprot.writeString(_iter971); + oprot.writeString(_iter979); } oprot.writeListEnd(); } @@ -606,9 +606,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetFieldList()) { { oprot.writeI32(struct.fieldList.size()); - for (String _iter972 : struct.fieldList) + for (String _iter980 : struct.fieldList) { - oprot.writeString(_iter972); + oprot.writeString(_iter980); } } } @@ -626,13 +626,13 @@ import org.slf4j.LoggerFactory; BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list973 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.fieldList = new ArrayList<String>(_list973.size); - String _elem974; - for (int _i975 = 0; _i975 < _list973.size; ++_i975) + org.apache.thrift.protocol.TList _list981 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.fieldList = new ArrayList<String>(_list981.size); + String _elem982; + for (int _i983 = 0; _i983 < _list981.size; ++_i983) { - _elem974 = iprot.readString(); - struct.fieldList.add(_elem974); + _elem982 = iprot.readString(); + struct.fieldList.add(_elem982); } } struct.setFieldListIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsRequest.java ---------------------------------------------------------------------- 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 6aa8de8..d26cde2 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 @@ -960,13 +960,13 @@ import org.slf4j.LoggerFactory; case 6: // GROUP_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list992 = iprot.readListBegin(); - struct.groupNames = new ArrayList<String>(_list992.size); - String _elem993; - for (int _i994 = 0; _i994 < _list992.size; ++_i994) + org.apache.thrift.protocol.TList _list1000 = iprot.readListBegin(); + struct.groupNames = new ArrayList<String>(_list1000.size); + String _elem1001; + for (int _i1002 = 0; _i1002 < _list1000.size; ++_i1002) { - _elem993 = iprot.readString(); - struct.groupNames.add(_elem993); + _elem1001 = iprot.readString(); + struct.groupNames.add(_elem1001); } iprot.readListEnd(); } @@ -1040,9 +1040,9 @@ import org.slf4j.LoggerFactory; 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 _iter995 : struct.groupNames) + for (String _iter1003 : struct.groupNames) { - oprot.writeString(_iter995); + oprot.writeString(_iter1003); } oprot.writeListEnd(); } @@ -1120,9 +1120,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetGroupNames()) { { oprot.writeI32(struct.groupNames.size()); - for (String _iter996 : struct.groupNames) + for (String _iter1004 : struct.groupNames) { - oprot.writeString(_iter996); + oprot.writeString(_iter1004); } } } @@ -1160,13 +1160,13 @@ import org.slf4j.LoggerFactory; } if (incoming.get(5)) { { - org.apache.thrift.protocol.TList _list997 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.groupNames = new ArrayList<String>(_list997.size); - String _elem998; - for (int _i999 = 0; _i999 < _list997.size; ++_i999) + org.apache.thrift.protocol.TList _list1005 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.groupNames = new ArrayList<String>(_list1005.size); + String _elem1006; + for (int _i1007 = 0; _i1007 < _list1005.size; ++_i1007) { - _elem998 = iprot.readString(); - struct.groupNames.add(_elem998); + _elem1006 = iprot.readString(); + struct.groupNames.add(_elem1006); } } struct.setGroupNamesIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetPartitionsResponse.java ---------------------------------------------------------------------- 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 2c374b8..3db9095 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 @@ import org.slf4j.LoggerFactory; case 1: // PARTITION_SPEC if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list984 = iprot.readListBegin(); - struct.partitionSpec = new ArrayList<PartitionSpec>(_list984.size); - PartitionSpec _elem985; - for (int _i986 = 0; _i986 < _list984.size; ++_i986) + org.apache.thrift.protocol.TList _list992 = iprot.readListBegin(); + struct.partitionSpec = new ArrayList<PartitionSpec>(_list992.size); + PartitionSpec _elem993; + for (int _i994 = 0; _i994 < _list992.size; ++_i994) { - _elem985 = new PartitionSpec(); - _elem985.read(iprot); - struct.partitionSpec.add(_elem985); + _elem993 = new PartitionSpec(); + _elem993.read(iprot); + struct.partitionSpec.add(_elem993); } iprot.readListEnd(); } @@ -383,9 +383,9 @@ import org.slf4j.LoggerFactory; 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 _iter987 : struct.partitionSpec) + for (PartitionSpec _iter995 : struct.partitionSpec) { - _iter987.write(oprot); + _iter995.write(oprot); } oprot.writeListEnd(); } @@ -416,9 +416,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetPartitionSpec()) { { oprot.writeI32(struct.partitionSpec.size()); - for (PartitionSpec _iter988 : struct.partitionSpec) + for (PartitionSpec _iter996 : struct.partitionSpec) { - _iter988.write(oprot); + _iter996.write(oprot); } } } @@ -430,14 +430,14 @@ import org.slf4j.LoggerFactory; BitSet incoming = iprot.readBitSet(1); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list989 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.partitionSpec = new ArrayList<PartitionSpec>(_list989.size); - PartitionSpec _elem990; - for (int _i991 = 0; _i991 < _list989.size; ++_i991) + org.apache.thrift.protocol.TList _list997 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.partitionSpec = new ArrayList<PartitionSpec>(_list997.size); + PartitionSpec _elem998; + for (int _i999 = 0; _i999 < _list997.size; ++_i999) { - _elem990 = new PartitionSpec(); - _elem990.read(iprot); - struct.partitionSpec.add(_elem990); + _elem998 = new PartitionSpec(); + _elem998.read(iprot); + struct.partitionSpec.add(_elem998); } } struct.setPartitionSpecIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java index f241b5a..c3f71fe 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesRequest.java @@ -606,13 +606,13 @@ import org.slf4j.LoggerFactory; case 2: // TBL_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list856 = iprot.readListBegin(); - struct.tblNames = new ArrayList<String>(_list856.size); - String _elem857; - for (int _i858 = 0; _i858 < _list856.size; ++_i858) + org.apache.thrift.protocol.TList _list864 = iprot.readListBegin(); + struct.tblNames = new ArrayList<String>(_list864.size); + String _elem865; + for (int _i866 = 0; _i866 < _list864.size; ++_i866) { - _elem857 = iprot.readString(); - struct.tblNames.add(_elem857); + _elem865 = iprot.readString(); + struct.tblNames.add(_elem865); } iprot.readListEnd(); } @@ -661,9 +661,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(TBL_NAMES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.tblNames.size())); - for (String _iter859 : struct.tblNames) + for (String _iter867 : struct.tblNames) { - oprot.writeString(_iter859); + oprot.writeString(_iter867); } oprot.writeListEnd(); } @@ -716,9 +716,9 @@ import org.slf4j.LoggerFactory; if (struct.isSetTblNames()) { { oprot.writeI32(struct.tblNames.size()); - for (String _iter860 : struct.tblNames) + for (String _iter868 : struct.tblNames) { - oprot.writeString(_iter860); + oprot.writeString(_iter868); } } } @@ -738,13 +738,13 @@ import org.slf4j.LoggerFactory; BitSet incoming = iprot.readBitSet(3); if (incoming.get(0)) { { - org.apache.thrift.protocol.TList _list861 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.tblNames = new ArrayList<String>(_list861.size); - String _elem862; - for (int _i863 = 0; _i863 < _list861.size; ++_i863) + org.apache.thrift.protocol.TList _list869 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.tblNames = new ArrayList<String>(_list869.size); + String _elem870; + for (int _i871 = 0; _i871 < _list869.size; ++_i871) { - _elem862 = iprot.readString(); - struct.tblNames.add(_elem862); + _elem870 = iprot.readString(); + struct.tblNames.add(_elem870); } } struct.setTblNamesIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java index b351c40..5716922 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetTablesResult.java @@ -354,14 +354,14 @@ import org.slf4j.LoggerFactory; case 1: // TABLES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list864 = iprot.readListBegin(); - struct.tables = new ArrayList<Table>(_list864.size); - Table _elem865; - for (int _i866 = 0; _i866 < _list864.size; ++_i866) + org.apache.thrift.protocol.TList _list872 = iprot.readListBegin(); + struct.tables = new ArrayList<Table>(_list872.size); + Table _elem873; + for (int _i874 = 0; _i874 < _list872.size; ++_i874) { - _elem865 = new Table(); - _elem865.read(iprot); - struct.tables.add(_elem865); + _elem873 = new Table(); + _elem873.read(iprot); + struct.tables.add(_elem873); } iprot.readListEnd(); } @@ -387,9 +387,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(TABLES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.tables.size())); - for (Table _iter867 : struct.tables) + for (Table _iter875 : struct.tables) { - _iter867.write(oprot); + _iter875.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.tables.size()); - for (Table _iter868 : struct.tables) + for (Table _iter876 : struct.tables) { - _iter868.write(oprot); + _iter876.write(oprot); } } } @@ -425,14 +425,14 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, GetTablesResult struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list869 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.tables = new ArrayList<Table>(_list869.size); - Table _elem870; - for (int _i871 = 0; _i871 < _list869.size; ++_i871) + org.apache.thrift.protocol.TList _list877 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.tables = new ArrayList<Table>(_list877.size); + Table _elem878; + for (int _i879 = 0; _i879 < _list877.size; ++_i879) { - _elem870 = new Table(); - _elem870.read(iprot); - struct.tables.add(_elem870); + _elem878 = new Table(); + _elem878.read(iprot); + struct.tables.add(_elem878); } } struct.setTablesIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java index 5dbdc3e..1be6d23 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsRequest.java @@ -513,13 +513,13 @@ import org.slf4j.LoggerFactory; case 1: // FULL_TABLE_NAMES if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list618 = iprot.readListBegin(); - struct.fullTableNames = new ArrayList<String>(_list618.size); - String _elem619; - for (int _i620 = 0; _i620 < _list618.size; ++_i620) + org.apache.thrift.protocol.TList _list626 = iprot.readListBegin(); + struct.fullTableNames = new ArrayList<String>(_list626.size); + String _elem627; + for (int _i628 = 0; _i628 < _list626.size; ++_i628) { - _elem619 = iprot.readString(); - struct.fullTableNames.add(_elem619); + _elem627 = iprot.readString(); + struct.fullTableNames.add(_elem627); } iprot.readListEnd(); } @@ -561,9 +561,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(FULL_TABLE_NAMES_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, struct.fullTableNames.size())); - for (String _iter621 : struct.fullTableNames) + for (String _iter629 : struct.fullTableNames) { - oprot.writeString(_iter621); + oprot.writeString(_iter629); } oprot.writeListEnd(); } @@ -600,9 +600,9 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.fullTableNames.size()); - for (String _iter622 : struct.fullTableNames) + for (String _iter630 : struct.fullTableNames) { - oprot.writeString(_iter622); + oprot.writeString(_iter630); } } BitSet optionals = new BitSet(); @@ -625,13 +625,13 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, GetValidWriteIdsRequest struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list623 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); - struct.fullTableNames = new ArrayList<String>(_list623.size); - String _elem624; - for (int _i625 = 0; _i625 < _list623.size; ++_i625) + org.apache.thrift.protocol.TList _list631 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRING, iprot.readI32()); + struct.fullTableNames = new ArrayList<String>(_list631.size); + String _elem632; + for (int _i633 = 0; _i633 < _list631.size; ++_i633) { - _elem624 = iprot.readString(); - struct.fullTableNames.add(_elem624); + _elem632 = iprot.readString(); + struct.fullTableNames.add(_elem632); } } struct.setFullTableNamesIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java index 96a6a00..6c3617e 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/GetValidWriteIdsResponse.java @@ -354,14 +354,14 @@ import org.slf4j.LoggerFactory; case 1: // TBL_VALID_WRITE_IDS if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { { - org.apache.thrift.protocol.TList _list634 = iprot.readListBegin(); - struct.tblValidWriteIds = new ArrayList<TableValidWriteIds>(_list634.size); - TableValidWriteIds _elem635; - for (int _i636 = 0; _i636 < _list634.size; ++_i636) + org.apache.thrift.protocol.TList _list642 = iprot.readListBegin(); + struct.tblValidWriteIds = new ArrayList<TableValidWriteIds>(_list642.size); + TableValidWriteIds _elem643; + for (int _i644 = 0; _i644 < _list642.size; ++_i644) { - _elem635 = new TableValidWriteIds(); - _elem635.read(iprot); - struct.tblValidWriteIds.add(_elem635); + _elem643 = new TableValidWriteIds(); + _elem643.read(iprot); + struct.tblValidWriteIds.add(_elem643); } iprot.readListEnd(); } @@ -387,9 +387,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(TBL_VALID_WRITE_IDS_FIELD_DESC); { oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.tblValidWriteIds.size())); - for (TableValidWriteIds _iter637 : struct.tblValidWriteIds) + for (TableValidWriteIds _iter645 : struct.tblValidWriteIds) { - _iter637.write(oprot); + _iter645.write(oprot); } oprot.writeListEnd(); } @@ -414,9 +414,9 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.tblValidWriteIds.size()); - for (TableValidWriteIds _iter638 : struct.tblValidWriteIds) + for (TableValidWriteIds _iter646 : struct.tblValidWriteIds) { - _iter638.write(oprot); + _iter646.write(oprot); } } } @@ -425,14 +425,14 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, GetValidWriteIdsResponse struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TList _list639 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); - struct.tblValidWriteIds = new ArrayList<TableValidWriteIds>(_list639.size); - TableValidWriteIds _elem640; - for (int _i641 = 0; _i641 < _list639.size; ++_i641) + org.apache.thrift.protocol.TList _list647 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.tblValidWriteIds = new ArrayList<TableValidWriteIds>(_list647.size); + TableValidWriteIds _elem648; + for (int _i649 = 0; _i649 < _list647.size; ++_i649) { - _elem640 = new TableValidWriteIds(); - _elem640.read(iprot); - struct.tblValidWriteIds.add(_elem640); + _elem648 = new TableValidWriteIds(); + _elem648.read(iprot); + struct.tblValidWriteIds.add(_elem648); } } struct.setTblValidWriteIdsIsSet(true); http://git-wip-us.apache.org/repos/asf/hive/blob/10cfba20/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java index a6535aa..761ddb3 100644 --- a/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java +++ b/standalone-metastore/metastore-common/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/HeartbeatTxnRangeResponse.java @@ -453,13 +453,13 @@ import org.slf4j.LoggerFactory; case 1: // ABORTED if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set682 = iprot.readSetBegin(); - struct.aborted = new HashSet<Long>(2*_set682.size); - long _elem683; - for (int _i684 = 0; _i684 < _set682.size; ++_i684) + org.apache.thrift.protocol.TSet _set690 = iprot.readSetBegin(); + struct.aborted = new HashSet<Long>(2*_set690.size); + long _elem691; + for (int _i692 = 0; _i692 < _set690.size; ++_i692) { - _elem683 = iprot.readI64(); - struct.aborted.add(_elem683); + _elem691 = iprot.readI64(); + struct.aborted.add(_elem691); } iprot.readSetEnd(); } @@ -471,13 +471,13 @@ import org.slf4j.LoggerFactory; case 2: // NOSUCH if (schemeField.type == org.apache.thrift.protocol.TType.SET) { { - org.apache.thrift.protocol.TSet _set685 = iprot.readSetBegin(); - struct.nosuch = new HashSet<Long>(2*_set685.size); - long _elem686; - for (int _i687 = 0; _i687 < _set685.size; ++_i687) + org.apache.thrift.protocol.TSet _set693 = iprot.readSetBegin(); + struct.nosuch = new HashSet<Long>(2*_set693.size); + long _elem694; + for (int _i695 = 0; _i695 < _set693.size; ++_i695) { - _elem686 = iprot.readI64(); - struct.nosuch.add(_elem686); + _elem694 = iprot.readI64(); + struct.nosuch.add(_elem694); } iprot.readSetEnd(); } @@ -503,9 +503,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(ABORTED_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.aborted.size())); - for (long _iter688 : struct.aborted) + for (long _iter696 : struct.aborted) { - oprot.writeI64(_iter688); + oprot.writeI64(_iter696); } oprot.writeSetEnd(); } @@ -515,9 +515,9 @@ import org.slf4j.LoggerFactory; oprot.writeFieldBegin(NOSUCH_FIELD_DESC); { oprot.writeSetBegin(new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, struct.nosuch.size())); - for (long _iter689 : struct.nosuch) + for (long _iter697 : struct.nosuch) { - oprot.writeI64(_iter689); + oprot.writeI64(_iter697); } oprot.writeSetEnd(); } @@ -542,16 +542,16 @@ import org.slf4j.LoggerFactory; TTupleProtocol oprot = (TTupleProtocol) prot; { oprot.writeI32(struct.aborted.size()); - for (long _iter690 : struct.aborted) + for (long _iter698 : struct.aborted) { - oprot.writeI64(_iter690); + oprot.writeI64(_iter698); } } { oprot.writeI32(struct.nosuch.size()); - for (long _iter691 : struct.nosuch) + for (long _iter699 : struct.nosuch) { - oprot.writeI64(_iter691); + oprot.writeI64(_iter699); } } } @@ -560,24 +560,24 @@ import org.slf4j.LoggerFactory; public void read(org.apache.thrift.protocol.TProtocol prot, HeartbeatTxnRangeResponse struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; { - org.apache.thrift.protocol.TSet _set692 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.aborted = new HashSet<Long>(2*_set692.size); - long _elem693; - for (int _i694 = 0; _i694 < _set692.size; ++_i694) + org.apache.thrift.protocol.TSet _set700 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.aborted = new HashSet<Long>(2*_set700.size); + long _elem701; + for (int _i702 = 0; _i702 < _set700.size; ++_i702) { - _elem693 = iprot.readI64(); - struct.aborted.add(_elem693); + _elem701 = iprot.readI64(); + struct.aborted.add(_elem701); } } struct.setAbortedIsSet(true); { - org.apache.thrift.protocol.TSet _set695 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); - struct.nosuch = new HashSet<Long>(2*_set695.size); - long _elem696; - for (int _i697 = 0; _i697 < _set695.size; ++_i697) + org.apache.thrift.protocol.TSet _set703 = new org.apache.thrift.protocol.TSet(org.apache.thrift.protocol.TType.I64, iprot.readI32()); + struct.nosuch = new HashSet<Long>(2*_set703.size); + long _elem704; + for (int _i705 = 0; _i705 < _set703.size; ++_i705) { - _elem696 = iprot.readI64(); - struct.nosuch.add(_elem696); + _elem704 = iprot.readI64(); + struct.nosuch.add(_elem704); } } struct.setNosuchIsSet(true);
