mirror of
https://github.com/MariaDB/server.git
synced 2025-09-11 05:52:26 +03:00
Null pointer reference to wsrep_provider_options variable. Fixed by adding condition and error handling.
11 lines
393 B
Plaintext
11 lines
393 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
call mtr.add_suppression("WSREP: Unknown parameter 'a'");
|
|
call mtr.add_suppression("WSREP: Set options returned 7");
|
|
SET GLOBAL wsrep_provider_options=NULL;
|
|
ERROR HY000: Incorrect arguments to SET
|
|
SET GLOBAL wsrep_provider_options='';
|
|
SET GLOBAL wsrep_provider_options=' ';
|
|
SET GLOBAL wsrep_provider_options='a=1';
|
|
ERROR HY000: Incorrect arguments to SET
|