mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-15 16:00:23 +00:00
Add forked Maatkit tools in bin/ and their tests in t/.
This commit is contained in:
26
t/pt-archiver/samples/bulk_regular_insert.sql
Normal file
26
t/pt-archiver/samples/bulk_regular_insert.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
drop database if exists bri;
|
||||
create database bri;
|
||||
use bri;
|
||||
create table t (
|
||||
id int unsigned NOT NULL auto_increment primary key,
|
||||
c char(16),
|
||||
t time
|
||||
) engine=innodb;
|
||||
|
||||
create table t_arch (
|
||||
id int unsigned NOT NULL auto_increment primary key,
|
||||
c char(16),
|
||||
t time
|
||||
) engine=innodb;
|
||||
|
||||
insert into t values
|
||||
(null, 'aa', '11:11:11'),
|
||||
(null, 'bb', '11:11:12'),
|
||||
(null, 'cc', '11:11:13'),
|
||||
(null, 'dd', '11:11:14'),
|
||||
(null, 'ee', '11:11:15'),
|
||||
(null, 'ff', '11:11:16'),
|
||||
(null, 'gg', '11:11:17'),
|
||||
(null, 'hh', '11:11:18'),
|
||||
(null, 'ii', '11:11:19'),
|
||||
(null, 'jj', '11:11:10');
|
Reference in New Issue
Block a user