github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/drop_many_tables/data/prepare.sql (about) 1 drop database if exists `drop_tables`; 2 create database `drop_tables`; 3 use `drop_tables`; 4 5 create table a (id int primary key); 6 create table b (id int primary key); 7 drop table a,b; 8 9 create table a (id varchar(16) primary key); 10 create table b (id varchar(16) primary key); 11 12 insert into a value ('aa'); 13 insert into b value ('bb'); 14 15 create table c (id int primary key);