config root man

Current Path : /usr/opt/mysql57/mysql-test/suite/innodb/r/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/opt/mysql57/mysql-test/suite/innodb/r/innodb_io_pf.result

USE test;
CREATE TABLE t1(id INT);
INSERT INTO t1 VALUES(1),(2),(3),(4),(5);
SELECT * FROM t1;
id
1
2
3
4
5
USE performance_schema;
SELECT EVENT_NAME,COUNT_STAR FROM performance_schema.file_summary_by_event_name
WHERE EVENT_NAME like "%inno%";
EVENT_NAME	COUNT_STAR
wait/io/file/innodb/innodb_data_file	5
wait/io/file/innodb/innodb_log_file	5
wait/io/file/innodb/innodb_temp_file	5
USE test;
DROP table t1;

Man Man