Class: Gitlab::Database::Reindexing::IndexSelection

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/gitlab/database/reindexing/index_selection.rb

Constant Summary collapse

VERY_LARGE_TABLES =
%i[
  ci_builds
].freeze

Instance Method Summary collapse

Constructor Details

#initialize(candidates) ⇒ IndexSelection

Returns a new instance of IndexSelection.



15
16
17
# File 'lib/gitlab/database/reindexing/index_selection.rb', line 15

def initialize(candidates)
  @candidates = candidates
end