Commit 20f38522 authored by alinamihaila's avatar alinamihaila

Improve rubocop offense message

parent 2f86bc74
...@@ -13,7 +13,7 @@ module RuboCop ...@@ -13,7 +13,7 @@ module RuboCop
# distinct_count(Ci::Build, :commit_id) # distinct_count(Ci::Build, :commit_id)
# #
class DistinctCountByLargeForeignKey < RuboCop::Cop::Cop class DistinctCountByLargeForeignKey < RuboCop::Cop::Cop
MSG = 'Avoid doing `%s` for large foreign keys.'.freeze MSG = 'Avoid doing `%s` on foreign keys for large tables having above 100 million rows.'.freeze
def_node_matcher :distinct_count?, <<-PATTERN def_node_matcher :distinct_count?, <<-PATTERN
(send _ $:distinct_count $...) (send _ $:distinct_count $...)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment