github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/validator_basic/data/db1.increment.sql (about) 1 use validator_basic; 2 insert into t1 values 3 (2, 'b', now(), '2022-04-29 15:30:00', 0.123456789123456789, 1234567891234561234567891.23456789), 4 (3, 'c', now(), '2022-04-29 15:30:00', 123456789123.456789, 123456789123456123.456789123456789), 5 (4, 'd', now(), NULL, 1234567.89123456789, 12345678912.3456123456789123456789), 6 (5, 'e', now(), '2022-04-29 15:30:00', 12.3456789123456789, 0.123456789123456123456789123456789), 7 (6, 'f', now(), '2022-04-29 15:30:00', 123456789123456789, 123456789123456123456789123456789), 8 (7, 'g', now(), NULL, 0.123456789123456789, 1234567891234561234567891.23456789); 9 delete from t1 where name='a'; -- id=1 10 update t1 set name='bb' where id = 2; 11 -- trigger syncer flush checkpoint 12 alter table t1 comment 'a';