Commit 72542ffd authored by Jan Lindström's avatar Jan Lindström Committed by GitHub

Merge pull request #550 from grooverdan/10.1-wsrep_sst_mysqldump-no-max-version

MDEV-15045 - wsrep_sst_mysqldump: enforce a minimum version only
parents f4d79863 c73b4b16
...@@ -57,10 +57,10 @@ then ...@@ -57,10 +57,10 @@ then
fi fi
# Check client version # Check client version
if ! $MYSQL_CLIENT --version | grep 'Distrib 10.1' >/dev/null if ! $MYSQL_CLIENT --version | grep 'Distrib 10\.[1-9]' >/dev/null
then then
$MYSQL_CLIENT --version >&2 $MYSQL_CLIENT --version >&2
wsrep_log_error "this operation requires MySQL client version 10 or newer" wsrep_log_error "this operation requires MySQL client version 10.1 or newer"
exit $EINVAL exit $EINVAL
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment