]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7893 end of support of MSSQL 2008
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 24 Aug 2016 11:24:05 +0000 (13:24 +0200)
committerGitHub <noreply@github.com>
Wed, 24 Aug 2016 11:24:05 +0000 (13:24 +0200)
sonar-application/src/main/assembly/conf/sonar.properties
sonar-db/src/main/java/org/sonar/db/DatabaseChecker.java

index 64641e131485a72452f91da37a06e967ebfb47f2..3925c097c85f8e646a09862282cb5c76dde5d796 100644 (file)
@@ -36,7 +36,7 @@
 #sonar.jdbc.url=jdbc:postgresql://localhost/sonar
 
 
-#----- Microsoft SQLServer 2008/2012/2014 and SQL Azure
+#----- Microsoft SQLServer 2012/2014 and SQL Azure
 # A database named sonar must exist and its collation must be case-sensitive (CS) and accent-sensitive (AS)
 # Use the following connection string if you want to use integrated security with Microsoft Sql Server
 # Do not set sonar.jdbc.username or sonar.jdbc.password property if you are using Integrated Security
index d4ce26de57378d959167dbf34021e1f1fc046882..f0b24cce41f8fafd925a24fcd32e7beb7cd848e9 100644 (file)
@@ -41,11 +41,10 @@ import org.sonar.db.dialect.PostgreSql;
 public class DatabaseChecker implements Startable {
 
   private static final Map<String, Version> MINIMAL_SUPPORTED_DB_VERSIONS = ImmutableMap.of(
-    // MsSQL 2008 is 10.x
     // MsSQL 2012 is 11.x
     // MsSQL 2014 is 12.x
     // https://support.microsoft.com/en-us/kb/321185
-    MsSql.ID, Version.create(10, 0, 0),
+    MsSql.ID, Version.create(11, 0, 0),
     MySql.ID, Version.create(5, 6, 0),
     Oracle.ID, Version.create(11, 0, 0),
     PostgreSql.ID, Version.create(8, 0, 0));