]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7688 add index to PROJECT_MEASURES.COMPONENT_UUID
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 22 Jun 2016 13:43:21 +0000 (15:43 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 22 Jun 2016 14:56:11 +0000 (16:56 +0200)
server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1245_add_index_on_component_uuid_of_measures.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/1245_add_index_on_component_uuid_of_measures.rb b/server/sonar-web/src/main/webapp/WEB-INF/db/migrate/1245_add_index_on_component_uuid_of_measures.rb
new file mode 100644 (file)
index 0000000..2dabb9a
--- /dev/null
@@ -0,0 +1,29 @@
+#
+# 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 6.0
+#
+class AddIndexOnComponentUuidOfMeasures < ActiveRecord::Migration
+
+  def self.up
+    add_index :project_measures, :component_uuid, :name => 'measures_component_uuid'
+  end
+end
index bf564b9228300e01efc5cd965f5f35d5e392fa62..c5c58f99d32a9a8ae808954a34c456454755805a 100644 (file)
@@ -30,7 +30,7 @@ import org.sonar.db.MyBatis;
 
 public class DatabaseVersion {
 
-  public static final int LAST_VERSION = 1_244;
+  public static final int LAST_VERSION = 1_245;
 
   /**
    * The minimum supported version which can be upgraded. Lower
index e279cddd5cc24953da4614beaa5927487deab438..6f8bca251cf1e6bef4706659e351885c10059b2b 100644 (file)
@@ -451,6 +451,7 @@ INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1241');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1242');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1243');
 INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1244');
+INSERT INTO SCHEMA_MIGRATIONS(VERSION) VALUES ('1245');
 
 INSERT INTO USERS(ID, LOGIN, NAME, EMAIL, EXTERNAL_IDENTITY, EXTERNAL_IDENTITY_PROVIDER, USER_LOCAL, CRYPTED_PASSWORD, SALT, CREATED_AT, UPDATED_AT) VALUES (1, 'admin', 'Administrator', '', 'admin', 'sonarqube', true, 'a373a0e667abb2604c1fd571eb4ad47fe8cc0878', '48bc4b0d93179b5103fd3885ea9119498e9d161b', '1418215735482', '1418215735482');
 ALTER TABLE USERS ALTER COLUMN ID RESTART WITH 2;
index b4148886def1219374f6fb349844b1cd02585479..aa11e3b2babafbaaabd0893cb3d5bb72dc4d65a9 100644 (file)
@@ -560,6 +560,8 @@ CREATE INDEX "MEASURES_SID_METRIC" ON "PROJECT_MEASURES" ("SNAPSHOT_ID", "METRIC
 
 CREATE INDEX "MEASURES_PERSON" ON "PROJECT_MEASURES" ("PERSON_ID");
 
+CREATE INDEX "MEASURES_COMPONENT_UUID" ON "PROJECT_MEASURES" ("COMPONENT_UUID");
+
 CREATE UNIQUE INDEX "METRICS_UNIQUE_NAME" ON "METRICS" ("NAME");
 
 CREATE INDEX "EVENTS_SNAPSHOT_ID" ON "EVENTS" ("SNAPSHOT_ID");