Skip to content

Commit

Permalink
Fix for has_many_through counter_cache bug
Browse files Browse the repository at this point in the history
This commit fixes reported issue rails#7630 in which counter
caches were not being updated properly when replacing
has_many_through relationships
  • Loading branch information
matthewrobertson authored and Matthew Robertson committed Dec 14, 2012
1 parent 01d3a36 commit a765c84
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions activerecord/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##

* Fix counter cache columns not updated when replacing `has_many :through`
associations.

*Matthew Robertson*

* Recognize migrations placed in directories containing numbers and 'rb'.
Fix #8492

Expand Down
Binary file added activerecord/activerecord-4.0.0.beta.gem
Binary file not shown.
Expand Up @@ -153,6 +153,11 @@ def delete_records(records, method)

delete_through_records(records)

if source_reflection.options[:counter_cache]
counter = source_reflection.counter_cache_column
klass.decrement_counter counter, records.map(&:id)
end

if through_reflection.macro == :has_many && update_through_counter?(method)
update_counter(-count, through_reflection)
end
Expand Down
Expand Up @@ -330,6 +330,17 @@ def test_update_counter_caches_on_delete_with_dependent_nullify
end
end

def test_update_counter_caches_on_replace_association
post = posts(:welcome)
tag = post.tags.create!(:name => 'doomed')
tag.tagged_posts << posts(:thinking)

tag.tagged_posts = []
post.reload

assert_equal(post.taggings.count, post.taggings_count)
end

def test_replace_association
assert_queries(4){posts(:welcome);people(:david);people(:michael); posts(:welcome).people(true)}

Expand Down

0 comments on commit a765c84

Please sign in to comment.