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-pipeline-e2e-tests/src/test/java/org/apache/flink/cdc/pipeline/tests/MysqlE2eITCase.java
+58Lines changed: 58 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -331,6 +331,64 @@ public void testSchemaChangeEvents() throws Exception {
331
331
"DropTableEvent{tableId=%s.products}");
332
332
}
333
333
334
+
@Test
335
+
publicvoidtestDroppingTable() throwsException {
336
+
Thread.sleep(5000);
337
+
LOG.info("Sleep 5 seconds to distinguish initial DDL events with dropping table events...");
338
+
longddlTimestamp = System.currentTimeMillis();
339
+
Thread.sleep(5000);
340
+
LOG.info("Going to drop tables after timestamp {}", ddlTimestamp);
0 commit comments