mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Null pointer reference to wsrep_provider_options variable. Fixed by adding condition and error handling.
12 lines
367 B
Plaintext
12 lines
367 B
Plaintext
--source include/galera_cluster.inc
|
|
|
|
call mtr.add_suppression("WSREP: Unknown parameter 'a'");
|
|
call mtr.add_suppression("WSREP: Set options returned 7");
|
|
|
|
--error ER_WRONG_ARGUMENTS
|
|
SET GLOBAL wsrep_provider_options=NULL;
|
|
SET GLOBAL wsrep_provider_options='';
|
|
SET GLOBAL wsrep_provider_options=' ';
|
|
--error ER_WRONG_ARGUMENTS
|
|
SET GLOBAL wsrep_provider_options='a=1';
|