Commit d773fab7 authored by Julius Goryavsky's avatar Julius Goryavsky

MDEV-29755 correction: running wsrep_replicate_myisam_basic test with wsrep enabled

parent f0a60a6b
#
# wsrep_replicate_myisam
#
# save the initial value
SET @wsrep_mode_saved = @@global.wsrep_mode;
# scope and valid values
SET @@global.wsrep_mode=REPLICATE_MYISAM;
SELECT @@global.wsrep_mode;
@@global.wsrep_mode
REPLICATE_MYISAM
# restore the initial value
SET @@global.wsrep_mode = @wsrep_mode_saved;
# End of test
CALL mtr.add_suppression("WSREP: Could not open saved state file for reading: .*");
CALL mtr.add_suppression("WSREP: Could not open state file for reading: .*");
CALL mtr.add_suppression("WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)");
# Use default setting for mysqld processes
!include include/default_mysqld.cnf
[mysqld.1]
wsrep-on=1
#galera_port=@OPT.port
#ist_port=@OPT.port
#sst_port=@OPT.port
wsrep_provider_options='base_port=@mysqld.1.#galera_port;gcache.size=10M'
wsrep-cluster-address=gcomm://
wsrep-provider=@ENV.WSREP_PROVIDER
binlog-format=ROW
--source include/have_wsrep.inc
--source include/have_innodb.inc
--echo #
--echo # wsrep_replicate_myisam
--echo #
--echo # save the initial value
SET @wsrep_mode_saved = @@global.wsrep_mode;
--echo
--echo # scope and valid values
SET @@global.wsrep_mode=REPLICATE_MYISAM;
SELECT @@global.wsrep_mode;
--echo
--echo # restore the initial value
SET @@global.wsrep_mode = @wsrep_mode_saved;
--echo # End of test
CALL mtr.add_suppression("WSREP: Could not open saved state file for reading: .*");
CALL mtr.add_suppression("WSREP: Could not open state file for reading: .*");
CALL mtr.add_suppression("WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)");
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