/* * SonarQube * Copyright (C) 2009-2021 SonarSource SA * mailto:info AT sonarsource DOT com * * This program 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. * * This program 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. */ package org.sonar.server.platform.db.migration.version.v84.metrics.projectmeasures; import java.sql.Connection; import java.sql.SQLException; import org.sonar.db.Database; import org.sonar.db.DatabaseUtils; import org.sonar.server.platform.db.migration.def.VarcharColumnDef; import org.sonar.server.platform.db.migration.sql.CreateIndexBuilder; import org.sonar.server.platform.db.migration.step.DdlChange; import static org.sonar.server.platform.db.migration.def.VarcharColumnDef.newVarcharColumnDefBuilder; public class AddIndexOnMetricUuidAndAnalysisUuidOfProjectMeasuresTable extends DdlChange { private static final String TABLE_NAME = "project_measures"; private static final String INDEX_NAME = "measures_analysis_metric"; public AddIndexOnMetricUuidAndAnalysisUuidOfProjectMeasuresTable(Database db) { super(db); } @Override public void execute(Context context) throws SQLException { if (!indexExists()) { context.execute(new CreateIndexBuilder() .setUnique(false) .setTable(TABLE_NAME) .setName(INDEX_NAME) .addColumn(newVarcharColumnDefBuilder() .setColumnName("analysis_uuid") .setIsNullable(false) .setLimit(VarcharColumnDef.UUID_SIZE) .build()) .addColumn(newVarcharColumnDefBuilder() .setColumnName("metric_uuid") .setIsNullable(false) .setLimit(VarcharColumnDef.UUID_SIZE) .build()) .build()); } } private boolean indexExists() throws SQLException { try (Connection connection = getDatabase().getDataSource().getConnection()) { return DatabaseUtils.indexExistsIgnoreCase(TABLE_NAME, INDEX_NAME, connection); } } }