github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/engine/test/integration_tests/dm_new_collation_off/data/db2.prepare.sql (about) 1 drop database if exists `new_collation_off`; 2 create database `new_collation_off`; 3 use `new_collation_off`; 4 create table t1 ( 5 id int PRIMARY KEY, 6 name varchar(20) COLLATE utf8mb4_0900_as_cs 7 ); 8 9 insert into t1 (id, name) values (1, 'Alice');