Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxiaojian committed Apr 16, 2024
1 parent 0cd01fa commit ad40e4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ org.apache.paimon.flink.action.cdc.pulsar.PulsarSyncDatabaseActionFactory
org.apache.paimon.flink.action.cdc.mongodb.MongoDBSyncTableActionFactory
org.apache.paimon.flink.action.cdc.mongodb.MongoDBSyncDatabaseActionFactory
org.apache.paimon.flink.action.cdc.postgres.PostgresSyncTableActionFactory
org.apache.paimon.flink.action.cdc.postgres.PostgresSyncDatabaseActionFactory
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import org.apache.paimon.flink.action.cdc.mongodb.MongoDBSyncTableActionFactory;
import org.apache.paimon.flink.action.cdc.mysql.MySqlSyncDatabaseActionFactory;
import org.apache.paimon.flink.action.cdc.mysql.MySqlSyncTableActionFactory;
import org.apache.paimon.flink.action.cdc.postgres.PostgresSyncDatabaseActionFactory;
import org.apache.paimon.flink.action.cdc.postgres.PostgresSyncTableActionFactory;
import org.apache.paimon.flink.action.cdc.pulsar.PulsarSyncDatabaseActionFactory;
import org.apache.paimon.flink.action.cdc.pulsar.PulsarSyncTableActionFactory;
Expand Down Expand Up @@ -232,6 +233,8 @@ private <T> String getActionName(Class<T> clazz) {
return PulsarSyncDatabaseActionFactory.IDENTIFIER;
case "PostgresSyncTableAction":
return PostgresSyncTableActionFactory.IDENTIFIER;
case "PostgresSyncDatabaseActionFactory":
return PostgresSyncDatabaseActionFactory.IDENTIFIER;
default:
throw new UnsupportedOperationException(
"Unknown sync action: " + clazz.getSimpleName());
Expand Down

0 comments on commit ad40e4a

Please sign in to comment.