Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -61711,8 +61711,8 @@ private static <S extends org.apache.thrift.scheme.IScheme> S scheme(org.apache.
private static final org.apache.thrift.protocol.TStruct STRUCT_DESC = new org.apache.thrift.protocol.TStruct("drop_dataconnector_args");

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 IF_NOT_EXISTS_FIELD_DESC = new org.apache.thrift.protocol.TField("ifNotExists", org.apache.thrift.protocol.TType.BOOL, (short)-1);
private static final org.apache.thrift.protocol.TField CHECK_REFERENCES_FIELD_DESC = new org.apache.thrift.protocol.TField("checkReferences", org.apache.thrift.protocol.TType.BOOL, (short)-2);
private static final org.apache.thrift.protocol.TField IF_NOT_EXISTS_FIELD_DESC = new org.apache.thrift.protocol.TField("ifNotExists", org.apache.thrift.protocol.TType.BOOL, (short)2);
private static final org.apache.thrift.protocol.TField CHECK_REFERENCES_FIELD_DESC = new org.apache.thrift.protocol.TField("checkReferences", org.apache.thrift.protocol.TType.BOOL, (short)3);

private static final org.apache.thrift.scheme.SchemeFactory STANDARD_SCHEME_FACTORY = new drop_dataconnector_argsStandardSchemeFactory();
private static final org.apache.thrift.scheme.SchemeFactory TUPLE_SCHEME_FACTORY = new drop_dataconnector_argsTupleSchemeFactory();
Expand All @@ -61724,8 +61724,8 @@ private static <S extends org.apache.thrift.scheme.IScheme> S scheme(org.apache.
/** 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"),
IF_NOT_EXISTS((short)-1, "ifNotExists"),
CHECK_REFERENCES((short)-2, "checkReferences");
IF_NOT_EXISTS((short)2, "ifNotExists"),
CHECK_REFERENCES((short)3, "checkReferences");

private static final java.util.Map<java.lang.String, _Fields> byName = new java.util.HashMap<java.lang.String, _Fields>();

Expand All @@ -61743,9 +61743,9 @@ public static _Fields findByThriftId(int fieldId) {
switch(fieldId) {
case 1: // NAME
return NAME;
case -1: // IF_NOT_EXISTS
case 2: // IF_NOT_EXISTS
return IF_NOT_EXISTS;
case -2: // CHECK_REFERENCES
case 3: // CHECK_REFERENCES
return CHECK_REFERENCES;
default:
return null;
Expand Down Expand Up @@ -62160,15 +62160,15 @@ public void read(org.apache.thrift.protocol.TProtocol iprot, drop_dataconnector_
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case -1: // IF_NOT_EXISTS
case 2: // IF_NOT_EXISTS
if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) {
struct.ifNotExists = iprot.readBool();
struct.setIfNotExistsIsSet(true);
} else {
org.apache.thrift.protocol.TProtocolUtil.skip(iprot, schemeField.type);
}
break;
case -2: // CHECK_REFERENCES
case 3: // CHECK_REFERENCES
if (schemeField.type == org.apache.thrift.protocol.TType.BOOL) {
struct.checkReferences = iprot.readBool();
struct.setCheckReferencesIsSet(true);
Expand All @@ -62189,17 +62189,17 @@ public void write(org.apache.thrift.protocol.TProtocol oprot, drop_dataconnector
struct.validate();

oprot.writeStructBegin(STRUCT_DESC);
oprot.writeFieldBegin(CHECK_REFERENCES_FIELD_DESC);
oprot.writeBool(struct.checkReferences);
oprot.writeFieldEnd();
oprot.writeFieldBegin(IF_NOT_EXISTS_FIELD_DESC);
oprot.writeBool(struct.ifNotExists);
oprot.writeFieldEnd();
if (struct.name != null) {
oprot.writeFieldBegin(NAME_FIELD_DESC);
oprot.writeString(struct.name);
oprot.writeFieldEnd();
}
oprot.writeFieldBegin(IF_NOT_EXISTS_FIELD_DESC);
oprot.writeBool(struct.ifNotExists);
oprot.writeFieldEnd();
oprot.writeFieldBegin(CHECK_REFERENCES_FIELD_DESC);
oprot.writeBool(struct.checkReferences);
oprot.writeFieldEnd();
oprot.writeFieldStop();
oprot.writeStructEnd();
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2485,7 +2485,7 @@ service ThriftHiveMetastore extends fb303.FacebookService

void create_dataconnector(1:DataConnector connector) throws(1:AlreadyExistsException o1, 2:InvalidObjectException o2, 3:MetaException o3)
DataConnector get_dataconnector_req(1:GetDataConnectorRequest request) throws(1:NoSuchObjectException o1, 2:MetaException o2)
void drop_dataconnector(1:string name, bool ifNotExists, bool checkReferences) throws(1:NoSuchObjectException o1, 2:InvalidOperationException o2, 3:MetaException o3)
void drop_dataconnector(1:string name, 2:bool ifNotExists, 3:bool checkReferences) throws(1:NoSuchObjectException o1, 2:InvalidOperationException o2, 3:MetaException o3)
list<string> get_dataconnectors() throws(1:MetaException o1)
void alter_dataconnector(1:string name, 2:DataConnector connector) throws(1:MetaException o1, 2:NoSuchObjectException o2)

Expand Down