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/tables_locker.rb')
-rw-r--r--lib/gitlab/database/tables_locker.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/gitlab/database/tables_locker.rb b/lib/gitlab/database/tables_locker.rb
index 42a2c5c02f7..1b6ab3fb24b 100644
--- a/lib/gitlab/database/tables_locker.rb
+++ b/lib/gitlab/database/tables_locker.rb
@@ -8,6 +8,7 @@ module Gitlab
def initialize(logger: nil, dry_run: false)
@logger = logger
@dry_run = dry_run
+ @result = []
end
def unlock_writes
@@ -19,6 +20,8 @@ module Gitlab
unlock_writes_on_table(table_name, connection, database_name)
end
end
+
+ @result
end
# It locks the tables on the database where they don't belong. Also it unlocks the tables
@@ -38,25 +41,27 @@ module Gitlab
end
end
end
+
+ @result
end
private
# Unlocks the writes on the table and its partitions
def unlock_writes_on_table(table_name, connection, database_name)
- lock_writes_manager(table_name, connection, database_name).unlock_writes
+ @result << lock_writes_manager(table_name, connection, database_name).unlock_writes
table_attached_partitions(table_name, connection) do |postgres_partition|
- lock_writes_manager(postgres_partition.identifier, connection, database_name).unlock_writes
+ @result << lock_writes_manager(postgres_partition.identifier, connection, database_name).unlock_writes
end
end
# It locks the writes on the table and its partitions
def lock_writes_on_table(table_name, connection, database_name)
- lock_writes_manager(table_name, connection, database_name).lock_writes
+ @result << lock_writes_manager(table_name, connection, database_name).lock_writes
table_attached_partitions(table_name, connection) do |postgres_partition|
- lock_writes_manager(postgres_partition.identifier, connection, database_name).lock_writes
+ @result << lock_writes_manager(postgres_partition.identifier, connection, database_name).lock_writes
end
end