]> source.dussan.org Git - sonarqube.git/commitdiff
Revert wrong modification (Fix Migration on MsSQL)
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 31 Oct 2014 13:23:00 +0000 (14:23 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 31 Oct 2014 13:23:09 +0000 (14:23 +0100)
server/sonar-server/src/main/java/org/sonar/server/db/migrations/v42/PackageKeysMigration.java

index e0c75510945376c62f1f398152c51a2889c71bde..284b1893cdf6af8837b63404a4f42189b898bc1d 100644 (file)
@@ -43,7 +43,7 @@ public class PackageKeysMigration extends BaseDataChange {
   }
 
   @Override
-  public void execute(final Context context) throws SQLException {
+  public void execute(Context context) throws SQLException {
     MassUpdate massUpdate = context.prepareMassUpdate();
     massUpdate.select("SELECT id, kee FROM projects WHERE qualifier='PAC'");
     massUpdate.update("UPDATE projects SET qualifier='DIR', kee=? WHERE id=?");
@@ -54,9 +54,6 @@ public class PackageKeysMigration extends BaseDataChange {
         String key = row.getString(2);
         update.setString(1, convertKey(key));
         update.setLong(2, id);
-
-        context.prepareSelect("");
-
         return true;
       }
     });