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-e2e-tests/flink-cdc-source-e2e-tests/src/test/java/org/apache/flink/cdc/connectors/tests/MySqlE2eITCase.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,8 @@ public void testMySqlCDC() throws Exception {
119
119
"UPDATE products_source SET description='new water resistent white wind breaker', weight='0.5' WHERE id=110;");
120
120
stat.execute("UPDATE products_source SET weight='5.17' WHERE id=111;");
121
121
stat.execute("DELETE FROM products_source WHERE id=111;");
122
+
// add schema change event in the last.
123
+
stat.execute("CREATE TABLE new_table (id int, age int);");
0 commit comments