config root man

Current Path : /home/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 : //home/usr.opt/mysql57/mysql-test/suite/innodb/r/innodb_wl6501_crash_8.result

create table t1 (i int, f float)
engine = innodb data directory = 'NEW_DATA_DIR';
insert into t1 values (1, 1.1), (2, 2.2), (3, 3.3);
t1.ibd
select * from t1;
i	f
1	1.1
2	2.2
3	3.3
set session debug = "+d,ib_trunc_crash_drop_reinit_done_create_to_start";
truncate table t1;
ERROR HY000: Lost connection to MySQL server during query
select * from t1;
i	f
t1.ibd
insert into t1 values (1, 1.1), (2, 2.2), (3, 3.3);
select * from t1;
i	f
1	1.1
2	2.2
3	3.3
drop table t1;

Man Man