summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/arel_methods.rb
blob: d7e3ce08b32cfd6fd437345e3c500970accdbeb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Gitlab
  module Database
    module ArelMethods
      private

      # In Arel 7.0.0 (Arel 7.1.4 is used in Rails 5.0) the `engine` parameter of `Arel::UpdateManager#initializer`
      # was removed.
      # Remove this file and inline this method when removing rails5? code.
      def arel_update_manager
        if Gitlab.rails5?
          Arel::UpdateManager.new
        else
          Arel::UpdateManager.new(ActiveRecord::Base)
        end
      end
    end
  end
end