mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-04-03 01:02:14 +08:00
Add lib/, t/lib/, and sandbox/. All modules are updated and passing on MySQL 5.1.
This commit is contained in:
12
t/lib/samples/QueryReportFormatter/table.sql
Normal file
12
t/lib/samples/QueryReportFormatter/table.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
DROP DATABASE IF EXISTS qrf;
|
||||
CREATE DATABASE qrf;
|
||||
USE qrf;
|
||||
CREATE TABLE t (
|
||||
i int not null auto_increment primary key,
|
||||
v varchar(16)
|
||||
) engine=InnoDB;
|
||||
insert into qrf.t values
|
||||
(null, 'hello'),
|
||||
(null, ','),
|
||||
(null, 'world'),
|
||||
(null, '!');
|
||||
Reference in New Issue
Block a user