Skip to content

Commit

Permalink
[Optimization-3146][CDCSOURCE] Optimized CDCSOURCE from Mysql to Dori…
Browse files Browse the repository at this point in the history
…s, with support for light_schema_change
  • Loading branch information
kindbgen committed Feb 6, 2024
1 parent 48f8e3c commit 257b002
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public enum DataBaseType {
MYSQL("mysql"),
SQLSERVER("sqlserver"),
ORACLE("oracle"),
PostgresSQL("postgresql");
POSTGRESQL("postgresql");

private String type;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void configure(Properties properties) {
case MYSQL:
case SQLSERVER:
case ORACLE:
case PostgresSQL:
case POSTGRESQL:
break;
default:
String errMsg = "Not support " + databaseType + " database type";
Expand Down

0 comments on commit 257b002

Please sign in to comment.