Skip to content

Commit 4af8587

Browse files
committed
Bug #13071597: MYSQL SERVER COMMUNITY TO ADVANCED USING MSI THE INSTALLER
Cross-upgrades between GPL and commercial versions should be allowed by the MSI package even when both packages are the same version. Fixed by allowing upgrades to the same numeric version.
1 parent 92f8143 commit 4af8587

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packaging/WiX/mysql_server.wxs.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@
4545
Minimum="@MAJOR_VERSION@.@[email protected]"
4646
IncludeMinimum="yes"
4747
Maximum="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@"
48+
IncludeMaximum="yes"
4849
Property="OLDERVERSIONBEINGUPGRADED"
4950
MigrateFeatures="yes"
5051
/>
5152
<UpgradeVersion
5253
Minimum="@MAJOR_VERSION@.@MINOR_VERSION@.@PATCH_VERSION@"
54+
IncludeMinimum="no"
5355
OnlyDetect="yes"
5456
Property="NEWERVERSIONDETECTED" />
5557
</Upgrade>

0 commit comments

Comments
 (0)