mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 21:19:59 +00:00
Merge branch '3.0' into mysql-8
This commit is contained in:
15
t/lib/samples/charset.sql
Normal file
15
t/lib/samples/charset.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
DROP DATABASE IF EXISTS `test`;
|
||||
CREATE DATABASE `test`;
|
||||
|
||||
CREATE TABLE `test`.`t1` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`f2` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) COMMENT "test1" ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `test`.`t2` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`f2` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
Reference in New Issue
Block a user