github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/retry_cancel/data/db2.prepare.sql (about) 1 DROP DATABASE IF EXISTS `retry_cancel`; 2 CREATE DATABASE `retry_cancel`; 3 USE `retry_cancel`; 4 CREATE TABLE t2 (id BIGINT PRIMARY KEY, uid BIGINT) DEFAULT CHARSET=utf8mb4; 5 INSERT INTO t2 (id, uid) VALUES (1, 101), (2, 102); 6 INSERT INTO t2 (id, uid) VALUES (3, 103), (4, 104);