aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-04-22 05:21:09 -0700
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-04-22 05:21:09 -0700
commit9b6926d317257d887480926e6df5b428f169ff7a (patch)
tree7cd4b4b2236bab3d6da3de5e3fa49265d21c63af /activerecord
parent8758c6c6e31162b87ca6b9a43e7f2a91cc3ad2d3 (diff)
parent1e27f1c5d5d177089fbda03ba31f2f55fa622a39 (diff)
downloadrails-9b6926d317257d887480926e6df5b428f169ff7a.tar.gz
rails-9b6926d317257d887480926e6df5b428f169ff7a.tar.bz2
rails-9b6926d317257d887480926e6df5b428f169ff7a.zip
Merge pull request #10292 from matthewrobertson/fix-update-counter-cache-on-push
Update counter cache when pushing into association
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md9
-rw-r--r--activerecord/lib/active_record/associations/builder/belongs_to.rb7
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb9
3 files changed, 22 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index ad766d3267..d47a23b8f5 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,14 @@
## Rails 4.0.0 (unreleased) ##
+* Fix for a regression bug in which counter cache columns were not being updated
+ when record was pushed into a has_many association. For example:
+
+ Post.first.comments << Comment.create
+
+ Fixes #3891.
+
+ *Matthew Robertson*
+
* If a model was instantiated from the database using `select`, `respond_to?`
returns false for non-selected attributes. For example:
diff --git a/activerecord/lib/active_record/associations/builder/belongs_to.rb b/activerecord/lib/active_record/associations/builder/belongs_to.rb
index 3ba6a71366..092230b2f7 100644
--- a/activerecord/lib/active_record/associations/builder/belongs_to.rb
+++ b/activerecord/lib/active_record/associations/builder/belongs_to.rb
@@ -25,9 +25,10 @@ module ActiveRecord::Associations::Builder
mixin.class_eval <<-CODE, __FILE__, __LINE__ + 1
def belongs_to_counter_cache_after_create_for_#{name}
- record = #{name}
- record.class.increment_counter(:#{cache_column}, record.id) unless record.nil?
- @_after_create_counter_called = true
+ if record = #{name}
+ record.class.increment_counter(:#{cache_column}, record.id)
+ @_after_create_counter_called = true
+ end
end
def belongs_to_counter_cache_before_destroy_for_#{name}
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb
index 781b87741d..d85570236f 100644
--- a/activerecord/test/cases/associations/has_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_associations_test.rb
@@ -755,6 +755,15 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
assert_equal topic.replies.to_a.size, topic.replies_count
end
+ def test_pushing_association_updates_counter_cache
+ topic = Topic.order("id ASC").first
+ reply = Reply.create!
+
+ assert_difference "topic.reload.replies_count", 1 do
+ topic.replies << reply
+ end
+ end
+
def test_deleting_updates_counter_cache_without_dependent_option
post = posts(:welcome)