http://git-wip-us.apache.org/repos/asf/hive/blob/12041d39/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java new file mode 100644 index 0000000..fb0be40 --- /dev/null +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersion.java @@ -0,0 +1,1412 @@ +/** + * Autogenerated by Thrift Compiler (0.9.3) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +package org.apache.hadoop.hive.metastore.api; + +import org.apache.thrift.scheme.IScheme; +import org.apache.thrift.scheme.SchemeFactory; +import org.apache.thrift.scheme.StandardScheme; + +import org.apache.thrift.scheme.TupleScheme; +import org.apache.thrift.protocol.TTupleProtocol; +import org.apache.thrift.protocol.TProtocolException; +import org.apache.thrift.EncodingUtils; +import org.apache.thrift.TException; +import org.apache.thrift.async.AsyncMethodCallback; +import org.apache.thrift.server.AbstractNonblockingServer.*; +import java.util.List; +import java.util.ArrayList; +import java.util.Map; +import java.util.HashMap; +import java.util.EnumMap; +import java.util.Set; +import java.util.HashSet; +import java.util.EnumSet; +import java.util.Collections; +import java.util.BitSet; +import java.nio.ByteBuffer; +import java.util.Arrays; +import javax.annotation.Generated; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"}) +@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)") +@org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SchemaVersion implements org.apache.thrift.TBase<SchemaVersion, SchemaVersion._Fields>, java.io.Serializable, Cloneable, Comparable<SchemaVersion> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("SchemaVersion"); + + private static final org.apache.thrift.protocol.TField SCHEMA_FIELD_DESC = new org.apache.thrift.protocol.TField("schema", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField VERSION_FIELD_DESC = new org.apache.thrift.protocol.TField("version", org.apache.thrift.protocol.TType.I32, (short)2); + private static final org.apache.thrift.protocol.TField CREATED_AT_FIELD_DESC = new org.apache.thrift.protocol.TField("createdAt", org.apache.thrift.protocol.TType.I64, (short)3); + private static final org.apache.thrift.protocol.TField COLS_FIELD_DESC = new org.apache.thrift.protocol.TField("cols", org.apache.thrift.protocol.TType.LIST, (short)4); + private static final org.apache.thrift.protocol.TField STATE_FIELD_DESC = new org.apache.thrift.protocol.TField("state", org.apache.thrift.protocol.TType.I32, (short)5); + private static final org.apache.thrift.protocol.TField DESCRIPTION_FIELD_DESC = new org.apache.thrift.protocol.TField("description", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField SCHEMA_TEXT_FIELD_DESC = new org.apache.thrift.protocol.TField("schemaText", org.apache.thrift.protocol.TType.STRING, (short)7); + private static final org.apache.thrift.protocol.TField FINGERPRINT_FIELD_DESC = new org.apache.thrift.protocol.TField("fingerprint", org.apache.thrift.protocol.TType.STRING, (short)8); + private static final org.apache.thrift.protocol.TField NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("name", org.apache.thrift.protocol.TType.STRING, (short)9); + private static final org.apache.thrift.protocol.TField SER_DE_FIELD_DESC = new org.apache.thrift.protocol.TField("serDe", org.apache.thrift.protocol.TType.STRUCT, (short)10); + + private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); + static { + schemes.put(StandardScheme.class, new SchemaVersionStandardSchemeFactory()); + schemes.put(TupleScheme.class, new SchemaVersionTupleSchemeFactory()); + } + + private ISchemaName schema; // required + private int version; // required + private long createdAt; // required + private List<FieldSchema> cols; // required + private SchemaVersionState state; // optional + private String description; // optional + private String schemaText; // optional + private String fingerprint; // optional + private String name; // optional + private SerDeInfo serDe; // 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 { + SCHEMA((short)1, "schema"), + VERSION((short)2, "version"), + CREATED_AT((short)3, "createdAt"), + COLS((short)4, "cols"), + /** + * + * @see SchemaVersionState + */ + STATE((short)5, "state"), + DESCRIPTION((short)6, "description"), + SCHEMA_TEXT((short)7, "schemaText"), + FINGERPRINT((short)8, "fingerprint"), + NAME((short)9, "name"), + SER_DE((short)10, "serDe"); + + 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: // SCHEMA + return SCHEMA; + case 2: // VERSION + return VERSION; + case 3: // CREATED_AT + return CREATED_AT; + case 4: // COLS + return COLS; + case 5: // STATE + return STATE; + case 6: // DESCRIPTION + return DESCRIPTION; + case 7: // SCHEMA_TEXT + return SCHEMA_TEXT; + case 8: // FINGERPRINT + return FINGERPRINT; + case 9: // NAME + return NAME; + case 10: // SER_DE + return SER_DE; + 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 + private static final int __VERSION_ISSET_ID = 0; + private static final int __CREATEDAT_ISSET_ID = 1; + private byte __isset_bitfield = 0; + private static final _Fields optionals[] = {_Fields.STATE,_Fields.DESCRIPTION,_Fields.SCHEMA_TEXT,_Fields.FINGERPRINT,_Fields.NAME,_Fields.SER_DE}; + 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.SCHEMA, new org.apache.thrift.meta_data.FieldMetaData("schema", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ISchemaName.class))); + tmpMap.put(_Fields.VERSION, new org.apache.thrift.meta_data.FieldMetaData("version", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32))); + tmpMap.put(_Fields.CREATED_AT, new org.apache.thrift.meta_data.FieldMetaData("createdAt", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I64))); + tmpMap.put(_Fields.COLS, new org.apache.thrift.meta_data.FieldMetaData("cols", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.ListMetaData(org.apache.thrift.protocol.TType.LIST, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, FieldSchema.class)))); + tmpMap.put(_Fields.STATE, new org.apache.thrift.meta_data.FieldMetaData("state", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, SchemaVersionState.class))); + tmpMap.put(_Fields.DESCRIPTION, new org.apache.thrift.meta_data.FieldMetaData("description", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.SCHEMA_TEXT, new org.apache.thrift.meta_data.FieldMetaData("schemaText", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.FINGERPRINT, new org.apache.thrift.meta_data.FieldMetaData("fingerprint", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.NAME, new org.apache.thrift.meta_data.FieldMetaData("name", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.SER_DE, new org.apache.thrift.meta_data.FieldMetaData("serDe", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, SerDeInfo.class))); + metaDataMap = Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SchemaVersion.class, metaDataMap); + } + + public SchemaVersion() { + } + + public SchemaVersion( + ISchemaName schema, + int version, + long createdAt, + List<FieldSchema> cols) + { + this(); + this.schema = schema; + this.version = version; + setVersionIsSet(true); + this.createdAt = createdAt; + setCreatedAtIsSet(true); + this.cols = cols; + } + + /** + * Performs a deep copy on <i>other</i>. + */ + public SchemaVersion(SchemaVersion other) { + __isset_bitfield = other.__isset_bitfield; + if (other.isSetSchema()) { + this.schema = new ISchemaName(other.schema); + } + this.version = other.version; + this.createdAt = other.createdAt; + if (other.isSetCols()) { + List<FieldSchema> __this__cols = new ArrayList<FieldSchema>(other.cols.size()); + for (FieldSchema other_element : other.cols) { + __this__cols.add(new FieldSchema(other_element)); + } + this.cols = __this__cols; + } + if (other.isSetState()) { + this.state = other.state; + } + if (other.isSetDescription()) { + this.description = other.description; + } + if (other.isSetSchemaText()) { + this.schemaText = other.schemaText; + } + if (other.isSetFingerprint()) { + this.fingerprint = other.fingerprint; + } + if (other.isSetName()) { + this.name = other.name; + } + if (other.isSetSerDe()) { + this.serDe = new SerDeInfo(other.serDe); + } + } + + public SchemaVersion deepCopy() { + return new SchemaVersion(this); + } + + @Override + public void clear() { + this.schema = null; + setVersionIsSet(false); + this.version = 0; + setCreatedAtIsSet(false); + this.createdAt = 0; + this.cols = null; + this.state = null; + this.description = null; + this.schemaText = null; + this.fingerprint = null; + this.name = null; + this.serDe = null; + } + + public ISchemaName getSchema() { + return this.schema; + } + + public void setSchema(ISchemaName schema) { + this.schema = schema; + } + + public void unsetSchema() { + this.schema = null; + } + + /** Returns true if field schema is set (has been assigned a value) and false otherwise */ + public boolean isSetSchema() { + return this.schema != null; + } + + public void setSchemaIsSet(boolean value) { + if (!value) { + this.schema = null; + } + } + + public int getVersion() { + return this.version; + } + + public void setVersion(int version) { + this.version = version; + setVersionIsSet(true); + } + + public void unsetVersion() { + __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __VERSION_ISSET_ID); + } + + /** Returns true if field version is set (has been assigned a value) and false otherwise */ + public boolean isSetVersion() { + return EncodingUtils.testBit(__isset_bitfield, __VERSION_ISSET_ID); + } + + public void setVersionIsSet(boolean value) { + __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __VERSION_ISSET_ID, value); + } + + public long getCreatedAt() { + return this.createdAt; + } + + public void setCreatedAt(long createdAt) { + this.createdAt = createdAt; + setCreatedAtIsSet(true); + } + + public void unsetCreatedAt() { + __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __CREATEDAT_ISSET_ID); + } + + /** Returns true if field createdAt is set (has been assigned a value) and false otherwise */ + public boolean isSetCreatedAt() { + return EncodingUtils.testBit(__isset_bitfield, __CREATEDAT_ISSET_ID); + } + + public void setCreatedAtIsSet(boolean value) { + __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __CREATEDAT_ISSET_ID, value); + } + + public int getColsSize() { + return (this.cols == null) ? 0 : this.cols.size(); + } + + public java.util.Iterator<FieldSchema> getColsIterator() { + return (this.cols == null) ? null : this.cols.iterator(); + } + + public void addToCols(FieldSchema elem) { + if (this.cols == null) { + this.cols = new ArrayList<FieldSchema>(); + } + this.cols.add(elem); + } + + public List<FieldSchema> getCols() { + return this.cols; + } + + public void setCols(List<FieldSchema> cols) { + this.cols = cols; + } + + public void unsetCols() { + this.cols = null; + } + + /** Returns true if field cols is set (has been assigned a value) and false otherwise */ + public boolean isSetCols() { + return this.cols != null; + } + + public void setColsIsSet(boolean value) { + if (!value) { + this.cols = null; + } + } + + /** + * + * @see SchemaVersionState + */ + public SchemaVersionState getState() { + return this.state; + } + + /** + * + * @see SchemaVersionState + */ + public void setState(SchemaVersionState state) { + this.state = state; + } + + public void unsetState() { + this.state = null; + } + + /** Returns true if field state is set (has been assigned a value) and false otherwise */ + public boolean isSetState() { + return this.state != null; + } + + public void setStateIsSet(boolean value) { + if (!value) { + this.state = null; + } + } + + public String getDescription() { + return this.description; + } + + public void setDescription(String description) { + this.description = description; + } + + public void unsetDescription() { + this.description = null; + } + + /** Returns true if field description is set (has been assigned a value) and false otherwise */ + public boolean isSetDescription() { + return this.description != null; + } + + public void setDescriptionIsSet(boolean value) { + if (!value) { + this.description = null; + } + } + + public String getSchemaText() { + return this.schemaText; + } + + public void setSchemaText(String schemaText) { + this.schemaText = schemaText; + } + + public void unsetSchemaText() { + this.schemaText = null; + } + + /** Returns true if field schemaText is set (has been assigned a value) and false otherwise */ + public boolean isSetSchemaText() { + return this.schemaText != null; + } + + public void setSchemaTextIsSet(boolean value) { + if (!value) { + this.schemaText = null; + } + } + + public String getFingerprint() { + return this.fingerprint; + } + + public void setFingerprint(String fingerprint) { + this.fingerprint = fingerprint; + } + + public void unsetFingerprint() { + this.fingerprint = null; + } + + /** Returns true if field fingerprint is set (has been assigned a value) and false otherwise */ + public boolean isSetFingerprint() { + return this.fingerprint != null; + } + + public void setFingerprintIsSet(boolean value) { + if (!value) { + this.fingerprint = null; + } + } + + public String getName() { + return this.name; + } + + public void setName(String name) { + this.name = name; + } + + public void unsetName() { + this.name = null; + } + + /** Returns true if field name is set (has been assigned a value) and false otherwise */ + public boolean isSetName() { + return this.name != null; + } + + public void setNameIsSet(boolean value) { + if (!value) { + this.name = null; + } + } + + public SerDeInfo getSerDe() { + return this.serDe; + } + + public void setSerDe(SerDeInfo serDe) { + this.serDe = serDe; + } + + public void unsetSerDe() { + this.serDe = null; + } + + /** Returns true if field serDe is set (has been assigned a value) and false otherwise */ + public boolean isSetSerDe() { + return this.serDe != null; + } + + public void setSerDeIsSet(boolean value) { + if (!value) { + this.serDe = null; + } + } + + public void setFieldValue(_Fields field, Object value) { + switch (field) { + case SCHEMA: + if (value == null) { + unsetSchema(); + } else { + setSchema((ISchemaName)value); + } + break; + + case VERSION: + if (value == null) { + unsetVersion(); + } else { + setVersion((Integer)value); + } + break; + + case CREATED_AT: + if (value == null) { + unsetCreatedAt(); + } else { + setCreatedAt((Long)value); + } + break; + + case COLS: + if (value == null) { + unsetCols(); + } else { + setCols((List<FieldSchema>)value); + } + break; + + case STATE: + if (value == null) { + unsetState(); + } else { + setState((SchemaVersionState)value); + } + break; + + case DESCRIPTION: + if (value == null) { + unsetDescription(); + } else { + setDescription((String)value); + } + break; + + case SCHEMA_TEXT: + if (value == null) { + unsetSchemaText(); + } else { + setSchemaText((String)value); + } + break; + + case FINGERPRINT: + if (value == null) { + unsetFingerprint(); + } else { + setFingerprint((String)value); + } + break; + + case NAME: + if (value == null) { + unsetName(); + } else { + setName((String)value); + } + break; + + case SER_DE: + if (value == null) { + unsetSerDe(); + } else { + setSerDe((SerDeInfo)value); + } + break; + + } + } + + public Object getFieldValue(_Fields field) { + switch (field) { + case SCHEMA: + return getSchema(); + + case VERSION: + return getVersion(); + + case CREATED_AT: + return getCreatedAt(); + + case COLS: + return getCols(); + + case STATE: + return getState(); + + case DESCRIPTION: + return getDescription(); + + case SCHEMA_TEXT: + return getSchemaText(); + + case FINGERPRINT: + return getFingerprint(); + + case NAME: + return getName(); + + case SER_DE: + return getSerDe(); + + } + 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 SCHEMA: + return isSetSchema(); + case VERSION: + return isSetVersion(); + case CREATED_AT: + return isSetCreatedAt(); + case COLS: + return isSetCols(); + case STATE: + return isSetState(); + case DESCRIPTION: + return isSetDescription(); + case SCHEMA_TEXT: + return isSetSchemaText(); + case FINGERPRINT: + return isSetFingerprint(); + case NAME: + return isSetName(); + case SER_DE: + return isSetSerDe(); + } + throw new IllegalStateException(); + } + + @Override + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof SchemaVersion) + return this.equals((SchemaVersion)that); + return false; + } + + public boolean equals(SchemaVersion that) { + if (that == null) + return false; + + boolean this_present_schema = true && this.isSetSchema(); + boolean that_present_schema = true && that.isSetSchema(); + if (this_present_schema || that_present_schema) { + if (!(this_present_schema && that_present_schema)) + return false; + if (!this.schema.equals(that.schema)) + return false; + } + + boolean this_present_version = true; + boolean that_present_version = true; + if (this_present_version || that_present_version) { + if (!(this_present_version && that_present_version)) + return false; + if (this.version != that.version) + return false; + } + + boolean this_present_createdAt = true; + boolean that_present_createdAt = true; + if (this_present_createdAt || that_present_createdAt) { + if (!(this_present_createdAt && that_present_createdAt)) + return false; + if (this.createdAt != that.createdAt) + return false; + } + + boolean this_present_cols = true && this.isSetCols(); + boolean that_present_cols = true && that.isSetCols(); + if (this_present_cols || that_present_cols) { + if (!(this_present_cols && that_present_cols)) + return false; + if (!this.cols.equals(that.cols)) + return false; + } + + boolean this_present_state = true && this.isSetState(); + boolean that_present_state = true && that.isSetState(); + if (this_present_state || that_present_state) { + if (!(this_present_state && that_present_state)) + return false; + if (!this.state.equals(that.state)) + return false; + } + + boolean this_present_description = true && this.isSetDescription(); + boolean that_present_description = true && that.isSetDescription(); + if (this_present_description || that_present_description) { + if (!(this_present_description && that_present_description)) + return false; + if (!this.description.equals(that.description)) + return false; + } + + boolean this_present_schemaText = true && this.isSetSchemaText(); + boolean that_present_schemaText = true && that.isSetSchemaText(); + if (this_present_schemaText || that_present_schemaText) { + if (!(this_present_schemaText && that_present_schemaText)) + return false; + if (!this.schemaText.equals(that.schemaText)) + return false; + } + + boolean this_present_fingerprint = true && this.isSetFingerprint(); + boolean that_present_fingerprint = true && that.isSetFingerprint(); + if (this_present_fingerprint || that_present_fingerprint) { + if (!(this_present_fingerprint && that_present_fingerprint)) + return false; + if (!this.fingerprint.equals(that.fingerprint)) + return false; + } + + boolean this_present_name = true && this.isSetName(); + boolean that_present_name = true && that.isSetName(); + if (this_present_name || that_present_name) { + if (!(this_present_name && that_present_name)) + return false; + if (!this.name.equals(that.name)) + return false; + } + + boolean this_present_serDe = true && this.isSetSerDe(); + boolean that_present_serDe = true && that.isSetSerDe(); + if (this_present_serDe || that_present_serDe) { + if (!(this_present_serDe && that_present_serDe)) + return false; + if (!this.serDe.equals(that.serDe)) + return false; + } + + return true; + } + + @Override + public int hashCode() { + List<Object> list = new ArrayList<Object>(); + + boolean present_schema = true && (isSetSchema()); + list.add(present_schema); + if (present_schema) + list.add(schema); + + boolean present_version = true; + list.add(present_version); + if (present_version) + list.add(version); + + boolean present_createdAt = true; + list.add(present_createdAt); + if (present_createdAt) + list.add(createdAt); + + boolean present_cols = true && (isSetCols()); + list.add(present_cols); + if (present_cols) + list.add(cols); + + boolean present_state = true && (isSetState()); + list.add(present_state); + if (present_state) + list.add(state.getValue()); + + boolean present_description = true && (isSetDescription()); + list.add(present_description); + if (present_description) + list.add(description); + + boolean present_schemaText = true && (isSetSchemaText()); + list.add(present_schemaText); + if (present_schemaText) + list.add(schemaText); + + boolean present_fingerprint = true && (isSetFingerprint()); + list.add(present_fingerprint); + if (present_fingerprint) + list.add(fingerprint); + + boolean present_name = true && (isSetName()); + list.add(present_name); + if (present_name) + list.add(name); + + boolean present_serDe = true && (isSetSerDe()); + list.add(present_serDe); + if (present_serDe) + list.add(serDe); + + return list.hashCode(); + } + + @Override + public int compareTo(SchemaVersion other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = Boolean.valueOf(isSetSchema()).compareTo(other.isSetSchema()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSchema()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.schema, other.schema); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetVersion()).compareTo(other.isSetVersion()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetVersion()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.version, other.version); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetCreatedAt()).compareTo(other.isSetCreatedAt()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCreatedAt()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.createdAt, other.createdAt); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetCols()).compareTo(other.isSetCols()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetCols()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.cols, other.cols); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetState()).compareTo(other.isSetState()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetState()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.state, other.state); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetDescription()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.description, other.description); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetSchemaText()).compareTo(other.isSetSchemaText()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSchemaText()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.schemaText, other.schemaText); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetFingerprint()).compareTo(other.isSetFingerprint()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetFingerprint()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.fingerprint, other.fingerprint); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetName()).compareTo(other.isSetName()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetName()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.name, other.name); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetSerDe()).compareTo(other.isSetSerDe()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSerDe()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serDe, other.serDe); + 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("SchemaVersion("); + boolean first = true; + + sb.append("schema:"); + if (this.schema == null) { + sb.append("null"); + } else { + sb.append(this.schema); + } + first = false; + if (!first) sb.append(", "); + sb.append("version:"); + sb.append(this.version); + first = false; + if (!first) sb.append(", "); + sb.append("createdAt:"); + sb.append(this.createdAt); + first = false; + if (!first) sb.append(", "); + sb.append("cols:"); + if (this.cols == null) { + sb.append("null"); + } else { + sb.append(this.cols); + } + first = false; + if (isSetState()) { + if (!first) sb.append(", "); + sb.append("state:"); + if (this.state == null) { + sb.append("null"); + } else { + sb.append(this.state); + } + first = false; + } + if (isSetDescription()) { + if (!first) sb.append(", "); + sb.append("description:"); + if (this.description == null) { + sb.append("null"); + } else { + sb.append(this.description); + } + first = false; + } + if (isSetSchemaText()) { + if (!first) sb.append(", "); + sb.append("schemaText:"); + if (this.schemaText == null) { + sb.append("null"); + } else { + sb.append(this.schemaText); + } + first = false; + } + if (isSetFingerprint()) { + if (!first) sb.append(", "); + sb.append("fingerprint:"); + if (this.fingerprint == null) { + sb.append("null"); + } else { + sb.append(this.fingerprint); + } + first = false; + } + if (isSetName()) { + if (!first) sb.append(", "); + sb.append("name:"); + if (this.name == null) { + sb.append("null"); + } else { + sb.append(this.name); + } + first = false; + } + if (isSetSerDe()) { + if (!first) sb.append(", "); + sb.append("serDe:"); + if (this.serDe == null) { + sb.append("null"); + } else { + sb.append(this.serDe); + } + first = false; + } + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + if (schema != null) { + schema.validate(); + } + if (serDe != null) { + serDe.validate(); + } + } + + 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 { + // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. + __isset_bitfield = 0; + 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 SchemaVersionStandardSchemeFactory implements SchemeFactory { + public SchemaVersionStandardScheme getScheme() { + return new SchemaVersionStandardScheme(); + } + } + + private static class SchemaVersionStandardScheme extends StandardScheme<SchemaVersion> { + + public void read(org.apache.thrift.protocol.TProtocol iprot, SchemaVersion 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: // SCHEMA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.schema = new ISchemaName(); + struct.schema.read(iprot); + struct.setSchemaIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // VERSION + if (schemeField.type == org.apache.thrift.protocol.TType.I32) { + struct.version = iprot.readI32(); + struct.setVersionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 3: // CREATED_AT + if (schemeField.type == org.apache.thrift.protocol.TType.I64) { + struct.createdAt = iprot.readI64(); + struct.setCreatedAtIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 4: // COLS + if (schemeField.type == org.apache.thrift.protocol.TType.LIST) { + { + org.apache.thrift.protocol.TList _list864 = iprot.readListBegin(); + struct.cols = new ArrayList<FieldSchema>(_list864.size); + FieldSchema _elem865; + for (int _i866 = 0; _i866 < _list864.size; ++_i866) + { + _elem865 = new FieldSchema(); + _elem865.read(iprot); + struct.cols.add(_elem865); + } + iprot.readListEnd(); + } + struct.setColsIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // STATE + if (schemeField.type == org.apache.thrift.protocol.TType.I32) { + struct.state = org.apache.hadoop.hive.metastore.api.SchemaVersionState.findByValue(iprot.readI32()); + struct.setStateIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // DESCRIPTION + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.description = iprot.readString(); + struct.setDescriptionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 7: // SCHEMA_TEXT + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.schemaText = iprot.readString(); + struct.setSchemaTextIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 8: // FINGERPRINT + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.fingerprint = iprot.readString(); + struct.setFingerprintIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 9: // NAME + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.name = iprot.readString(); + struct.setNameIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 10: // SER_DE + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.serDe = new SerDeInfo(); + struct.serDe.read(iprot); + struct.setSerDeIsSet(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, SchemaVersion struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.schema != null) { + oprot.writeFieldBegin(SCHEMA_FIELD_DESC); + struct.schema.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldBegin(VERSION_FIELD_DESC); + oprot.writeI32(struct.version); + oprot.writeFieldEnd(); + oprot.writeFieldBegin(CREATED_AT_FIELD_DESC); + oprot.writeI64(struct.createdAt); + oprot.writeFieldEnd(); + if (struct.cols != null) { + oprot.writeFieldBegin(COLS_FIELD_DESC); + { + oprot.writeListBegin(new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, struct.cols.size())); + for (FieldSchema _iter867 : struct.cols) + { + _iter867.write(oprot); + } + oprot.writeListEnd(); + } + oprot.writeFieldEnd(); + } + if (struct.state != null) { + if (struct.isSetState()) { + oprot.writeFieldBegin(STATE_FIELD_DESC); + oprot.writeI32(struct.state.getValue()); + oprot.writeFieldEnd(); + } + } + if (struct.description != null) { + if (struct.isSetDescription()) { + oprot.writeFieldBegin(DESCRIPTION_FIELD_DESC); + oprot.writeString(struct.description); + oprot.writeFieldEnd(); + } + } + if (struct.schemaText != null) { + if (struct.isSetSchemaText()) { + oprot.writeFieldBegin(SCHEMA_TEXT_FIELD_DESC); + oprot.writeString(struct.schemaText); + oprot.writeFieldEnd(); + } + } + if (struct.fingerprint != null) { + if (struct.isSetFingerprint()) { + oprot.writeFieldBegin(FINGERPRINT_FIELD_DESC); + oprot.writeString(struct.fingerprint); + oprot.writeFieldEnd(); + } + } + if (struct.name != null) { + if (struct.isSetName()) { + oprot.writeFieldBegin(NAME_FIELD_DESC); + oprot.writeString(struct.name); + oprot.writeFieldEnd(); + } + } + if (struct.serDe != null) { + if (struct.isSetSerDe()) { + oprot.writeFieldBegin(SER_DE_FIELD_DESC); + struct.serDe.write(oprot); + oprot.writeFieldEnd(); + } + } + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class SchemaVersionTupleSchemeFactory implements SchemeFactory { + public SchemaVersionTupleScheme getScheme() { + return new SchemaVersionTupleScheme(); + } + } + + private static class SchemaVersionTupleScheme extends TupleScheme<SchemaVersion> { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, SchemaVersion struct) throws org.apache.thrift.TException { + TTupleProtocol oprot = (TTupleProtocol) prot; + BitSet optionals = new BitSet(); + if (struct.isSetSchema()) { + optionals.set(0); + } + if (struct.isSetVersion()) { + optionals.set(1); + } + if (struct.isSetCreatedAt()) { + optionals.set(2); + } + if (struct.isSetCols()) { + optionals.set(3); + } + if (struct.isSetState()) { + optionals.set(4); + } + if (struct.isSetDescription()) { + optionals.set(5); + } + if (struct.isSetSchemaText()) { + optionals.set(6); + } + if (struct.isSetFingerprint()) { + optionals.set(7); + } + if (struct.isSetName()) { + optionals.set(8); + } + if (struct.isSetSerDe()) { + optionals.set(9); + } + oprot.writeBitSet(optionals, 10); + if (struct.isSetSchema()) { + struct.schema.write(oprot); + } + if (struct.isSetVersion()) { + oprot.writeI32(struct.version); + } + if (struct.isSetCreatedAt()) { + oprot.writeI64(struct.createdAt); + } + if (struct.isSetCols()) { + { + oprot.writeI32(struct.cols.size()); + for (FieldSchema _iter868 : struct.cols) + { + _iter868.write(oprot); + } + } + } + if (struct.isSetState()) { + oprot.writeI32(struct.state.getValue()); + } + if (struct.isSetDescription()) { + oprot.writeString(struct.description); + } + if (struct.isSetSchemaText()) { + oprot.writeString(struct.schemaText); + } + if (struct.isSetFingerprint()) { + oprot.writeString(struct.fingerprint); + } + if (struct.isSetName()) { + oprot.writeString(struct.name); + } + if (struct.isSetSerDe()) { + struct.serDe.write(oprot); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, SchemaVersion struct) throws org.apache.thrift.TException { + TTupleProtocol iprot = (TTupleProtocol) prot; + BitSet incoming = iprot.readBitSet(10); + if (incoming.get(0)) { + struct.schema = new ISchemaName(); + struct.schema.read(iprot); + struct.setSchemaIsSet(true); + } + if (incoming.get(1)) { + struct.version = iprot.readI32(); + struct.setVersionIsSet(true); + } + if (incoming.get(2)) { + struct.createdAt = iprot.readI64(); + struct.setCreatedAtIsSet(true); + } + if (incoming.get(3)) { + { + org.apache.thrift.protocol.TList _list869 = new org.apache.thrift.protocol.TList(org.apache.thrift.protocol.TType.STRUCT, iprot.readI32()); + struct.cols = new ArrayList<FieldSchema>(_list869.size); + FieldSchema _elem870; + for (int _i871 = 0; _i871 < _list869.size; ++_i871) + { + _elem870 = new FieldSchema(); + _elem870.read(iprot); + struct.cols.add(_elem870); + } + } + struct.setColsIsSet(true); + } + if (incoming.get(4)) { + struct.state = org.apache.hadoop.hive.metastore.api.SchemaVersionState.findByValue(iprot.readI32()); + struct.setStateIsSet(true); + } + if (incoming.get(5)) { + struct.description = iprot.readString(); + struct.setDescriptionIsSet(true); + } + if (incoming.get(6)) { + struct.schemaText = iprot.readString(); + struct.setSchemaTextIsSet(true); + } + if (incoming.get(7)) { + struct.fingerprint = iprot.readString(); + struct.setFingerprintIsSet(true); + } + if (incoming.get(8)) { + struct.name = iprot.readString(); + struct.setNameIsSet(true); + } + if (incoming.get(9)) { + struct.serDe = new SerDeInfo(); + struct.serDe.read(iprot); + struct.setSerDeIsSet(true); + } + } + } + +} +
http://git-wip-us.apache.org/repos/asf/hive/blob/12041d39/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java new file mode 100644 index 0000000..1df8b41 --- /dev/null +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionDescriptor.java @@ -0,0 +1,502 @@ +/** + * Autogenerated by Thrift Compiler (0.9.3) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +package org.apache.hadoop.hive.metastore.api; + +import org.apache.thrift.scheme.IScheme; +import org.apache.thrift.scheme.SchemeFactory; +import org.apache.thrift.scheme.StandardScheme; + +import org.apache.thrift.scheme.TupleScheme; +import org.apache.thrift.protocol.TTupleProtocol; +import org.apache.thrift.protocol.TProtocolException; +import org.apache.thrift.EncodingUtils; +import org.apache.thrift.TException; +import org.apache.thrift.async.AsyncMethodCallback; +import org.apache.thrift.server.AbstractNonblockingServer.*; +import java.util.List; +import java.util.ArrayList; +import java.util.Map; +import java.util.HashMap; +import java.util.EnumMap; +import java.util.Set; +import java.util.HashSet; +import java.util.EnumSet; +import java.util.Collections; +import java.util.BitSet; +import java.nio.ByteBuffer; +import java.util.Arrays; +import javax.annotation.Generated; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +@SuppressWarnings({"cast", "rawtypes", "serial", "unchecked"}) +@Generated(value = "Autogenerated by Thrift Compiler (0.9.3)") +@org.apache.hadoop.classification.InterfaceAudience.Public @org.apache.hadoop.classification.InterfaceStability.Stable public class SchemaVersionDescriptor implements org.apache.thrift.TBase<SchemaVersionDescriptor, SchemaVersionDescriptor._Fields>, java.io.Serializable, Cloneable, Comparable<SchemaVersionDescriptor> { + private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("SchemaVersionDescriptor"); + + private static final org.apache.thrift.protocol.TField SCHEMA_FIELD_DESC = new org.apache.thrift.protocol.TField("schema", org.apache.thrift.protocol.TType.STRUCT, (short)1); + private static final org.apache.thrift.protocol.TField VERSION_FIELD_DESC = new org.apache.thrift.protocol.TField("version", org.apache.thrift.protocol.TType.I32, (short)2); + + private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); + static { + schemes.put(StandardScheme.class, new SchemaVersionDescriptorStandardSchemeFactory()); + schemes.put(TupleScheme.class, new SchemaVersionDescriptorTupleSchemeFactory()); + } + + private ISchemaName schema; // required + private int version; // 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 { + SCHEMA((short)1, "schema"), + VERSION((short)2, "version"); + + 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: // SCHEMA + return SCHEMA; + case 2: // VERSION + return VERSION; + 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 + private static final int __VERSION_ISSET_ID = 0; + private byte __isset_bitfield = 0; + 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.SCHEMA, new org.apache.thrift.meta_data.FieldMetaData("schema", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.StructMetaData(org.apache.thrift.protocol.TType.STRUCT, ISchemaName.class))); + tmpMap.put(_Fields.VERSION, new org.apache.thrift.meta_data.FieldMetaData("version", org.apache.thrift.TFieldRequirementType.DEFAULT, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.I32))); + metaDataMap = Collections.unmodifiableMap(tmpMap); + org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SchemaVersionDescriptor.class, metaDataMap); + } + + public SchemaVersionDescriptor() { + } + + public SchemaVersionDescriptor( + ISchemaName schema, + int version) + { + this(); + this.schema = schema; + this.version = version; + setVersionIsSet(true); + } + + /** + * Performs a deep copy on <i>other</i>. + */ + public SchemaVersionDescriptor(SchemaVersionDescriptor other) { + __isset_bitfield = other.__isset_bitfield; + if (other.isSetSchema()) { + this.schema = new ISchemaName(other.schema); + } + this.version = other.version; + } + + public SchemaVersionDescriptor deepCopy() { + return new SchemaVersionDescriptor(this); + } + + @Override + public void clear() { + this.schema = null; + setVersionIsSet(false); + this.version = 0; + } + + public ISchemaName getSchema() { + return this.schema; + } + + public void setSchema(ISchemaName schema) { + this.schema = schema; + } + + public void unsetSchema() { + this.schema = null; + } + + /** Returns true if field schema is set (has been assigned a value) and false otherwise */ + public boolean isSetSchema() { + return this.schema != null; + } + + public void setSchemaIsSet(boolean value) { + if (!value) { + this.schema = null; + } + } + + public int getVersion() { + return this.version; + } + + public void setVersion(int version) { + this.version = version; + setVersionIsSet(true); + } + + public void unsetVersion() { + __isset_bitfield = EncodingUtils.clearBit(__isset_bitfield, __VERSION_ISSET_ID); + } + + /** Returns true if field version is set (has been assigned a value) and false otherwise */ + public boolean isSetVersion() { + return EncodingUtils.testBit(__isset_bitfield, __VERSION_ISSET_ID); + } + + public void setVersionIsSet(boolean value) { + __isset_bitfield = EncodingUtils.setBit(__isset_bitfield, __VERSION_ISSET_ID, value); + } + + public void setFieldValue(_Fields field, Object value) { + switch (field) { + case SCHEMA: + if (value == null) { + unsetSchema(); + } else { + setSchema((ISchemaName)value); + } + break; + + case VERSION: + if (value == null) { + unsetVersion(); + } else { + setVersion((Integer)value); + } + break; + + } + } + + public Object getFieldValue(_Fields field) { + switch (field) { + case SCHEMA: + return getSchema(); + + case VERSION: + return getVersion(); + + } + 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 SCHEMA: + return isSetSchema(); + case VERSION: + return isSetVersion(); + } + throw new IllegalStateException(); + } + + @Override + public boolean equals(Object that) { + if (that == null) + return false; + if (that instanceof SchemaVersionDescriptor) + return this.equals((SchemaVersionDescriptor)that); + return false; + } + + public boolean equals(SchemaVersionDescriptor that) { + if (that == null) + return false; + + boolean this_present_schema = true && this.isSetSchema(); + boolean that_present_schema = true && that.isSetSchema(); + if (this_present_schema || that_present_schema) { + if (!(this_present_schema && that_present_schema)) + return false; + if (!this.schema.equals(that.schema)) + return false; + } + + boolean this_present_version = true; + boolean that_present_version = true; + if (this_present_version || that_present_version) { + if (!(this_present_version && that_present_version)) + return false; + if (this.version != that.version) + return false; + } + + return true; + } + + @Override + public int hashCode() { + List<Object> list = new ArrayList<Object>(); + + boolean present_schema = true && (isSetSchema()); + list.add(present_schema); + if (present_schema) + list.add(schema); + + boolean present_version = true; + list.add(present_version); + if (present_version) + list.add(version); + + return list.hashCode(); + } + + @Override + public int compareTo(SchemaVersionDescriptor other) { + if (!getClass().equals(other.getClass())) { + return getClass().getName().compareTo(other.getClass().getName()); + } + + int lastComparison = 0; + + lastComparison = Boolean.valueOf(isSetSchema()).compareTo(other.isSetSchema()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSchema()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.schema, other.schema); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetVersion()).compareTo(other.isSetVersion()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetVersion()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.version, other.version); + 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("SchemaVersionDescriptor("); + boolean first = true; + + sb.append("schema:"); + if (this.schema == null) { + sb.append("null"); + } else { + sb.append(this.schema); + } + first = false; + if (!first) sb.append(", "); + sb.append("version:"); + sb.append(this.version); + first = false; + sb.append(")"); + return sb.toString(); + } + + public void validate() throws org.apache.thrift.TException { + // check for required fields + // check for sub-struct validity + if (schema != null) { + schema.validate(); + } + } + + 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 { + // it doesn't seem like you should have to do this, but java serialization is wacky, and doesn't call the default constructor. + __isset_bitfield = 0; + 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 SchemaVersionDescriptorStandardSchemeFactory implements SchemeFactory { + public SchemaVersionDescriptorStandardScheme getScheme() { + return new SchemaVersionDescriptorStandardScheme(); + } + } + + private static class SchemaVersionDescriptorStandardScheme extends StandardScheme<SchemaVersionDescriptor> { + + public void read(org.apache.thrift.protocol.TProtocol iprot, SchemaVersionDescriptor 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: // SCHEMA + if (schemeField.type == org.apache.thrift.protocol.TType.STRUCT) { + struct.schema = new ISchemaName(); + struct.schema.read(iprot); + struct.setSchemaIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 2: // VERSION + if (schemeField.type == org.apache.thrift.protocol.TType.I32) { + struct.version = iprot.readI32(); + struct.setVersionIsSet(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, SchemaVersionDescriptor struct) throws org.apache.thrift.TException { + struct.validate(); + + oprot.writeStructBegin(STRUCT_DESC); + if (struct.schema != null) { + oprot.writeFieldBegin(SCHEMA_FIELD_DESC); + struct.schema.write(oprot); + oprot.writeFieldEnd(); + } + oprot.writeFieldBegin(VERSION_FIELD_DESC); + oprot.writeI32(struct.version); + oprot.writeFieldEnd(); + oprot.writeFieldStop(); + oprot.writeStructEnd(); + } + + } + + private static class SchemaVersionDescriptorTupleSchemeFactory implements SchemeFactory { + public SchemaVersionDescriptorTupleScheme getScheme() { + return new SchemaVersionDescriptorTupleScheme(); + } + } + + private static class SchemaVersionDescriptorTupleScheme extends TupleScheme<SchemaVersionDescriptor> { + + @Override + public void write(org.apache.thrift.protocol.TProtocol prot, SchemaVersionDescriptor struct) throws org.apache.thrift.TException { + TTupleProtocol oprot = (TTupleProtocol) prot; + BitSet optionals = new BitSet(); + if (struct.isSetSchema()) { + optionals.set(0); + } + if (struct.isSetVersion()) { + optionals.set(1); + } + oprot.writeBitSet(optionals, 2); + if (struct.isSetSchema()) { + struct.schema.write(oprot); + } + if (struct.isSetVersion()) { + oprot.writeI32(struct.version); + } + } + + @Override + public void read(org.apache.thrift.protocol.TProtocol prot, SchemaVersionDescriptor struct) throws org.apache.thrift.TException { + TTupleProtocol iprot = (TTupleProtocol) prot; + BitSet incoming = iprot.readBitSet(2); + if (incoming.get(0)) { + struct.schema = new ISchemaName(); + struct.schema.read(iprot); + struct.setSchemaIsSet(true); + } + if (incoming.get(1)) { + struct.version = iprot.readI32(); + struct.setVersionIsSet(true); + } + } + } + +} + http://git-wip-us.apache.org/repos/asf/hive/blob/12041d39/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java new file mode 100644 index 0000000..9dd96dc --- /dev/null +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SchemaVersionState.java @@ -0,0 +1,63 @@ +/** + * Autogenerated by Thrift Compiler (0.9.3) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +package org.apache.hadoop.hive.metastore.api; + + +import java.util.Map; +import java.util.HashMap; +import org.apache.thrift.TEnum; + +public enum SchemaVersionState implements org.apache.thrift.TEnum { + INITIATED(1), + START_REVIEW(2), + CHANGES_REQUIRED(3), + REVIEWED(4), + ENABLED(5), + DISABLED(6), + ARCHIVED(7), + DELETED(8); + + private final int value; + + private SchemaVersionState(int value) { + this.value = value; + } + + /** + * Get the integer value of this enum value, as defined in the Thrift IDL. + */ + public int getValue() { + return value; + } + + /** + * Find a the enum type by its integer value, as defined in the Thrift IDL. + * @return null if the value is not found. + */ + public static SchemaVersionState findByValue(int value) { + switch (value) { + case 1: + return INITIATED; + case 2: + return START_REVIEW; + case 3: + return CHANGES_REQUIRED; + case 4: + return REVIEWED; + case 5: + return ENABLED; + case 6: + return DISABLED; + case 7: + return ARCHIVED; + case 8: + return DELETED; + default: + return null; + } + } +} http://git-wip-us.apache.org/repos/asf/hive/blob/12041d39/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java index b744f44..a7aba9f 100644 --- a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerDeInfo.java @@ -41,6 +41,10 @@ import org.slf4j.LoggerFactory; private static final org.apache.thrift.protocol.TField NAME_FIELD_DESC = new org.apache.thrift.protocol.TField("name", org.apache.thrift.protocol.TType.STRING, (short)1); private static final org.apache.thrift.protocol.TField SERIALIZATION_LIB_FIELD_DESC = new org.apache.thrift.protocol.TField("serializationLib", org.apache.thrift.protocol.TType.STRING, (short)2); private static final org.apache.thrift.protocol.TField PARAMETERS_FIELD_DESC = new org.apache.thrift.protocol.TField("parameters", org.apache.thrift.protocol.TType.MAP, (short)3); + private static final org.apache.thrift.protocol.TField DESCRIPTION_FIELD_DESC = new org.apache.thrift.protocol.TField("description", org.apache.thrift.protocol.TType.STRING, (short)4); + private static final org.apache.thrift.protocol.TField SERIALIZER_CLASS_FIELD_DESC = new org.apache.thrift.protocol.TField("serializerClass", org.apache.thrift.protocol.TType.STRING, (short)5); + private static final org.apache.thrift.protocol.TField DESERIALIZER_CLASS_FIELD_DESC = new org.apache.thrift.protocol.TField("deserializerClass", org.apache.thrift.protocol.TType.STRING, (short)6); + private static final org.apache.thrift.protocol.TField SERDE_TYPE_FIELD_DESC = new org.apache.thrift.protocol.TField("serdeType", org.apache.thrift.protocol.TType.I32, (short)7); private static final Map<Class<? extends IScheme>, SchemeFactory> schemes = new HashMap<Class<? extends IScheme>, SchemeFactory>(); static { @@ -51,12 +55,24 @@ import org.slf4j.LoggerFactory; private String name; // required private String serializationLib; // required private Map<String,String> parameters; // required + private String description; // optional + private String serializerClass; // optional + private String deserializerClass; // optional + private SerdeType serdeType; // 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 { NAME((short)1, "name"), SERIALIZATION_LIB((short)2, "serializationLib"), - PARAMETERS((short)3, "parameters"); + PARAMETERS((short)3, "parameters"), + DESCRIPTION((short)4, "description"), + SERIALIZER_CLASS((short)5, "serializerClass"), + DESERIALIZER_CLASS((short)6, "deserializerClass"), + /** + * + * @see SerdeType + */ + SERDE_TYPE((short)7, "serdeType"); private static final Map<String, _Fields> byName = new HashMap<String, _Fields>(); @@ -77,6 +93,14 @@ import org.slf4j.LoggerFactory; return SERIALIZATION_LIB; case 3: // PARAMETERS return PARAMETERS; + case 4: // DESCRIPTION + return DESCRIPTION; + case 5: // SERIALIZER_CLASS + return SERIALIZER_CLASS; + case 6: // DESERIALIZER_CLASS + return DESERIALIZER_CLASS; + case 7: // SERDE_TYPE + return SERDE_TYPE; default: return null; } @@ -117,6 +141,7 @@ import org.slf4j.LoggerFactory; } // isset id assignments + private static final _Fields optionals[] = {_Fields.DESCRIPTION,_Fields.SERIALIZER_CLASS,_Fields.DESERIALIZER_CLASS,_Fields.SERDE_TYPE}; 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); @@ -128,6 +153,14 @@ import org.slf4j.LoggerFactory; new org.apache.thrift.meta_data.MapMetaData(org.apache.thrift.protocol.TType.MAP, new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING), new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING)))); + tmpMap.put(_Fields.DESCRIPTION, new org.apache.thrift.meta_data.FieldMetaData("description", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.SERIALIZER_CLASS, new org.apache.thrift.meta_data.FieldMetaData("serializerClass", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.DESERIALIZER_CLASS, new org.apache.thrift.meta_data.FieldMetaData("deserializerClass", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.FieldValueMetaData(org.apache.thrift.protocol.TType.STRING))); + tmpMap.put(_Fields.SERDE_TYPE, new org.apache.thrift.meta_data.FieldMetaData("serdeType", org.apache.thrift.TFieldRequirementType.OPTIONAL, + new org.apache.thrift.meta_data.EnumMetaData(org.apache.thrift.protocol.TType.ENUM, SerdeType.class))); metaDataMap = Collections.unmodifiableMap(tmpMap); org.apache.thrift.meta_data.FieldMetaData.addStructMetaDataMap(SerDeInfo.class, metaDataMap); } @@ -160,6 +193,18 @@ import org.slf4j.LoggerFactory; Map<String,String> __this__parameters = new HashMap<String,String>(other.parameters); this.parameters = __this__parameters; } + if (other.isSetDescription()) { + this.description = other.description; + } + if (other.isSetSerializerClass()) { + this.serializerClass = other.serializerClass; + } + if (other.isSetDeserializerClass()) { + this.deserializerClass = other.deserializerClass; + } + if (other.isSetSerdeType()) { + this.serdeType = other.serdeType; + } } public SerDeInfo deepCopy() { @@ -171,6 +216,10 @@ import org.slf4j.LoggerFactory; this.name = null; this.serializationLib = null; this.parameters = null; + this.description = null; + this.serializerClass = null; + this.deserializerClass = null; + this.serdeType = null; } public String getName() { @@ -253,6 +302,106 @@ import org.slf4j.LoggerFactory; } } + public String getDescription() { + return this.description; + } + + public void setDescription(String description) { + this.description = description; + } + + public void unsetDescription() { + this.description = null; + } + + /** Returns true if field description is set (has been assigned a value) and false otherwise */ + public boolean isSetDescription() { + return this.description != null; + } + + public void setDescriptionIsSet(boolean value) { + if (!value) { + this.description = null; + } + } + + public String getSerializerClass() { + return this.serializerClass; + } + + public void setSerializerClass(String serializerClass) { + this.serializerClass = serializerClass; + } + + public void unsetSerializerClass() { + this.serializerClass = null; + } + + /** Returns true if field serializerClass is set (has been assigned a value) and false otherwise */ + public boolean isSetSerializerClass() { + return this.serializerClass != null; + } + + public void setSerializerClassIsSet(boolean value) { + if (!value) { + this.serializerClass = null; + } + } + + public String getDeserializerClass() { + return this.deserializerClass; + } + + public void setDeserializerClass(String deserializerClass) { + this.deserializerClass = deserializerClass; + } + + public void unsetDeserializerClass() { + this.deserializerClass = null; + } + + /** Returns true if field deserializerClass is set (has been assigned a value) and false otherwise */ + public boolean isSetDeserializerClass() { + return this.deserializerClass != null; + } + + public void setDeserializerClassIsSet(boolean value) { + if (!value) { + this.deserializerClass = null; + } + } + + /** + * + * @see SerdeType + */ + public SerdeType getSerdeType() { + return this.serdeType; + } + + /** + * + * @see SerdeType + */ + public void setSerdeType(SerdeType serdeType) { + this.serdeType = serdeType; + } + + public void unsetSerdeType() { + this.serdeType = null; + } + + /** Returns true if field serdeType is set (has been assigned a value) and false otherwise */ + public boolean isSetSerdeType() { + return this.serdeType != null; + } + + public void setSerdeTypeIsSet(boolean value) { + if (!value) { + this.serdeType = null; + } + } + public void setFieldValue(_Fields field, Object value) { switch (field) { case NAME: @@ -279,6 +428,38 @@ import org.slf4j.LoggerFactory; } break; + case DESCRIPTION: + if (value == null) { + unsetDescription(); + } else { + setDescription((String)value); + } + break; + + case SERIALIZER_CLASS: + if (value == null) { + unsetSerializerClass(); + } else { + setSerializerClass((String)value); + } + break; + + case DESERIALIZER_CLASS: + if (value == null) { + unsetDeserializerClass(); + } else { + setDeserializerClass((String)value); + } + break; + + case SERDE_TYPE: + if (value == null) { + unsetSerdeType(); + } else { + setSerdeType((SerdeType)value); + } + break; + } } @@ -293,6 +474,18 @@ import org.slf4j.LoggerFactory; case PARAMETERS: return getParameters(); + case DESCRIPTION: + return getDescription(); + + case SERIALIZER_CLASS: + return getSerializerClass(); + + case DESERIALIZER_CLASS: + return getDeserializerClass(); + + case SERDE_TYPE: + return getSerdeType(); + } throw new IllegalStateException(); } @@ -310,6 +503,14 @@ import org.slf4j.LoggerFactory; return isSetSerializationLib(); case PARAMETERS: return isSetParameters(); + case DESCRIPTION: + return isSetDescription(); + case SERIALIZER_CLASS: + return isSetSerializerClass(); + case DESERIALIZER_CLASS: + return isSetDeserializerClass(); + case SERDE_TYPE: + return isSetSerdeType(); } throw new IllegalStateException(); } @@ -354,6 +555,42 @@ import org.slf4j.LoggerFactory; return false; } + boolean this_present_description = true && this.isSetDescription(); + boolean that_present_description = true && that.isSetDescription(); + if (this_present_description || that_present_description) { + if (!(this_present_description && that_present_description)) + return false; + if (!this.description.equals(that.description)) + return false; + } + + boolean this_present_serializerClass = true && this.isSetSerializerClass(); + boolean that_present_serializerClass = true && that.isSetSerializerClass(); + if (this_present_serializerClass || that_present_serializerClass) { + if (!(this_present_serializerClass && that_present_serializerClass)) + return false; + if (!this.serializerClass.equals(that.serializerClass)) + return false; + } + + boolean this_present_deserializerClass = true && this.isSetDeserializerClass(); + boolean that_present_deserializerClass = true && that.isSetDeserializerClass(); + if (this_present_deserializerClass || that_present_deserializerClass) { + if (!(this_present_deserializerClass && that_present_deserializerClass)) + return false; + if (!this.deserializerClass.equals(that.deserializerClass)) + return false; + } + + boolean this_present_serdeType = true && this.isSetSerdeType(); + boolean that_present_serdeType = true && that.isSetSerdeType(); + if (this_present_serdeType || that_present_serdeType) { + if (!(this_present_serdeType && that_present_serdeType)) + return false; + if (!this.serdeType.equals(that.serdeType)) + return false; + } + return true; } @@ -376,6 +613,26 @@ import org.slf4j.LoggerFactory; if (present_parameters) list.add(parameters); + boolean present_description = true && (isSetDescription()); + list.add(present_description); + if (present_description) + list.add(description); + + boolean present_serializerClass = true && (isSetSerializerClass()); + list.add(present_serializerClass); + if (present_serializerClass) + list.add(serializerClass); + + boolean present_deserializerClass = true && (isSetDeserializerClass()); + list.add(present_deserializerClass); + if (present_deserializerClass) + list.add(deserializerClass); + + boolean present_serdeType = true && (isSetSerdeType()); + list.add(present_serdeType); + if (present_serdeType) + list.add(serdeType.getValue()); + return list.hashCode(); } @@ -417,6 +674,46 @@ import org.slf4j.LoggerFactory; return lastComparison; } } + lastComparison = Boolean.valueOf(isSetDescription()).compareTo(other.isSetDescription()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetDescription()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.description, other.description); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetSerializerClass()).compareTo(other.isSetSerializerClass()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSerializerClass()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serializerClass, other.serializerClass); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetDeserializerClass()).compareTo(other.isSetDeserializerClass()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetDeserializerClass()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.deserializerClass, other.deserializerClass); + if (lastComparison != 0) { + return lastComparison; + } + } + lastComparison = Boolean.valueOf(isSetSerdeType()).compareTo(other.isSetSerdeType()); + if (lastComparison != 0) { + return lastComparison; + } + if (isSetSerdeType()) { + lastComparison = org.apache.thrift.TBaseHelper.compareTo(this.serdeType, other.serdeType); + if (lastComparison != 0) { + return lastComparison; + } + } return 0; } @@ -460,6 +757,46 @@ import org.slf4j.LoggerFactory; sb.append(this.parameters); } first = false; + if (isSetDescription()) { + if (!first) sb.append(", "); + sb.append("description:"); + if (this.description == null) { + sb.append("null"); + } else { + sb.append(this.description); + } + first = false; + } + if (isSetSerializerClass()) { + if (!first) sb.append(", "); + sb.append("serializerClass:"); + if (this.serializerClass == null) { + sb.append("null"); + } else { + sb.append(this.serializerClass); + } + first = false; + } + if (isSetDeserializerClass()) { + if (!first) sb.append(", "); + sb.append("deserializerClass:"); + if (this.deserializerClass == null) { + sb.append("null"); + } else { + sb.append(this.deserializerClass); + } + first = false; + } + if (isSetSerdeType()) { + if (!first) sb.append(", "); + sb.append("serdeType:"); + if (this.serdeType == null) { + sb.append("null"); + } else { + sb.append(this.serdeType); + } + first = false; + } sb.append(")"); return sb.toString(); } @@ -539,6 +876,38 @@ import org.slf4j.LoggerFactory; org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } break; + case 4: // DESCRIPTION + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.description = iprot.readString(); + struct.setDescriptionIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 5: // SERIALIZER_CLASS + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.serializerClass = iprot.readString(); + struct.setSerializerClassIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 6: // DESERIALIZER_CLASS + if (schemeField.type == org.apache.thrift.protocol.TType.STRING) { + struct.deserializerClass = iprot.readString(); + struct.setDeserializerClassIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; + case 7: // SERDE_TYPE + if (schemeField.type == org.apache.thrift.protocol.TType.I32) { + struct.serdeType = org.apache.hadoop.hive.metastore.api.SerdeType.findByValue(iprot.readI32()); + struct.setSerdeTypeIsSet(true); + } else { + org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); + } + break; default: org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type); } @@ -575,6 +944,34 @@ import org.slf4j.LoggerFactory; } oprot.writeFieldEnd(); } + if (struct.description != null) { + if (struct.isSetDescription()) { + oprot.writeFieldBegin(DESCRIPTION_FIELD_DESC); + oprot.writeString(struct.description); + oprot.writeFieldEnd(); + } + } + if (struct.serializerClass != null) { + if (struct.isSetSerializerClass()) { + oprot.writeFieldBegin(SERIALIZER_CLASS_FIELD_DESC); + oprot.writeString(struct.serializerClass); + oprot.writeFieldEnd(); + } + } + if (struct.deserializerClass != null) { + if (struct.isSetDeserializerClass()) { + oprot.writeFieldBegin(DESERIALIZER_CLASS_FIELD_DESC); + oprot.writeString(struct.deserializerClass); + oprot.writeFieldEnd(); + } + } + if (struct.serdeType != null) { + if (struct.isSetSerdeType()) { + oprot.writeFieldBegin(SERDE_TYPE_FIELD_DESC); + oprot.writeI32(struct.serdeType.getValue()); + oprot.writeFieldEnd(); + } + } oprot.writeFieldStop(); oprot.writeStructEnd(); } @@ -602,7 +999,19 @@ import org.slf4j.LoggerFactory; if (struct.isSetParameters()) { optionals.set(2); } - oprot.writeBitSet(optionals, 3); + if (struct.isSetDescription()) { + optionals.set(3); + } + if (struct.isSetSerializerClass()) { + optionals.set(4); + } + if (struct.isSetDeserializerClass()) { + optionals.set(5); + } + if (struct.isSetSerdeType()) { + optionals.set(6); + } + oprot.writeBitSet(optionals, 7); if (struct.isSetName()) { oprot.writeString(struct.name); } @@ -619,12 +1028,24 @@ import org.slf4j.LoggerFactory; } } } + if (struct.isSetDescription()) { + oprot.writeString(struct.description); + } + if (struct.isSetSerializerClass()) { + oprot.writeString(struct.serializerClass); + } + if (struct.isSetDeserializerClass()) { + oprot.writeString(struct.deserializerClass); + } + if (struct.isSetSerdeType()) { + oprot.writeI32(struct.serdeType.getValue()); + } } @Override public void read(org.apache.thrift.protocol.TProtocol prot, SerDeInfo struct) throws org.apache.thrift.TException { TTupleProtocol iprot = (TTupleProtocol) prot; - BitSet incoming = iprot.readBitSet(3); + BitSet incoming = iprot.readBitSet(7); if (incoming.get(0)) { struct.name = iprot.readString(); struct.setNameIsSet(true); @@ -648,6 +1069,22 @@ import org.slf4j.LoggerFactory; } struct.parameters = org.apache.hadoop.hive.metastore.utils.StringUtils.intern(struct.parameters); struct.setParametersIsSet(true); } + if (incoming.get(3)) { + struct.description = iprot.readString(); + struct.setDescriptionIsSet(true); + } + if (incoming.get(4)) { + struct.serializerClass = iprot.readString(); + struct.setSerializerClassIsSet(true); + } + if (incoming.get(5)) { + struct.deserializerClass = iprot.readString(); + struct.setDeserializerClassIsSet(true); + } + if (incoming.get(6)) { + struct.serdeType = org.apache.hadoop.hive.metastore.api.SerdeType.findByValue(iprot.readI32()); + struct.setSerdeTypeIsSet(true); + } } } http://git-wip-us.apache.org/repos/asf/hive/blob/12041d39/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java ---------------------------------------------------------------------- diff --git a/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java new file mode 100644 index 0000000..7daabed --- /dev/null +++ b/standalone-metastore/src/gen/thrift/gen-javabean/org/apache/hadoop/hive/metastore/api/SerdeType.java @@ -0,0 +1,45 @@ +/** + * Autogenerated by Thrift Compiler (0.9.3) + * + * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING + * @generated + */ +package org.apache.hadoop.hive.metastore.api; + + +import java.util.Map; +import java.util.HashMap; +import org.apache.thrift.TEnum; + +public enum SerdeType implements org.apache.thrift.TEnum { + HIVE(1), + SCHEMA_REGISTRY(2); + + private final int value; + + private SerdeType(int value) { + this.value = value; + } + + /** + * Get the integer value of this enum value, as defined in the Thrift IDL. + */ + public int getValue() { + return value; + } + + /** + * Find a the enum type by its integer value, as defined in the Thrift IDL. + * @return null if the value is not found. + */ + public static SerdeType findByValue(int value) { + switch (value) { + case 1: + return HIVE; + case 2: + return SCHEMA_REGISTRY; + default: + return null; + } + } +}