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 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/r/rpl_row_sp007_innodb.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] CREATE PROCEDURE test.p1(IN i INT) BEGIN DECLARE CONTINUE HANDLER FOR sqlexception BEGIN END; DROP TABLE IF EXISTS test.t1; CREATE TABLE test.t1 (num INT,PRIMARY KEY(num))ENGINE=INNODB; START TRANSACTION; INSERT INTO test.t1 VALUES(i); savepoint t1_save; INSERT INTO test.t1 VALUES (14); ROLLBACK to savepoint t1_save; COMMIT; END| < ---- Master selects-- > ------------------------- CALL test.p1(12); SELECT * FROM test.t1; num 12 < ---- Slave selects-- > ------------------------ include/sync_slave_sql_with_master.inc SELECT * FROM test.t1; num 12 < ---- Master selects-- > ------------------------- CALL test.p1(13); SELECT * FROM test.t1; num 13 < ---- Slave selects-- > ------------------------ include/sync_slave_sql_with_master.inc SELECT * FROM test.t1; num 13 DROP PROCEDURE test.p1; DROP TABLE test.t1; include/rpl_end.inc