JNSimba commented on code in PR #466: URL: https://github.com/apache/doris-flink-connector/pull/466#discussion_r1719644201
########## flink-doris-connector/src/test/resources/autoci/e2e/mysql2doris/initialize/mysql_tbl1.sql: ########## @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS test_e2e_mysql.tbl1; + +CREATE TABLE test_e2e_mysql.tbl1 ( + `name` varchar(256) primary key, + `age` int +); + +insert into test_e2e_mysql.tbl1 values ('doris_1',1); Review Comment: For functional testing, can this table structure be reused? And for all types of tests, a single table can be written. I feel that there are too many identical table structures here, which doesn't seem to make much sense? -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org