github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/dmctl_command/data/db1.increment.sql (about)

     1  use dmctl_command;
     2  insert into t1 (id, name) values (3, 'Eddard Stark');
     3  insert into t1 (id, name) values (4, 'xx');
     4  update t1 set name='xx' where id=1;
     5  delete from t1 where id=2;
     6  -- this table will not be validated, since it has no pk
     7  create table t1_2(id int);
     8  insert into t1_2 values(1);
     9  create table t_trigger_flush1(id int primary key)