mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-11 21:51:21 +00:00
13 lines
264 B
SQL
13 lines
264 B
SQL
drop database if exists osc;
|
|
create database osc;
|
|
use osc;
|
|
create table t (
|
|
i int,
|
|
index (i)
|
|
);
|
|
|
|
insert into t values
|
|
(1),(2),(3),
|
|
(10),(11),(12),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(24),
|
|
(101),(102),(103);
|