HHH-15801 IdentifierGeneratorHelper should compare column names case insensitively

This commit is contained in:
Mark Rotteveel 2022-12-03 13:15:12 +01:00 committed by Gavin King
parent f91905c34a
commit 721b66c6d3
1 changed files with 3 additions and 3 deletions

View File

@ -97,14 +97,14 @@ public final class IdentifierGeneratorHelper {
}
}
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) {