mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-10 21:19:59 +00:00
21 lines
452 B
SQL
21 lines
452 B
SQL
DROP DATABASE IF EXISTS pt_osc;
|
|
CREATE DATABASE pt_osc;
|
|
USE pt_osc;
|
|
CREATE TABLE t (
|
|
id int auto_increment primary key,
|
|
c char(32),
|
|
d date,
|
|
unique index (c(32))
|
|
) ENGINE=InnoDB;
|
|
INSERT INTO pt_osc.t VALUES
|
|
(null, 'a', now()),
|
|
(null, 'b', now()),
|
|
(null, 'c', now()),
|
|
(null, 'd', now()),
|
|
(null, 'e', now()),
|
|
(null, 'f', now()),
|
|
(null, 'g', now()),
|
|
(null, 'h', now()),
|
|
(null, 'i', now()),
|
|
(null, 'j', now()); -- 10
|