Skip to content

Commit

Permalink
Fix liquibase case sensitivity issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zapodot committed Jan 26, 2024
1 parent ed87b5f commit f6d49e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void testSchemaDefaultSchemaNameUsed() throws SQLException {
try (final Connection connection = embeddedDatabaseRule.getConnection();
final Statement statement = connection.createStatement()
) {
statement.executeQuery(String.format("SELECT * FROM %s.[user]", SCHEMA_NAME));
statement.executeQuery(String.format("SELECT * FROM %s.[USER]", SCHEMA_NAME));
}
}
}

0 comments on commit f6d49e5

Please sign in to comment.