mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 13:40:07 +00:00
19 lines
343 B
SQL
19 lines
343 B
SQL
drop database if exists test;
|
|
create database test;
|
|
use test;
|
|
create table t (
|
|
id int auto_increment not null primary key,
|
|
c varchar(8) not null
|
|
) engine=innodb;
|
|
insert into test.t values
|
|
(null, 'a'),
|
|
(null, 'b'),
|
|
(null, 'c'),
|
|
(null, 'd'),
|
|
(null, 'e'),
|
|
(null, 'f'),
|
|
(null, 'g'),
|
|
(null, 'h'),
|
|
(null, 'i'),
|
|
(null, 'j');
|