From 7b9a36f85ff9617f2888da8aedae48fe7577ad05 Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Fri, 17 Jan 2014 14:06:45 +0100 Subject: [PATCH] SONAR-4923 Fix query on Oracle --- .../resources/org/sonar/core/properties/PropertiesMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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} -- 2.39.5