summaryrefslogtreecommitdiff
path: root/sql/wsrep_var.cc
diff options
context:
space:
mode:
authorVicențiu Ciorbaru <vicentiu@mariadb.org>2018-06-13 08:57:15 +0300
committerVicențiu Ciorbaru <vicentiu@mariadb.org>2018-06-13 08:57:15 +0300
commitedc1b8e1172abc35644f2b4824a78d49ac17a7d2 (patch)
tree6cf43c1625e81926c5806b88cc04acebc929cd80 /sql/wsrep_var.cc
parentcec2219cc54008e18bf112877bd239c885020e4a (diff)
downloadmariadb-git-edc1b8e1172abc35644f2b4824a78d49ac17a7d2.tar.gz
Fix wsrep.variables test case
Correctly port 09b25f85966f44aae933e86b84b4ebe59ded47c3 from 10.0. Expose check_is_super via include file to allow wsrep_on_check to use it.
Diffstat (limited to 'sql/wsrep_var.cc')
-rw-r--r--sql/wsrep_var.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/wsrep_var.cc b/sql/wsrep_var.cc
index 2d52396331d..216bab0cdcd 100644
--- a/sql/wsrep_var.cc
+++ b/sql/wsrep_var.cc
@@ -69,6 +69,9 @@ bool wsrep_on_check(sys_var *self, THD* thd, set_var* var)
{
bool new_wsrep_on= (bool)var->save_result.ulonglong_value;
+ if (check_has_super(self, thd, var))
+ return true;
+
if (new_wsrep_on && innodb_lock_schedule_algorithm != 0) {
my_message(ER_WRONG_ARGUMENTS, " WSREP (galera) can't be enabled "
"if innodb_lock_schedule_algorithm=VATS. Please configure"