mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 04:09:09 +00:00
11 lines
255 B
SQL
11 lines
255 B
SQL
drop database if exists bug_1340728;
|
|
create database bug_1340728;
|
|
use bug_1340728;
|
|
|
|
CREATE TABLE `test` (
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|
`name` char(2) NOT NULL,
|
|
PRIMARY KEY (`id`) USING HASH
|
|
) ENGINE=MEMORY DEFAULT CHARSET=latin1;
|
|
|