config root man

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

DROP TABLE IF EXISTS t1;
create table t1(  pk1 INT NOT NULL PRIMARY KEY,
attr1 INT NOT NULL,
attr2 INT,
attr3 VARCHAR(1024)
) ENGINE = ndb;
set @save_debug = @@session.debug;
# Error injection in Ndb::init
SET SESSION debug="+d,sleep_in_ndbinit";
INSERT INTO t1 VALUES (9410, 9412, NULL, '9412');;
# Restarting one node
SET SESSION debug=@save_debug;
select * from t1 order by pk1;
pk1	attr1	attr2	attr3
9410	9412	NULL	9412
drop table t1;

Man Man