ashish-kumar-sharma commented on a change in pull request #2211:
URL: https://github.com/apache/hive/pull/2211#discussion_r626411212
##########
File path:
standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/ObjectStore.java
##########
@@ -11565,11 +11579,21 @@ private String getPrimaryKeyConstraintName(String
catName, String dbName, String
}
@Override
- public List<SQLForeignKey> getForeignKeys(String catName, String
parent_db_name,
- String parent_tbl_name, String foreign_db_name, String foreign_tbl_name)
throws MetaException {
+ public List<SQLForeignKey> getForeignKeys(String catName, String
parent_db_name, String parent_tbl_name,
+ String foreign_db_name, String foreign_tbl_name) throws MetaException {
+ ForeignKeysRequest request =
+ new ForeignKeysRequest(parent_db_name, parent_tbl_name,
foreign_db_name, foreign_tbl_name);
Review comment:
Can you given an example?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]