Skip to content

Commit

Permalink
fix for #826
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoszwalacik committed Jul 5, 2019
1 parent 3c77c91 commit b27722c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@ boolean relationExists(String name, String schemaName) {
}

private String convertCase(String identifier, DatabaseMetaData metadata) throws SQLException {
if (identifier == null || identifier.isEmpty()) {
return identifier;
}
if (metadata.storesLowerCaseIdentifiers()) {
return identifier.toLowerCase();
} else {
Expand Down

0 comments on commit b27722c

Please sign in to comment.