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.
16 lines
320 B
Plaintext
16 lines
320 B
Plaintext
#
|
|
# 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
|