mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-15 16:00:23 +00:00

- Removed diagnostic output from t/pt-table-sync/issue_996.t - Corrected character set options in t/pt-table-sync/samples/pt-1205.sql
15 lines
344 B
SQL
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;
|