Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/database/reindexing.rb')
-rw-r--r--lib/gitlab/database/reindexing.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/database/reindexing.rb b/lib/gitlab/database/reindexing.rb
index 0cfad690283..841e04ccbd1 100644
--- a/lib/gitlab/database/reindexing.rb
+++ b/lib/gitlab/database/reindexing.rb
@@ -6,6 +6,8 @@ module Gitlab
# Number of indexes to reindex per invocation
DEFAULT_INDEXES_PER_INVOCATION = 2
+ SUPPORTED_TYPES = %w(btree gist).freeze
+
# candidate_indexes: Array of Gitlab::Database::PostgresIndex
def self.perform(candidate_indexes, how_many: DEFAULT_INDEXES_PER_INVOCATION)
IndexSelection.new(candidate_indexes).take(how_many).each do |index|
@@ -15,10 +17,8 @@ module Gitlab
def self.candidate_indexes
Gitlab::Database::PostgresIndex
- .regular
- .where('NOT expression')
- .not_match("^#{ConcurrentReindex::TEMPORARY_INDEX_PREFIX}")
- .not_match("^#{ConcurrentReindex::REPLACED_INDEX_PREFIX}")
+ .not_match("#{ReindexConcurrently::TEMPORARY_INDEX_PATTERN}$")
+ .reindexing_support
end
end
end