github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/incremental_mode/data/db2.prepare.sql (about) 1 /* Should not add reset master in this file because it is used by binlog 999999 test */ 2 drop database if exists `incremental_mode`; 3 create database `incremental_mode`; 4 use `incremental_mode`; 5 create table t2 (id int auto_increment, name varchar(20), primary key (`id`)); 6 insert into t2 (name) values ('Arya'), ('Bran'), ('Sansa');