debian-mirror-gitlab/rubocop/cop/gitlab/bulk_insert.rb

24 lines
742 B
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
module RuboCop
module Cop
module Gitlab
2021-10-27 15:23:28 +05:30
# Cop that disallows the use of `Gitlab::Database.main.bulk_insert`, in favour of using
2020-06-23 00:09:42 +05:30
# the `BulkInsertSafe` module.
class BulkInsert < RuboCop::Cop::Cop
2021-10-27 15:23:28 +05:30
MSG = 'Use the `BulkInsertSafe` concern, instead of using `Gitlab::Database.main.bulk_insert`. See https://docs.gitlab.com/ee/development/insert_into_tables_in_batches.html'
2020-06-23 00:09:42 +05:30
def_node_matcher :raw_union?, <<~PATTERN
2021-10-27 15:23:28 +05:30
(send (send (const (const _ :Gitlab) :Database) :main) :bulk_insert ...)
2020-06-23 00:09:42 +05:30
PATTERN
def on_send(node)
return unless raw_union?(node)
add_offense(node, location: :expression)
end
end
end
end
end