You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: flink-cdc-connect/flink-cdc-source-connectors/flink-connector-postgres-cdc/src/main/java/org/apache/flink/cdc/connectors/postgres/source/PostgresSourceBuilder.java
-6
Original file line number
Diff line number
Diff line change
@@ -199,12 +199,6 @@ public PostgresSourceBuilder<T> connectionPoolSize(int connectionPoolSize) {
199
199
returnthis;
200
200
}
201
201
202
-
/** Whether the {@link PostgresIncrementalSource} should output the schema changes or not. */
Copy file name to clipboardexpand all lines: flink-cdc-connect/flink-cdc-source-connectors/flink-connector-postgres-cdc/src/test/java/org/apache/flink/cdc/connectors/postgres/source/PostgresSourceExampleTest.java
-2
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,6 @@ public void testConsumingScanEvents() throws Exception {
108
108
.slotName(SLOT_NAME)
109
109
.decodingPluginName(PLUGIN_NAME)
110
110
.deserializer(deserializer)
111
-
.includeSchemaChanges(true) // output the schema changes as well
112
111
.splitSize(2)
113
112
.build();
114
113
@@ -153,7 +152,6 @@ public void testConsumingAllEvents() throws Exception {
0 commit comments