mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-27 16:12:04 +00:00
Test that new table inherits the old table's charset. Clean up bugs.t.
This commit is contained in:
11
t/pt-online-schema-change/samples/utf8_charset_tbl.sql
Normal file
11
t/pt-online-schema-change/samples/utf8_charset_tbl.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
drop database if exists test1171653;
|
||||
create database test1171653;
|
||||
use test1171653;
|
||||
|
||||
CREATE TABLE `t` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`foo` varchar(30) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT INTO `t` VALUES (1,'bar'), (2,'bar2'), (3,'bar3');
|
Reference in New Issue
Block a user