]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7176 Add index on CE_QUEUE.COMPONENT_UUID 706/head
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 7 Jan 2016 09:23:09 +0000 (10:23 +0100)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 7 Jan 2016 10:04:30 +0000 (11:04 +0100)
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1007_add_index_on_ce_queue_component_uuid.rb [new file with mode: 0644]
sonar-db/src/main/java/org/sonar/db/version/DatabaseVersion.java
sonar-db/src/main/resources/org/sonar/db/version/rows-h2.sql
sonar-db/src/main/resources/org/sonar/db/version/schema-h2.ddl

diff --git a/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1007_add_index_on_ce_queue_component_uuid.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1007_add_index_on_ce_queue_component_uuid.rb
new file mode 100644 (file)
index 0000000..77646e2
--- /dev/null
@@ -0,0 +1,33 @@
+#
+# SonarQube, open source software quality management tool.
+# Copyright (C) 2008-2014 SonarSource
+# mailto:contact AT sonarsource DOT com
+#
+# SonarQube is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 3 of the License, or (at your option) any later version.
+#
+# SonarQube is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+#
+
+#
+# SonarQube 5.3
+# SONAR-7176
+#
+class AddIndexOnCeQueueComponentUuid < ActiveRecord::Migration
+
+  def self.up
+    add_index :ce_queue, :component_uuid, :name => 'ce_queue_component_uuid'
+  end
+
+end
+
+
index 85915c7b67383854a4f364ae7ef8aaee8d849575..86084385665e5727793ee5a53dbe1679fc77a1ae 100644 (file)
@@ -29,7 +29,7 @@ import org.sonar.db.MyBatis;
 
 public class DatabaseVersion {
 
-  public static final int LAST_VERSION = 1006;
+  public static final int LAST_VERSION = 1007;
 
   /**
    * The minimum supported version which can be upgraded. Lower
index 363a767dccd5c42e2bea5d1e49a1daf742bc5d80..4de613385f40f411c36a4b54e41df47a60f585b1 100644 (file)
@@ -367,6 +367,7 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1003');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1004');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1005');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1006');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1007');
 
 INSERT INTO USERS(ID, LOGIN, NAME, EMAIL, CRYPTED_PASSWORD, SALT, CREATED_AT, UPDATED_AT, REMEMBER_TOKEN, REMEMBER_TOKEN_EXPIRES_AT) VALUES (1, 'admin', 'Administrator', '', 'a373a0e667abb2604c1fd571eb4ad47fe8cc0878', '48bc4b0d93179b5103fd3885ea9119498e9d161b', '1418215735482', '1418215735482', null, null);
 ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;
index 036d03b4c69564e5b33e7c2e0eacfea6e188ae14..42a3c21d3e9592cb36435bb77241212e55754e75 100644 (file)
@@ -705,6 +705,8 @@ CREATE UNIQUE INDEX "UNIQ_PROJECT_QPROFILES" ON "PROJECT_QPROFILES" ("PROJECT_UU
 
 CREATE UNIQUE INDEX "CE_QUEUE_UUID" ON "CE_QUEUE" ("UUID");
 
+CREATE INDEX "CE_QUEUE_COMPONENT_UUID" ON "CE_QUEUE" ("COMPONENT_UUID");
+
 CREATE UNIQUE INDEX "CE_ACTIVITY_UUID" ON "CE_ACTIVITY" ("UUID");
 
 CREATE INDEX "CE_ACTIVITY_COMPONENT_UUID" ON "CE_ACTIVITY" ("COMPONENT_UUID");