Merge branch '2.2' into develop

This commit is contained in:
Markus Mäkelä
2018-09-14 10:38:26 +03:00
8 changed files with 49 additions and 12 deletions

View File

@ -352,7 +352,7 @@ static bool using_xtrabackup(MXS_MONITORED_SERVER* database, const char* server_
while ((row = mysql_fetch_row(result)))
{
if (row[1] && strncmp(row[1], "xtrabackup", 10) == 0)
if (row[1] && (strcmp(row[1], "xtrabackup") == 0 || strcmp(row[1], "mariabackup")))
{
rval = true;
}