config root man

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

CALL mtr.add_suppression("Statement is unsafe because it is being used inside a XA transaction");
SET @save_session_debug= @@SESSION.debug;
CREATE TABLE t1 (a INT PRIMARY KEY);
XA START 'xa1';
INSERT INTO t1 VALUES (1);
XA END 'xa1';
SET @@SESSION.debug = "+d,simulate_xa_prepare_failure_in_cache_finalize";
XA PREPARE 'xa1';
Got one of the listed errors
XA ROLLBACK 'xa1';
ERROR XAE04: XAER_NOTA: Unknown XID
XA COMMIT 'xa1';
ERROR XAE04: XAER_NOTA: Unknown XID
XA START 'xa1';
INSERT INTO t1 VALUES (1);
XA END 'xa1';
SET @@SESSION.debug = "+d,simulate_failure_in_before_commit_hook";
XA PREPARE 'xa1';
Got one of the listed errors
XA ROLLBACK 'xa1';
ERROR XAE04: XAER_NOTA: Unknown XID
XA COMMIT 'xa1';
ERROR XAE04: XAER_NOTA: Unknown XID
XA START 'xa1';
INSERT INTO t1 VALUES (1);
XA END 'xa1';
SET @@SESSION.debug = "+d,simulate_transaction_rollback_request";
XA PREPARE 'xa1';
Got one of the listed errors
XA ROLLBACK 'xa1';
ERROR XAE04: XAER_NOTA: Unknown XID
XA COMMIT 'xa1';
ERROR XAE04: XAER_NOTA: Unknown XID
SET @@SESSION.debug= @save_session_debug;
DROP TABLE t1;

Man Man