summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorNirbhay Choubey <nirbhay@mariadb.com>2016-09-29 14:58:32 -0400
committerNirbhay Choubey <nirbhay@mariadb.com>2016-09-29 15:00:20 -0400
commit6925689ca829901567e9503fd4fdce443f9a7d53 (patch)
tree7ec05b3133aef71c92f1f109782ce089ee56d8f9 /sql
parent235876d70e22b7d8c06768b3a4a9ecbf5c9bbc7a (diff)
downloadmariadb-git-6925689ca829901567e9503fd4fdce443f9a7d53.tar.gz
MDEV-9312: storage engine not enforced during galera cluster replicationmariadb-10.1.18
Postfix: The pre-initialization of wsrep threads is not needed for mysqldump sst method.
Diffstat (limited to 'sql')
-rw-r--r--sql/mysqld.cc4
-rw-r--r--sql/wsrep_mysqld.cc6
2 files changed, 8 insertions, 2 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index f69416c34ea..466a54b21a8 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -5316,8 +5316,10 @@ static int init_server_components()
initialized. This initialization was not possible before, as plugins
(and thus some global system variables) are initialized after wsrep
startup threads are created.
+ Note: This only needs to be done for rsync, xtrabackup based SST methods.
*/
- wsrep_plugins_post_init();
+ if (wsrep_before_SE())
+ wsrep_plugins_post_init();
if (WSREP_ON && !opt_bin_log)
{
diff --git a/sql/wsrep_mysqld.cc b/sql/wsrep_mysqld.cc
index 5f25ea1ef38..0deb19dfc77 100644
--- a/sql/wsrep_mysqld.cc
+++ b/sql/wsrep_mysqld.cc
@@ -786,8 +786,12 @@ void wsrep_init_startup (bool first)
Pre-initialize global_system_variables.table_plugin with a dummy engine
(placeholder) required during the initialization of wsrep threads (THDs).
(see: plugin_thdvar_init())
+ Note: This only needs to be done for rsync & xtrabackup based SST methods.
+ In case of mysqldump SST method, the wsrep threads are created after the
+ server plugins & global system variables are initialized.
*/
- wsrep_plugins_pre_init();
+ if (wsrep_before_SE())
+ wsrep_plugins_pre_init();
/* Skip replication start if dummy wsrep provider is loaded */
if (!strcmp(wsrep_provider, WSREP_NONE)) return;