mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
1) remove unnecessary restriction on changing mode; 2) adding lost wsrep_replicate_myisam_basic test.
20 lines
381 B
Plaintext
20 lines
381 B
Plaintext
--source include/have_wsrep.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
|