mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-19 02:05:23 +00:00
PT-1205 - LP #1275034: pt-table-sync reports 'wide character in print' and terminates
- Added binmode :utf8 for STDERR - Added test case for PT-1205 - Run update-modules
This commit is contained in:
12
t/pt-table-sync/samples/pt-1205.sql
Normal file
12
t/pt-table-sync/samples/pt-1205.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
DROP DATABASE IF EXISTS test;
|
||||
CREATE DATABASE test;
|
||||
|
||||
USE test;
|
||||
create table t1(
|
||||
id int not null auto_increment primary key,
|
||||
f1 varchar(10)
|
||||
);
|
||||
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;
|
Reference in New Issue
Block a user