github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/only_dml/data/db2.prepare.sql (about)

     1  drop database if exists `only_dml`;
     2  reset master;
     3  create database `only_dml`;
     4  use `only_dml`;
     5  create table t2 (id int, primary key (`id`));
     6  insert into t2 values (2);