You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AddIndexOnMetricUuidAndAnalysisUuidOfProjectMeasuresTable.java 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2021 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. package org.sonar.server.platform.db.migration.version.v84.metrics.projectmeasures;
  21. import java.sql.Connection;
  22. import java.sql.SQLException;
  23. import org.sonar.db.Database;
  24. import org.sonar.db.DatabaseUtils;
  25. import org.sonar.server.platform.db.migration.def.VarcharColumnDef;
  26. import org.sonar.server.platform.db.migration.sql.CreateIndexBuilder;
  27. import org.sonar.server.platform.db.migration.step.DdlChange;
  28. import static org.sonar.server.platform.db.migration.def.VarcharColumnDef.newVarcharColumnDefBuilder;
  29. public class AddIndexOnMetricUuidAndAnalysisUuidOfProjectMeasuresTable extends DdlChange {
  30. private static final String TABLE_NAME = "project_measures";
  31. private static final String INDEX_NAME = "measures_analysis_metric";
  32. public AddIndexOnMetricUuidAndAnalysisUuidOfProjectMeasuresTable(Database db) {
  33. super(db);
  34. }
  35. @Override
  36. public void execute(Context context) throws SQLException {
  37. if (!indexExists()) {
  38. context.execute(new CreateIndexBuilder()
  39. .setUnique(false)
  40. .setTable(TABLE_NAME)
  41. .setName(INDEX_NAME)
  42. .addColumn(newVarcharColumnDefBuilder()
  43. .setColumnName("analysis_uuid")
  44. .setIsNullable(false)
  45. .setLimit(VarcharColumnDef.UUID_SIZE)
  46. .build())
  47. .addColumn(newVarcharColumnDefBuilder()
  48. .setColumnName("metric_uuid")
  49. .setIsNullable(false)
  50. .setLimit(VarcharColumnDef.UUID_SIZE)
  51. .build())
  52. .build());
  53. }
  54. }
  55. private boolean indexExists() throws SQLException {
  56. try (Connection connection = getDatabase().getDataSource().getConnection()) {
  57. return DatabaseUtils.indexExistsIgnoreCase(TABLE_NAME, INDEX_NAME, connection);
  58. }
  59. }
  60. }