HHH-10802 - Fix Attempt to resolve foreign key metadata from JDBC metadata failed to find column mappings for foreign key

This commit is contained in:
Andrea Boriero 2016-06-06 16:51:28 +01:00
parent b76f8c2065
commit ee4dc0a03e
1 changed files with 1 additions and 4 deletions

View File

@ -164,10 +164,7 @@ public class Identifier implements Comparable<Identifier> {
@Override
public boolean equals(Object o) {
if ( this == o ) {
return true;
}
if ( o == null || getClass() != o.getClass() ) {
if ( !(o instanceof Identifier) ) {
return false;
}