Skip to content

Commit

Permalink
test: fix MySQL2PostgresIncremental
Browse files Browse the repository at this point in the history
  • Loading branch information
osalvador committed Jan 2, 2023
1 parent d0bc5fd commit 3077ceb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/test/java/org/replicadb/mysql/MySQL2PostgresTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ static void setUp() {
void before() throws SQLException {
this.mysqlConn = DriverManager.getConnection(mysql.getJdbcUrl(), mysql.getUsername(), mysql.getPassword());
this.postgresConn = DriverManager.getConnection(postgres.getJdbcUrl(), postgres.getUsername(), postgres.getPassword());
postgresConn.createStatement().execute("TRUNCATE TABLE T_SINK");
}

@AfterEach
Expand Down

0 comments on commit 3077ceb

Please sign in to comment.