aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/src/main
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-06-13 16:31:36 +0200
committerJulien Lancelot <julien.lancelot@gmail.com>2013-06-13 16:32:41 +0200
commit27576858612f0d5a141ce71b2862ff6c906dabfb (patch)
treee3a7f20b3b56ea5d017ed6f13d192b224bc1e154 /sonar-core/src/main
parenta06137eb1111b48e20ccc2f0ac5989e35bd83c55 (diff)
downloadsonarqube-27576858612f0d5a141ce71b2862ff6c906dabfb.tar.gz
sonarqube-27576858612f0d5a141ce71b2862ff6c906dabfb.zip
SONAR-4301 Remove order by id desc because it generates an important overhead
Diffstat (limited to 'sonar-core/src/main')
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml2
1 files changed, 0 insertions, 2 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml b/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml
index 1495d7bf359..aff84d57572 100644
--- a/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml
+++ b/sonar-core/src/main/resources/org/sonar/core/issue/db/IssueMapper.xml
@@ -199,7 +199,6 @@
</foreach>
</foreach>
</where>
- order by i.id desc
</select>
<select id="selectIssues" parameterType="map" resultType="Issue" fetchSize="100000">
@@ -307,7 +306,6 @@
and i.issue_creation_date &lt; #{query.createdBefore}
</if>
</where>
- order by i.id desc
</sql>
</mapper>