aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorMislav Marohnić <mislav.marohnic@gmail.com>2010-04-17 02:01:38 +0200
committerMislav Marohnić <mislav.marohnic@gmail.com>2010-05-24 11:44:53 +0200
commitbc84bd17d1f981ca4899f336f6b94e552bc6a058 (patch)
tree613b930647ffca0b58165542567682e8e8ba13b7 /activerecord/lib
parentbfca7d744d6172fc6c0bc05beaff2abe260a4f60 (diff)
downloadrails-bc84bd17d1f981ca4899f336f6b94e552bc6a058.tar.gz
rails-bc84bd17d1f981ca4899f336f6b94e552bc6a058.tar.bz2
rails-bc84bd17d1f981ca4899f336f6b94e552bc6a058.zip
fix `reset_counters` to work even with complex class names
e.g. it guesses that a belongs_to association to Namespace::MyModel is named "my_model", unlike before where it would look up an association named "namespace::mymodel" and fail.
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/counter_cache.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/counter_cache.rb b/activerecord/lib/active_record/counter_cache.rb
index 3bdb6970f8..9601ed6afd 100644
--- a/activerecord/lib/active_record/counter_cache.rb
+++ b/activerecord/lib/active_record/counter_cache.rb
@@ -16,13 +16,15 @@ module ActiveRecord
def reset_counters(id, *counters)
object = find(id)
counters.each do |association|
- child_class = reflect_on_association(association).klass
- counter_name = child_class.reflect_on_association(self.name.downcase.to_sym).counter_cache_column
+ child_class = reflect_on_association(association.to_sym).klass
+ belongs_name = self.name.demodulize.underscore.to_sym
+ counter_name = child_class.reflect_on_association(belongs_name).counter_cache_column
- self.unscoped.where(arel_table[self.primary_key].eq(object.id)).arel.update(
+ self.unscoped.where(arel_table[self.primary_key].eq(object.id)).arel.update({
arel_table[counter_name] => object.send(association).count
- )
+ })
end
+ return true
end
# A generic "counter updater" implementation, intended primarily to be