yuxiqian commented on code in PR #6532:
URL: https://github.com/apache/paimon/pull/6532#discussion_r2497939613
##########
paimon-flink/paimon-flink-cdc/src/main/java/org/apache/paimon/flink/action/cdc/postgres/PostgresActionUtils.java:
##########
@@ -186,7 +186,7 @@ public static JdbcIncrementalSource<CdcSourceRecord>
buildPostgresSource(
customConverterConfigs.put(JsonConverterConfig.DECIMAL_FORMAT_CONFIG,
"numeric");
CdcDebeziumDeserializationSchema schema =
new CdcDebeziumDeserializationSchema(true,
customConverterConfigs);
- return
sourceBuilder.deserializer(schema).includeSchemaChanges(true).build();
+ return sourceBuilder.deserializer(schema).build();
Review Comment:
Yes, PostgreSQL CDC does not support capturing DDL events or emitting any
schema change events. In earlier versions this method (includeSchemaChanges) is
provided but has no effect at all, and got removed in
https://github.com/apache/flink-cdc/pull/3464.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]