Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e97671b8
Commit
e97671b8
authored
Dec 27, 2017
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify implementation and allow for batch updates in MySQL
parent
dfdf22c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
27 deletions
+16
-27
db/migrate/20171106151218_issues_moved_to_id_foreign_key.rb
db/migrate/20171106151218_issues_moved_to_id_foreign_key.rb
+16
-27
No files found.
db/migrate/20171106151218_issues_moved_to_id_foreign_key.rb
View file @
e97671b8
...
...
@@ -15,18 +15,26 @@ class IssuesMovedToIdForeignKey < ActiveRecord::Migration
self
.
table_name
=
'issues'
def
self
.
with_orphaned_moved_to_issues
# Be careful to use a second table here for comparison otherwise we'll null
# out all rows that don't have id == moved_to_id!
where
(
'NOT EXISTS (SELECT true FROM issues b WHERE issues.moved_to_id = b.id)'
)
.
where
(
'moved_to_id IS NOT NULL'
)
if
Gitlab
::
Database
.
postgresql?
# Be careful to use a second table here for comparison otherwise we'll null
# out all rows that don't have id == moved.to_id!
where
(
'NOT EXISTS (SELECT true FROM issues B WHERE issues.moved_to_id = B.id)'
)
.
where
(
'moved_to_id IS NOT NULL'
)
else
# MySQL doesn't allow modification of the same table in a subquery,
# and using a temporary table isn't automatically guaranteed to work
# due to the MySQL query optimizer. See
# https://dev.mysql.com/doc/refman/5.7/en/update.html for more
# details.
joins
(
'LEFT JOIN issues AS b ON issues.moved_to_id = b.id'
)
.
where
(
'issues.moved_to_id IS NOT NULL AND b.id IS NULL'
)
end
end
end
def
up
if
Gitlab
::
Database
.
postgresql?
postgresql_remove_orphaned_moved_to_ids
else
mysql_remove_orphaned_moved_to_ids
Issue
.
with_orphaned_moved_to_issues
.
each_batch
(
of:
100
)
do
|
batch
|
batch
.
update_all
(
moved_to_id:
nil
)
end
add_concurrent_foreign_key
(
...
...
@@ -45,23 +53,4 @@ class IssuesMovedToIdForeignKey < ActiveRecord::Migration
remove_foreign_key_without_error
(
:issues
,
column: :moved_to_id
)
remove_concurrent_index
(
:issues
,
:moved_to_id
)
end
private
def
postgresql_remove_orphaned_moved_to_ids
Issue
.
with_orphaned_moved_to_issues
.
each_batch
(
of:
100
)
do
|
batch
|
batch
.
update_all
(
moved_to_id:
nil
)
end
end
# MySQL doesn't allow modification of the same table in a subquery. See
# https://dev.mysql.com/doc/refman/5.7/en/update.html for more details.
def
mysql_remove_orphaned_moved_to_ids
execute
<<~
SQL
UPDATE issues AS a
LEFT JOIN issues AS b ON a.moved_to_id = b.id
SET a.moved_to_id = NULL
WHERE a.moved_to_id IS NOT NULL AND b.id IS NULL;
SQL
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment