Skip to content

Commit

Permalink
Integration test db var
Browse files Browse the repository at this point in the history
  • Loading branch information
JayGreeeen committed Nov 22, 2024
1 parent 328cc9b commit 5e1162d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public abstract class BeekeeperIntegrationTestBase {
private static final String BEEKEEPER_FLYWAY_TABLE = "flyway_schema_history";
private static final String BEEKEEPER_HOUSEKEEPING_PATH_TABLE_NAME = "housekeeping_path";
private static final String BEEKEEPER_HOUSEKEEPING_METADATA_TABLE_NAME = "housekeeping_metadata";
private static final String BEEKEEPER_HISTORY_TABLE_NAME = "beekeeper_history";

// FIELDS TO INSERT INTO BEEKEEPER TABLES
private Long id = 1L;
Expand Down Expand Up @@ -148,6 +149,7 @@ public void dropMySQLTables() throws SQLException {
mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_FLYWAY_TABLE);
mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_HOUSEKEEPING_PATH_TABLE_NAME);
mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_HOUSEKEEPING_METADATA_TABLE_NAME);
mySQLTestUtils.dropTable(BEEKEEPER_DB_NAME, BEEKEEPER_HISTORY_TABLE_NAME);
}

protected void insertUnreferencedPath(String path) throws SQLException {
Expand Down

0 comments on commit 5e1162d

Please sign in to comment.