diff options
author | Ian Gilfillan <github@greenman.co.za> | 2020-02-17 13:32:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-17 13:32:36 +0200 |
commit | 0683c8f7a23f598b12b9f472b27e51e4173e3ff1 (patch) | |
tree | 6f9a0ab45494f83107d00afbbeb5ca09bed1dcad | |
parent | fc876980480616613f8eb8125a9b23af7ddf6d7e (diff) | |
download | mariadb-git-0683c8f7a23f598b12b9f472b27e51e4173e3ff1.tar.gz |
Clarify, spelling for wsrep_strict_ddl description (#1447)
-rw-r--r-- | mysql-test/suite/sys_vars/r/sysvars_wsrep.result | 2 | ||||
-rw-r--r-- | sql/sys_vars.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/sys_vars/r/sysvars_wsrep.result b/mysql-test/suite/sys_vars/r/sysvars_wsrep.result index 328fa1fee16..4b6abf85434 100644 --- a/mysql-test/suite/sys_vars/r/sysvars_wsrep.result +++ b/mysql-test/suite/sys_vars/r/sysvars_wsrep.result @@ -713,7 +713,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME DEFAULT_VALUE OFF VARIABLE_SCOPE GLOBAL VARIABLE_TYPE BOOLEAN -VARIABLE_COMMENT Reject DDL on effected tables not supporting Galera replication +VARIABLE_COMMENT If set, reject DDL on affected tables not supporting Galera replication NUMERIC_MIN_VALUE NULL NUMERIC_MAX_VALUE NULL NUMERIC_BLOCK_SIZE NULL diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc index d88e8fe1d82..7f61da63d60 100644 --- a/sql/sys_vars.cc +++ b/sql/sys_vars.cc @@ -5666,7 +5666,7 @@ static Sys_var_mybool Sys_wsrep_desync ( ON_UPDATE(wsrep_desync_update)); static Sys_var_mybool Sys_wsrep_strict_ddl ( - "wsrep_strict_ddl", "Reject DDL on effected tables not supporting Galera replication", + "wsrep_strict_ddl", "If set, reject DDL on affected tables not supporting Galera replication", GLOBAL_VAR(wsrep_strict_ddl), CMD_LINE(OPT_ARG), DEFAULT(FALSE), NO_MUTEX_GUARD, NOT_IN_BINLOG, |