github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/incremental_mode/data/db1.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 t1 (id int, name varchar(20), primary key(`id`));
     6  insert into t1 (id, name) values (1, 'arya'), (2, 'catelyn');