Commit f4421c89 authored by Nirbhay Choubey's avatar Nirbhay Choubey

Fix for some failing tests.

parent c78fc8b1
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);
......@@ -24,5 +21,4 @@ DROP TABLE t3;
DROP TABLE t2;
DROP TABLE t1;
DROP PROCEDURE p1;
include/sync_slave_sql_with_master.inc
include/rpl_end.inc
......@@ -39,6 +39,6 @@ DROP TABLE t1;
DROP PROCEDURE p1;
--source include/sync_slave_sql_with_master.inc
sync_slave_with_master;
--source include/rpl_end.inc
#
# wsrep_desync
#
call mtr.add_suppression("WSREP: SET desync failed 9 for SET @@global.wsrep_desync=ON");
call mtr.add_suppression("WSREP: SET desync failed 9 for schema: test, query: SET @@global.wsrep_desync=ON");
# save the initial value
SET @wsrep_desync_global_saved = @@global.wsrep_desync;
# default
......
......@@ -5,7 +5,7 @@
--echo #
# expected as no wsrep provider is currently loaded
call mtr.add_suppression("WSREP: SET desync failed 9 for SET @@global.wsrep_desync=ON");
call mtr.add_suppression("WSREP: SET desync failed 9 for schema: test, query: SET @@global.wsrep_desync=ON");
--echo # save the initial value
SET @wsrep_desync_global_saved = @@global.wsrep_desync;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment