Skip to content

Commit

Permalink
HHH-10802 - Fix Attempt to resolve foreign key metadata from JDBC met…
Browse files Browse the repository at this point in the history
…adata failed to find column mappings for foreign key
  • Loading branch information
dreab8 committed Jun 6, 2016
1 parent e03d4d1 commit 30ad787
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -164,10 +164,7 @@ public String toString() {

@Override
public boolean equals(Object o) {
if ( this == o ) {
return true;
}
if ( o == null || getClass() != o.getClass() ) {
if ( !(o instanceof Identifier) ) {
return false;
}

Expand Down

0 comments on commit 30ad787

Please sign in to comment.