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

     1  drop database if exists `full_mode`;
     2  create database `full_mode`;
     3  use `full_mode`;
     4  create table t2 (id int auto_increment, name varchar(20), dt datetime, ts timestamp, primary key (`id`));
     5  insert into t2 (name, dt, ts) values
     6      ('Arya', now(), now()),
     7      ('Bran', '2021-05-11 10:09:03', '2021-05-11 10:09:03'),
     8      ('Sansa', NULL, NULL);