diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-01-17 14:06:45 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-01-17 14:06:45 +0100 |
commit | 7b9a36f85ff9617f2888da8aedae48fe7577ad05 (patch) | |
tree | 02f46b78841867a30b748be94c6b1974eb607045 /sonar-core | |
parent | d1a27131ea2030af7e415921fc1d244d68046f9c (diff) | |
download | sonarqube-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.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 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> |