diff options
author | Julius Goryavsky <sysprg@gmail.com> | 2018-08-09 02:24:12 +0000 |
---|---|---|
committer | Julius Goryavsky <sysprg@gmail.com> | 2018-08-09 02:24:12 +0000 |
commit | 7e8ed15b95b64af2068a3515fe97f2c245311323 (patch) | |
tree | d3fbd2ceff09f51a346a1f073c808f5af8747c08 /scripts/wsrep_sst_common.sh | |
parent | 6d5b71e02ac79f19f4e3d8a15e7a5d415b09cd29 (diff) | |
download | mariadb-git-7e8ed15b95b64af2068a3515fe97f2c245311323.tar.gz |
Fixes after review and correction of the problems caused by the fact that during the SST innodb plugin is not yet initialized, as well as problems with running tests from the root user (not directly related to the MDEV-10754).
Diffstat (limited to 'scripts/wsrep_sst_common.sh')
-rw-r--r-- | scripts/wsrep_sst_common.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/wsrep_sst_common.sh b/scripts/wsrep_sst_common.sh index e160bf5c776..7f1f44d0cdb 100644 --- a/scripts/wsrep_sst_common.sh +++ b/scripts/wsrep_sst_common.sh @@ -27,6 +27,7 @@ WSREP_SST_OPT_PSWD=${WSREP_SST_OPT_PSWD:-} WSREP_SST_OPT_DEFAULT="" WSREP_SST_OPT_EXTRA_DEFAULT="" WSREP_SST_OPT_SUFFIX_DEFAULT="" +WSREP_SST_OPT_SUFFIX_VALUE="" while [ $# -gt 0 ]; do case "$1" in @@ -76,6 +77,7 @@ case "$1" in ;; '--defaults-group-suffix') readonly WSREP_SST_OPT_SUFFIX_DEFAULT="$1=$2" + readonly WSREP_SST_OPT_SUFFIX_VALUE="$2" shift ;; '--host') |