Extract `rebuild_index` method in maintenance CLI (#28911)

master
Matt Jankowski 2024-01-25 10:26:51 -05:00 committed by GitHub
parent 0b38946c87
commit 4cdf62e576
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 5 deletions

View File

@ -244,10 +244,10 @@ module Mastodon::CLI
end end
say 'Reindexing textual indexes on accounts…' say 'Reindexing textual indexes on accounts…'
database_connection.execute('REINDEX INDEX search_index;') rebuild_index(:search_index)
database_connection.execute('REINDEX INDEX index_accounts_on_uri;') rebuild_index(:index_accounts_on_uri)
database_connection.execute('REINDEX INDEX index_accounts_on_url;') rebuild_index(:index_accounts_on_url)
database_connection.execute('REINDEX INDEX index_accounts_on_domain_and_id;') if migrator_version >= 2023_05_24_190515 rebuild_index(:index_accounts_on_domain_and_id) if migrator_version >= 2023_05_24_190515
end end
def deduplicate_users! def deduplicate_users!
@ -274,7 +274,7 @@ module Mastodon::CLI
database_connection.add_index :users, ['reset_password_token'], name: 'index_users_on_reset_password_token', unique: true, where: 'reset_password_token IS NOT NULL', opclass: :text_pattern_ops database_connection.add_index :users, ['reset_password_token'], name: 'index_users_on_reset_password_token', unique: true, where: 'reset_password_token IS NOT NULL', opclass: :text_pattern_ops
end end
database_connection.execute('REINDEX INDEX index_users_on_unconfirmed_email;') if migrator_version >= 2023_07_02_151753 rebuild_index(:index_users_on_unconfirmed_email) if migrator_version >= 2023_07_02_151753
end end
def deduplicate_users_process_email def deduplicate_users_process_email
@ -735,5 +735,9 @@ module Mastodon::CLI
def db_table_exists?(table) def db_table_exists?(table)
database_connection.table_exists?(table) database_connection.table_exists?(table)
end end
def rebuild_index(name)
database_connection.execute("REINDEX INDEX #{name}")
end
end end
end end