summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170503004427_upate_retried_for_ci_build.rb
blob: 80215d662e4dd5fa4a6735b8ac74a04707f2bced (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class UpateRetriedForCiBuild < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  
  disable_ddl_transaction!

  def up
    disable_statement_timeout

    latest_id = <<-SQL.strip_heredoc
      SELECT MAX(ci_builds2.id)
        FROM ci_builds ci_builds2
        WHERE ci_builds.commit_id=ci_builds2.commit_id
          AND ci_builds.name=ci_builds2.name
    SQL
    
    # This is slow update as it does single-row query
    # This is designed to be run as idle, or a post deployment migration
    is_retried = Arel.sql("((#{latest_id}) != ci_builds.id)")

    update_column_in_batches(:ci_builds, :retried, is_retried) do |table, query|
      query.where(table[:retried].eq(nil))
    end
  end

  def down
  end
end