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

     1  drop database if exists `dmctl_command`;
     2  create database `dmctl_command`;
     3  use `dmctl_command`;
     4  create table t1 (id int, name varchar(20), primary key(`id`));
     5  insert into t1 (id, name) values (1, 'arya'), (2, 'catelyn');