mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-15 23:55:05 +00:00
HHH-15801 IdentifierGeneratorHelper should compare column names case insensitively
This commit is contained in:
parent
f91905c34a
commit
721b66c6d3
@ -97,14 +97,14 @@ private static int columnIndex(ResultSet resultSet, PostInsertIdentityPersister
|
||||
}
|
||||
}
|
||||
catch (SQLException e) {
|
||||
LOG.debugf( "Could not determine column index from JDBC metadatda", e );
|
||||
LOG.debugf( "Could not determine column index from JDBC metadata", e );
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
private static boolean equal(String keyColumnName, String alias, Dialect dialect) {
|
||||
return alias.equals( keyColumnName )
|
||||
|| alias.equals( StringHelper.unquote( keyColumnName, dialect ) );
|
||||
return alias.equalsIgnoreCase( keyColumnName )
|
||||
|| alias.equalsIgnoreCase( StringHelper.unquote( keyColumnName, dialect ) );
|
||||
}
|
||||
|
||||
public static IntegralDataTypeHolder getIntegralDataTypeHolder(Class<?> integralType) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user