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
path: root/lib
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-09-21 11:07:53 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2015-09-21 11:07:53 +0300
commita37e591e7414f51ca9076e966c724030225528db (patch)
treeb50cc3cf9c52840d3058b9b103535fd91f1a076a /lib
parentb2a90216858160840fdfbe7a221c317a6c073f22 (diff)
Use INSERT INTO to insert tags
Diffstat (limited to 'lib')
-rw-r--r--lib/ci/migrate/tags.rb15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/ci/migrate/tags.rb b/lib/ci/migrate/tags.rb
index 2e4872f0716..97e043ece27 100644
--- a/lib/ci/migrate/tags.rb
+++ b/lib/ci/migrate/tags.rb
@@ -4,14 +4,15 @@ module Ci
module Migrate
class Tags
def restore
- ActiveRecord::Base.transaction do
- puts 'Inserting tags...'
- connection.execute(
- 'INSERT INTO tags (name) ' +
- 'SELECT ci_tags.name FROM ci_tags ' +
- 'WHERE (SELECT COUNT(*) FROM tags WHERE tags.name = ci_tags.name)=0'
- )
+ puts 'Inserting tags...'
+ connection.select_all('SELECT ci_tags.name FROM ci_tags').each do |tag|
+ begin
+ connection.execute("INSERT INTO tags (name) VALUES(#{ActiveRecord::Base::sanitize(tag['name'])})")
+ rescue ActiveRecord::RecordNotUnique
+ end
+ end
+ ActiveRecord::Base.transaction do
puts 'Deleting old taggings...'
connection.execute "DELETE FROM taggings WHERE context = 'tags' AND taggable_type LIKE 'Ci::%'"