Skip to content

Commit

Permalink
MDEV-19054 : mysql_upgrade_service now allows MySQL 5.7 to MariaDB 10…
Browse files Browse the repository at this point in the history
….2 upgrade.
  • Loading branch information
vaintroub committed Mar 28, 2019
1 parent 0623cc7 commit 05ad7fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/winservice.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ BOOL exclude_service(mysqld_service_properties *props)
}
if ((props->version_major == 0) ||
(props->version_major > 5 && props->version_major < 10) ||
(props->version_major == 5 && props->version_minor > 6))
(props->version_major == 5 && props->version_minor > 7))
{
return TRUE;
}
Expand Down

0 comments on commit 05ad7fc

Please sign in to comment.