leonardBang commented on code in PR #3570: URL: https://github.com/apache/flink-cdc/pull/3570#discussion_r1730200676
########## flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-mysql/src/test/java/org/apache/flink/cdc/connectors/mysql/source/MySqlPipelineITCase.java: ########## @@ -501,6 +501,22 @@ public void testSchemaChangeEvents() throws Exception { expected.add( new DropTableEvent( TableId.tableId(inventoryDatabase.getDatabaseName(), "customers"))); + + // Test create table DDL + statement.execute( + String.format( + "CREATE TABLE `%s`.`newlyAddedTable1`(id int, id2 int, primary key(id));", Review Comment: Could you cover more data types like our full types test? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org