mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
MDEV-10118 : do not suggest upgrade from MySQL 5.7 to MariaDB 10.x in the installer. Do not lauch upgrade wizard after installation
This commit is contained in:
parent
cee9ab9d85
commit
b6e826bac2
2 changed files with 12 additions and 5 deletions
|
|
@ -886,11 +886,11 @@ extern "C" UINT __stdcall CheckServiceUpgrades(MSIHANDLE hInstall)
|
|||
(QUERY_SERVICE_CONFIGW*)(void *)config_buffer;
|
||||
DWORD needed;
|
||||
BOOL ok= QueryServiceConfigW(service, config,sizeof(config_buffer),
|
||||
&needed);
|
||||
&needed) && (config->dwStartType != SERVICE_DISABLED);
|
||||
CloseServiceHandle(service);
|
||||
if (ok)
|
||||
{
|
||||
mysqld_service_properties props;
|
||||
mysqld_service_properties props;
|
||||
if (get_mysql_service_properties(config->lpBinaryPathName, &props))
|
||||
continue;
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue