Skip to content
Permalink
Browse files
MDEV-25690 Plugins can't execute sql statements with the Galera enabled.
For the plugin thread during the server start the wsrep_on should be 0.
  • Loading branch information
Alexey Botchkov committed May 17, 2021
1 parent 4d53a75 commit c22d567
Showing 1 changed file with 1 addition and 0 deletions.
@@ -6082,6 +6082,7 @@ extern "C" int execute_sql_command(const char *command,
new_thd->store_globals();
new_thd->security_ctx->skip_grants();
new_thd->query_cache_is_applicable= 0;
new_thd->variables.wsrep_on= 0;
bzero((char*) &new_thd->net, sizeof(new_thd->net));
thd= new_thd;
}

0 comments on commit c22d567

Please sign in to comment.