mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-21 19:34:52 +00:00
Fix for 1127450: pt-archiver wide character
This commit is contained in:
12
t/pt-archiver/samples/bug_1127450.sql
Normal file
12
t/pt-archiver/samples/bug_1127450.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
DROP DATABASE IF EXISTS `bug_1127450`;
|
||||
CREATE DATABASE `bug_1127450`;
|
||||
CREATE TABLE `bug_1127450`.`original` (
|
||||
id int,
|
||||
t text CHARACTER SET utf8,
|
||||
PRIMARY KEY(id)
|
||||
) engine=InnoDB DEFAULT CHARSET=utf8;
|
||||
CREATE TABLE `bug_1127450`.`copy` (
|
||||
id int,
|
||||
t text CHARACTER SET utf8,
|
||||
PRIMARY KEY(id)
|
||||
) engine=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user