aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-08-03 08:49:09 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-08-05 19:32:12 +0200
commitcf4c403a4360a05a8af636466c52195b3aa9912f (patch)
treef9e8b0c531ec1fddfbc39496059301ad73a85d11
parentf9a8849bcd13d9a418306afa0037136be1e4d56f (diff)
downloadsonarqube-cf4c403a4360a05a8af636466c52195b3aa9912f.tar.gz
sonarqube-cf4c403a4360a05a8af636466c52195b3aa9912f.zip
Fix ActionPlanStats on Postgres
-rw-r--r--sonar-db/src/main/resources/org/sonar/db/issue/ActionPlanStatsMapper.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-db/src/main/resources/org/sonar/db/issue/ActionPlanStatsMapper.xml b/sonar-db/src/main/resources/org/sonar/db/issue/ActionPlanStatsMapper.xml
index e2ea32a5d69..30793f0de97 100644
--- a/sonar-db/src/main/resources/org/sonar/db/issue/ActionPlanStatsMapper.xml
+++ b/sonar-db/src/main/resources/org/sonar/db/issue/ActionPlanStatsMapper.xml
@@ -30,7 +30,7 @@
and ap.project_id = #{projectId}
</where>
group by ap.id, ap.kee, ap.name, ap.description, ap.user_login, ap.project_id, ap.status, ap.deadline,
- ap.created_at, ap.updated_at, p.kee
+ ap.created_at, ap.updated_at, p.kee, p.uuid
</select>
</mapper>