1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-13 01:01:44 +03:00
Jan Lindström 86f9b77147 MDEV-13037: wsrep_sst_mysqldump checking wrong version of mysql client
This happens because on line 59 of /usr/bin/wsrep_sst_mysqldump
we have a check :
   "if ! $MYSQL_CLIENT --version | grep 'Distrib 10.1' >/dev/null"
but the client is 10.2 so it doesnt match the grep expression.

Fixed check to be:
      "if ! $MYSQL_CLIENT --version | grep 'Distrib 10.' >/dev/null"
so that every 10. version is accepted.
2017-08-09 12:47:12 +03:00
..
2017-05-06 14:36:46 +03:00
2014-10-09 10:30:11 +02:00
2011-06-30 17:46:53 +02:00
2013-08-30 11:25:49 +02:00
2017-01-26 13:51:03 +02:00
2014-11-19 17:23:39 +01:00
2016-06-28 22:01:55 +02:00
2017-04-28 20:19:32 +02:00
2014-10-15 12:59:13 +02:00
2017-05-06 14:36:46 +03:00