1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Test cases for codership/mysql-wsrep/110

This commit is contained in:
Philip Stoev
2015-04-20 05:58:24 -07:00
committed by Nirbhay Choubey
parent dc9e325407
commit 045b31c8f4
4 changed files with 161 additions and 0 deletions

View File

@ -0,0 +1,28 @@
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 TABLE t1 (f1 INTEGER PRIMARY KEY);
CREATE TABLE t2 (f1 INTEGER PRIMARY KEY);
CREATE TABLE t3 (f1 INTEGER PRIMARY KEY);
CREATE TRIGGER tr1 AFTER INSERT ON t1 FOR EACH ROW CALL p1(NEW.f1);
CREATE PROCEDURE p1 (IN x INT)
BEGIN
DECLARE EXIT HANDLER FOR SQLEXCEPTION
BEGIN
ROLLBACK TO event_logging;
INSERT t3 VALUES (x);
END;
SAVEPOINT event_logging;
INSERT INTO t2 VALUES (x);
RELEASE SAVEPOINT event_logging;
END|
INSERT INTO t2 VALUES (1);
INSERT INTO t1 VALUES (1);
DROP TABLE t3;
DROP TABLE t2;
DROP TABLE t1;
DROP PROCEDURE p1;
include/sync_slave_sql_with_master.inc
include/rpl_end.inc