diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-11-16 16:05:05 +0100 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-11-16 16:45:31 +0100 |
commit | ce59355081e759025cd0426ac8e315c603c2272b (patch) | |
tree | 0c707e1cb0f07cbb041dafd9fc2b14717dab6a7a /sonar-db | |
parent | 5e09c80b98511948c5c261181deaab035f627bc6 (diff) | |
download | sonarqube-ce59355081e759025cd0426ac8e315c603c2272b.tar.gz sonarqube-ce59355081e759025cd0426ac8e315c603c2272b.zip |
SONAR-8389 Property set settings order should be kept
Diffstat (limited to 'sonar-db')
-rw-r--r-- | sonar-db/src/main/resources/org/sonar/db/property/PropertiesMapper.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sonar-db/src/main/resources/org/sonar/db/property/PropertiesMapper.xml b/sonar-db/src/main/resources/org/sonar/db/property/PropertiesMapper.xml index d1fbc569e55..6656440da63 100644 --- a/sonar-db/src/main/resources/org/sonar/db/property/PropertiesMapper.xml +++ b/sonar-db/src/main/resources/org/sonar/db/property/PropertiesMapper.xml @@ -130,6 +130,7 @@ and p.resource_id=#{componentId} </if> and p.user_id is null + order by p.id </select> <select id="selectByKeysAndComponentIds" parameterType="map" resultType="ScrapProperty"> |