config root man

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

include/master-slave.inc
Warnings:
Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
Note	####	Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
[connection master]
# Let master and slave synced with t1 table created
CREATE TABLE t1 (f INT) ENGINE= INNODB;
include/sync_slave_sql_with_master.inc
# Setup GLOBAL.DEBUG at slave to reach commit
[connection slave]
SET @@GLOBAL.DEBUG= '+d,dbug.reached_commit';
# Do some DML operation on master so that it will be blocked on
# slave as global read lock is in place.
[connection master]
INSERT INTO t1 VALUES (10);
# Issue FLUSH TABLES WITH READ LOCK after Reached is signaled
[connection slave]
SET DEBUG_SYNC='now WAIT_FOR Reached';
FLUSH TABLES WITH READ LOCK;
# Let sql thread continue to try to obtain commit lock
SET DEBUG_SYNC= 'now SIGNAL signal.commit_continue';
# Wait until sql thread enters "Waiting for commit lock" state
[connection slave]
SHOW SLAVE STATUS;
UNLOCK TABLES;
SET @@GLOBAL.DEBUG= '$debug_saved';
[connection master]
include/sync_slave_sql_with_master.inc
include/diff_tables.inc [master:t1, slave:t1]
[connection master]
DROP TABLE t1;
include/sync_slave_sql_with_master.inc
include/rpl_end.inc

Man Man