From 3da71edd983c22938d04a3fff5123c95963fd965 Mon Sep 17 00:00:00 2001 From: skylines <34996528+gtk96@users.noreply.github.com> Date: Tue, 16 Jul 2024 09:55:45 +0800 Subject: [PATCH] Update PostgresSourceExampleTest.java --- .../connectors/postgres/source/PostgresSourceExampleTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/flink-cdc-connect/flink-cdc-source-connectors/flink-connector-postgres-cdc/src/test/java/org/apache/flink/cdc/connectors/postgres/source/PostgresSourceExampleTest.java b/flink-cdc-connect/flink-cdc-source-connectors/flink-connector-postgres-cdc/src/test/java/org/apache/flink/cdc/connectors/postgres/source/PostgresSourceExampleTest.java index f6f2b45d90..77165333b9 100644 --- a/flink-cdc-connect/flink-cdc-source-connectors/flink-connector-postgres-cdc/src/test/java/org/apache/flink/cdc/connectors/postgres/source/PostgresSourceExampleTest.java +++ b/flink-cdc-connect/flink-cdc-source-connectors/flink-connector-postgres-cdc/src/test/java/org/apache/flink/cdc/connectors/postgres/source/PostgresSourceExampleTest.java @@ -108,7 +108,6 @@ public void testConsumingScanEvents() throws Exception { .slotName(SLOT_NAME) .decodingPluginName(PLUGIN_NAME) .deserializer(deserializer) - .includeSchemaChanges(true) // output the schema changes as well .splitSize(2) .build(); @@ -153,7 +152,6 @@ public void testConsumingAllEvents() throws Exception { .slotName(SLOT_NAME) .decodingPluginName(PLUGIN_NAME) .deserializer(buildRowDataDebeziumDeserializeSchema(dataType)) - .includeSchemaChanges(true) // output the schema changes as well .splitSize(2) .debeziumProperties(debeziumProps) .build();