]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-12261 fix project QG search on MsSQL
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Tue, 2 Jul 2019 11:44:49 +0000 (13:44 +0200)
committerSonarTech <sonartech@sonarsource.com>
Thu, 17 Oct 2019 13:24:47 +0000 (15:24 +0200)
server/sonar-db-dao/src/main/resources/org/sonar/db/qualitygate/ProjectQgateAssociationMapper.xml

index 547eeeacc09980b7a54d1bbcf405b12436fa1aa2..5d9239182ed56bb4c395fc2f58f87d9cbb9737e7 100644 (file)
@@ -4,7 +4,7 @@
 <mapper namespace="org.sonar.db.qualitygate.ProjectQgateAssociationMapper">
 
   <select id="selectProjects" parameterType="map" resultType="ProjectQgateAssociation">
-    SELECT proj.id as id, proj.kee as key, proj.name as name, prop.text_value as gateId
+    SELECT proj.id as id, proj.kee as "key", proj.name as name, prop.text_value as gateId
     FROM projects proj
     LEFT JOIN properties prop ON prop.resource_id=proj.id AND prop.prop_key='sonar.qualitygate' AND prop.text_value = #{query.gateId}
     where