diff options
author | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2013-01-30 16:34:33 +0100 |
---|---|---|
committer | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2013-01-30 16:34:33 +0100 |
commit | 9ad5d28cfd7d94d81f7132e61e04c828f108a8cd (patch) | |
tree | 9285ad62970c060a99f7c6b3c3e0cf9b26badddb /sonar-core | |
parent | 7a1de48e56dcefa56e13891205c84adbd86da741 (diff) | |
download | sonarqube-9ad5d28cfd7d94d81f7132e61e04c828f108a8cd.tar.gz sonarqube-9ad5d28cfd7d94d81f7132e61e04c828f108a8cd.zip |
SONAR-3959 Fix issue on Oracle
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml b/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml index 90d51ff3528..f92ab3f4993 100644 --- a/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml +++ b/sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml @@ -12,7 +12,7 @@ <select id="findUsersForNotification" parameterType="map" resultType="String"> SELECT U.login FROM properties P, users U - WHERE P.user_id = U.id AND P.prop_key = #{notifKey} AND P.text_value = 'true' + WHERE P.user_id = U.id AND P.prop_key = #{notifKey} AND P.text_value LIKE 'true' <if test="rId == null"> AND P.resource_id is null </if> |