Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

AddIndexesToRulesParametersTable.java 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2020 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.v83.rules.rulesparameters;
  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 AddIndexesToRulesParametersTable extends DdlChange {
  30. private static final String TABLE = "rules_parameters";
  31. private static final String RULE_UUID_INDEX = "rules_parameters_rule_uuid";
  32. private static final String RULE_UUID_NAME_UNIQUE_INDEX = "rules_parameters_unique";
  33. private static final VarcharColumnDef uuidColumnDefinition = newVarcharColumnDefBuilder()
  34. .setColumnName("rule_uuid")
  35. .setIsNullable(true)
  36. .setDefaultValue(null)
  37. .setLimit(VarcharColumnDef.UUID_SIZE)
  38. .build();
  39. private static final VarcharColumnDef nameColumnDefinition = newVarcharColumnDefBuilder()
  40. .setColumnName("name")
  41. .setLimit(128)
  42. .setIsNullable(false)
  43. .build();
  44. public AddIndexesToRulesParametersTable(Database db) {
  45. super(db);
  46. }
  47. @Override
  48. public void execute(Context context) throws SQLException {
  49. if (indexDoesNotExist(RULE_UUID_INDEX)) {
  50. context.execute(new CreateIndexBuilder()
  51. .setTable(TABLE)
  52. .setName(RULE_UUID_INDEX)
  53. .addColumn(uuidColumnDefinition)
  54. .build());
  55. }
  56. if (indexDoesNotExist(RULE_UUID_NAME_UNIQUE_INDEX)) {
  57. context.execute(new CreateIndexBuilder()
  58. .setTable(TABLE)
  59. .setName(RULE_UUID_NAME_UNIQUE_INDEX)
  60. .addColumn(uuidColumnDefinition)
  61. .addColumn(nameColumnDefinition)
  62. .setUnique(true)
  63. .build());
  64. }
  65. }
  66. private boolean indexDoesNotExist(String index) throws SQLException {
  67. try (Connection connection = getDatabase().getDataSource().getConnection()) {
  68. return !DatabaseUtils.indexExists(TABLE, index, connection);
  69. }
  70. }
  71. }