Quanlong Huang created HIVE-27103: ------------------------------------- Summary: Thrift compilation warnings on drop_dataconnector() Key: HIVE-27103 URL: https://issues.apache.org/jira/browse/HIVE-27103 Project: Hive Issue Type: Bug Reporter: Quanlong Huang Assignee: Quanlong Huang
We see compilation warnings when compiling Impala with hive_metastore.thrift {code:java} [WARNING:/home/quanlong/workspace/Impala/toolchain/cdp_components-36109364/hive-3.1.3000.7.2.17.0-75/standalone-metastore/src/main/thrift/hive_metastore.thrift:2397] No field key specified for ifNotExists, resulting protocol may have conflicts or not be backwards compatible! [WARNING:/home/quanlong/workspace/Impala/toolchain/cdp_components-36109364/hive-3.1.3000.7.2.17.0-75/standalone-metastore/src/main/thrift/hive_metastore.thrift:2397] No field key specified for checkReferences, resulting protocol may have conflicts or not be backwards compatible! {code} A code snipper arround line 2397: {code:java} 2395 void create_dataconnector(1:DataConnector connector) throws(1:AlreadyExistsException o1, 2:InvalidObjectException o2, 3:MetaException o3) 2396 DataConnector get_dataconnector_req(1:GetDataConnectorRequest request) throws(1:NoSuchObjectException o1, 2:MetaException o2) 2397 void drop_dataconnector(1:string name, bool ifNotExists, bool checkReferences) throws(1:NoSuchObjectException o1, 2:InvalidOperationException o2, 3:MetaException o3) 2398 list<string> get_dataconnectors() throws(1:MetaException o1) {code} The arguments of drop_dataconnector() should have indexes, but only the first argument 'name' has an index. -- This message was sent by Atlassian Jira (v8.20.10#820010)