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-mysql-cdc/src/test/java/org/apache/flink/cdc/connectors/mysql/LegacyMySqlSourceITCase.java
+4-9
Original file line number
Diff line number
Diff line change
@@ -49,8 +49,6 @@
49
49
importjava.util.Map;
50
50
importjava.util.Objects;
51
51
52
-
importstaticorg.junit.Assert.assertTrue;
53
-
54
52
/** Integration tests for the legacy {@link MySqlSource}. */
Copy file name to clipboardExpand all lines: flink-cdc-connect/flink-cdc-source-connectors/flink-connector-mysql-cdc/src/test/java/org/apache/flink/cdc/connectors/polardbx/PolardbxCharsetITCase.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -167,8 +167,8 @@ public void testCharset() throws Exception {
Copy file name to clipboardExpand all lines: flink-cdc-connect/flink-cdc-source-connectors/flink-connector-mysql-cdc/src/test/java/org/apache/flink/cdc/connectors/polardbx/PolardbxSourceITCase.java
+6-6
Original file line number
Diff line number
Diff line change
@@ -83,8 +83,8 @@ public void testSingleKey() throws Exception {
83
83
+ " 'server-time-zone' = 'UTC',"
84
84
+ " 'server-id' = '%s'"
85
85
+ ")",
86
-
HOST_NAME,
87
-
PORT,
86
+
getHost(),
87
+
getPort(),
88
88
USER_NAME,
89
89
PASSWORD,
90
90
DATABASE,
@@ -234,8 +234,8 @@ public void testFullTypesDdl() throws Exception {
234
234
+ " 'server-time-zone' = 'UTC',"
235
235
+ " 'server-id' = '%s'"
236
236
+ ")",
237
-
HOST_NAME,
238
-
PORT,
237
+
getHost(),
238
+
getPort(),
239
239
USER_NAME,
240
240
PASSWORD,
241
241
DATABASE,
@@ -301,8 +301,8 @@ public void testMultiKeys() throws Exception {
Copy file name to clipboardExpand all lines: flink-cdc-connect/flink-cdc-source-connectors/flink-connector-mysql-cdc/src/test/java/org/apache/flink/cdc/connectors/polardbx/PolardbxSourceTestBase.java
0 commit comments