From 7d85d969c0d0dddb202ee9440cabd5c698a7cfe3 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 24 Aug 2016 13:24:05 +0200 Subject: [PATCH] SONAR-7893 end of support of MSSQL 2008 --- sonar-application/src/main/assembly/conf/sonar.properties | 2 +- sonar-db/src/main/java/org/sonar/db/DatabaseChecker.java | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index 64641e13148..3925c097c85 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -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 diff --git a/sonar-db/src/main/java/org/sonar/db/DatabaseChecker.java b/sonar-db/src/main/java/org/sonar/db/DatabaseChecker.java index d4ce26de573..f0b24cce41f 100644 --- a/sonar-db/src/main/java/org/sonar/db/DatabaseChecker.java +++ b/sonar-db/src/main/java/org/sonar/db/DatabaseChecker.java @@ -41,11 +41,10 @@ import org.sonar.db.dialect.PostgreSql; public class DatabaseChecker implements Startable { private static final Map 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)); -- 2.39.5