diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2020-11-03 11:35:05 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-11-03 20:05:45 +0000 |
commit | aca2262d7379735f4ea01e84115da7a4ae19e9c3 (patch) | |
tree | 60fcfddf598d64febfbe3553a8b235527d0d8c21 /server/sonar-db-core | |
parent | 07997af4347cde6e6554a985db1c5a866bc061b6 (diff) | |
download | sonarqube-aca2262d7379735f4ea01e84115da7a4ae19e9c3.tar.gz sonarqube-aca2262d7379735f4ea01e84115da7a4ae19e9c3.zip |
SONAR-13913 Remove tables and indexes clean up used in Integration Tests
Diffstat (limited to 'server/sonar-db-core')
-rw-r--r-- | server/sonar-db-core/src/main/java/org/sonar/db/version/SqTables.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/server/sonar-db-core/src/main/java/org/sonar/db/version/SqTables.java b/server/sonar-db-core/src/main/java/org/sonar/db/version/SqTables.java index 4c2f24626c0..4c705ec451d 100644 --- a/server/sonar-db-core/src/main/java/org/sonar/db/version/SqTables.java +++ b/server/sonar-db-core/src/main/java/org/sonar/db/version/SqTables.java @@ -26,23 +26,6 @@ import static java.util.Arrays.asList; import static java.util.Collections.unmodifiableSet; public final class SqTables { - /** - * These tables are still involved in DB migrations, so potentially - * incorrect collation must be fixed so that joins with other - * tables are possible. - */ - public static final Set<String> OLD_DROPPED_TABLES = unmodifiableSet(new HashSet<>(asList( - "active_dashboards", - "activities", - "dashboards", - "issue_filters", - "issue_filter_favourites", - "loaded_templates", - "measure_filters", - "measure_filter_favourites", - "resource_index", - "widgets", - "widget_properties"))); /** * List of all the tables. |