Skip to content

Commit

Permalink
[Flink] Fix CDC entry db name (#430)
Browse files Browse the repository at this point in the history
* fix postgresql entry bug

Signed-off-by: ChenYunHey <[email protected]>

* fix jdbcCDC entry

Signed-off-by: ChenYunHey <[email protected]>

---------

Signed-off-by: ChenYunHey <[email protected]>
  • Loading branch information
ChenYunHey authored Jan 22, 2024
1 parent fe5ca72 commit 1741c1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static void main(String[] args) throws Exception {
host = parameter.get(SOURCE_DB_HOST.key());
port = parameter.getInt(SOURCE_DB_PORT.key(), MysqlDBManager.DEFAULT_MYSQL_PORT);
//Postgres Oracle
if (dbType.equals("orcale") || dbType.equalsIgnoreCase("postgresql")) {
if (dbType.equalsIgnoreCase("oracle") || dbType.equalsIgnoreCase("postgres")) {
schemaList = parameter.get(SOURCE_DB_SCHEMA_LIST.key()).split(",");
String[] tables = parameter.get(SOURCE_DB_SCHEMA_TABLES.key()).split(",");
tableList = new String[tables.length];
Expand Down

0 comments on commit 1741c1a

Please sign in to comment.