mariadb/mysql-test/suite/wsrep/t/wsrep_provider_plugin.test
Jan Lindström 2988db1cd9 MDEV-30318 : galera error messages in mariadb log without galera enabled
Do not compile wsrep_provider plugin if WITH_WSREP is not enabled.
We should not enable wsrep_provider plugin if WSREP_ON=OFF and
at that case we can only print information that Plugin
'wsrep-provider' is disabled.

Make sure tests require Galera library 26.4.14 if needed.
2023-02-14 13:57:47 +01:00

41 lines
1.2 KiB
Text

#
# Verify that system variables can be modified via wsrep_provider
# plugin and wsrep_provider/wsrep_provider_options cannot be modified.
#
--source include/have_wsrep.inc
--source include/have_innodb.inc
--let $galera_version=26.4.14
source include/check_galera_version.inc;
CREATE TABLE t1 (f1 INT PRIMARY KEY) ENGINE=InnoDB;
SET GLOBAL wsrep_provider_repl_max_ws_size=1;
SHOW VARIABLES LIKE 'wsrep_provider_repl_max_ws_size';
--error ER_UNKNOWN_ERROR
INSERT INTO t1 VALUES (1);
SET GLOBAL wsrep_provider_repl_max_ws_size=DEFAULT;
SHOW VARIABLES LIKE 'wsrep_provider_repl_max_ws_size';
INSERT INTO t1 VALUES (1);
# Variable should be read only, must not take effect
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
SET GLOBAL wsrep_provider_options='repl.max_ws_size=1';
INSERT INTO t1 VALUES (2);
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
SET GLOBAL wsrep_provider='none';
DROP TABLE t1;
CALL mtr.add_suppression("transaction size limit");
CALL mtr.add_suppression("rbr write fail");
#
# MDEV-30120 :Update the wsrep_provider_options read_only value in the system_variables table.
#
SELECT VARIABLE_NAME,READ_ONLY FROM information_schema.system_variables where VARIABLE_NAME like '%wsrep_provider_options%';