Exposing SSL-only version of Postgres Source (#6362)
This commit is contained in:
@@ -72,7 +72,7 @@ class Db2JdbcSourceAcceptanceTest extends JdbcSourceAcceptanceTest {
|
||||
public void clean() throws Exception {
|
||||
// In Db2 before dropping a schema, all objects that were in that schema must be dropped or moved to
|
||||
// another schema.
|
||||
for (String tableName : TEST_TABLES) {
|
||||
for (final String tableName : TEST_TABLES) {
|
||||
final String dropTableQuery = String
|
||||
.format("DROP TABLE IF EXISTS %s.%s", SCHEMA_NAME, tableName);
|
||||
super.database.execute(connection -> connection.createStatement().execute(dropTableQuery));
|
||||
@@ -116,7 +116,7 @@ class Db2JdbcSourceAcceptanceTest extends JdbcSourceAcceptanceTest {
|
||||
}
|
||||
|
||||
@Override
|
||||
public AbstractJdbcSource getSource() {
|
||||
public AbstractJdbcSource getJdbcSource() {
|
||||
return new Db2Source();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user