Skip to content

Commit

Permalink
[Liquibase]: Fix clear tables in BaseTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Apr 10, 2024
1 parent da14c79 commit c46b63b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected static String jdbcUrl() {
public void clearMetaLiquibaseTables() {
try (Connection connection = DriverManager.getConnection(jdbcUrl())) {
ResultSet resultSet = connection.getMetaData()
.getTables(null, null, null, null);
.getTables(null, null, null, new String[]{"TABLE"});

while (resultSet.next()) {
Statement statement = connection.createStatement();
Expand Down

0 comments on commit c46b63b

Please sign in to comment.