Files
percona-toolkit/t/pt-table-sync/samples/pt-1205.sql
Sveta Smirnova fdc0597e55 PT-2154 - Fix tests for pt-table-sync
- Removed diagnostic output from t/pt-table-sync/issue_996.t
- Corrected character set options in t/pt-table-sync/samples/pt-1205.sql
2024-05-16 02:04:40 +03:00

15 lines
344 B
SQL

DROP DATABASE IF EXISTS test;
CREATE DATABASE test;
USE test;
SET NAMES utf8mb4;
create table t1(
id int not null auto_increment primary key,
f1 varchar(10)
) DEFAULT CHARSET=utf8mb4;
insert into t1(f1) values('😜');
insert into t1(f1) select f1 from t1;
insert into t1(f1) select f1 from t1;
insert into t1(f1) select f1 from t1;