mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
ba4ed3ee84
The memory alloc-ed initially for wsrep_sst_auth to store the value specified in config was lost as the global variable was reset while in process of masking it and thus, could never be reclaimed on shutdown.
12 lines
310 B
Text
12 lines
310 B
Text
--source include/galera_cluster.inc
|
|
--source include/have_innodb.inc
|
|
|
|
--echo #
|
|
--echo # MDEV-10492: Assertion failure on shutdown when wsrep_sst_auth set in config
|
|
--echo #
|
|
|
|
SELECT @@global.wsrep_sst_auth;
|
|
SET @@global.wsrep_sst_auth='foo:bar';
|
|
SELECT @@global.wsrep_sst_auth;
|
|
|
|
--source include/galera_end.inc
|