]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5758 fix SQL request
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 22 Oct 2014 09:00:55 +0000 (11:00 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 22 Oct 2014 09:00:55 +0000 (11:00 +0200)
server/sonar-server/src/main/java/org/sonar/server/db/migrations/v451/DeleteUnescapedActivities.java

index c0bbe4fa71aca96081f706e3b0c2c8b708c4b35a..87e0566b5937862c7d64cd5678c285d82fa3fdd6 100644 (file)
@@ -45,7 +45,7 @@ public class DeleteUnescapedActivities extends BaseDataChange {
   public void execute(Context context) throws SQLException {
     MassUpdate massUpdate = context.prepareMassUpdate();
     massUpdate.select("select id,data_field from activities where log_type='QPROFILE'");
-    massUpdate.update("delete activities where id=?");
+    massUpdate.update("delete from activities where id=?");
     massUpdate.execute(new MassUpdate.Handler() {
       @Override
       public boolean handle(Select.Row row, SqlStatement update) throws SQLException {