github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/tidb_mysql_test/t/concurrent_ddl.test (about)

     1  CREATE TABLE t1 (id int);
     2  --begin_concurrent 8
     3  --error doesn't exist,doesn't match
     4  INSERT INTO t2 VALUES (1);
     5  CREATE TABLE t2 (id int);
     6  INSERT INTO t2 VALUES (1);
     7  ALTER TABLE t1 ADD COLUMN b int;
     8  INSERT INTO t1 VALUES (1,1);
     9  --end_concurrent
    10  admin check table t1;
    11  admin check table t2;
    12