aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-01-17 14:06:45 +0100
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-01-17 14:06:45 +0100
commit7b9a36f85ff9617f2888da8aedae48fe7577ad05 (patch)
tree02f46b78841867a30b748be94c6b1974eb607045 /sonar-core
parentd1a27131ea2030af7e415921fc1d244d68046f9c (diff)
downloadsonarqube-7b9a36f85ff9617f2888da8aedae48fe7577ad05.tar.gz
sonarqube-7b9a36f85ff9617f2888da8aedae48fe7577ad05.zip
SONAR-4923 Fix query on Oracle
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/resources/org/sonar/core/properties/PropertiesMapper.xml2
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 82c218a70e6..eff90628032 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
@@ -104,7 +104,7 @@
</update>
<update id="updateProperties" parameterType="map">
- update properties set text_value=#{newValue} where text_value=#{oldValue} and prop_key=#{key}
+ update properties set text_value=#{newValue} where text_value LIKE #{oldValue} and prop_key=#{key}
</update>
</mapper>