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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
ad4ec446
Commit
ad4ec446
authored
Dec 15, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve performance on RemoveDuplicatesFromRoutes migration
parent
fd0d8a28
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
14 deletions
+10
-14
db/migrate/20161202152031_remove_duplicates_from_routes.rb
db/migrate/20161202152031_remove_duplicates_from_routes.rb
+10
-14
No files found.
db/migrate/20161202152031_remove_duplicates_from_routes.rb
View file @
ad4ec446
...
@@ -12,20 +12,16 @@ class RemoveDuplicatesFromRoutes < ActiveRecord::Migration
...
@@ -12,20 +12,16 @@ class RemoveDuplicatesFromRoutes < ActiveRecord::Migration
# to fill these values that avoid duplicate entries in the routes table.
# to fill these values that avoid duplicate entries in the routes table.
return
unless
Gitlab
::
Database
.
mysql?
return
unless
Gitlab
::
Database
.
mysql?
select_all
(
"SELECT path FROM
#{
quote_table_name
(
:routes
)
}
GROUP BY path HAVING COUNT(*) > 1"
).
each
do
|
row
|
execute
<<-
EOF
path
=
connection
.
quote
(
row
[
'path'
])
DELETE duplicated_rows.*
execute
(
%Q{
FROM routes AS duplicated_rows
DELETE FROM
#{
quote_table_name
(
:routes
)
}
INNER JOIN (
WHERE path =
#{
path
}
SELECT path, MAX(id) as max_id
AND id != (
FROM routes
SELECT id FROM (
GROUP BY path
SELECT max(id) AS id
HAVING COUNT(*) > 1
FROM
#{
quote_table_name
(
:routes
)
}
) AS good_rows ON good_rows.path = duplicated_rows.path AND good_rows.max_id <> duplicated_rows.id;
WHERE path =
#{
path
}
EOF
) max_ids
)
}
)
end
end
end
def
down
def
down
...
...
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