diff options
author | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2015-08-02 04:38:36 +0300 |
---|---|---|
committer | Mehmet Emin İNAÇ <mehmetemininac@gmail.com> | 2015-08-03 06:40:14 +0300 |
commit | f744d627364a9a98dedda5b30711bf80ebc3451f (patch) | |
tree | a4522ab8b60e8392eddf443d09c42bd91e8504e4 | |
parent | 722abe1722a8bcf1798fc7f7f9a8cf4dcfa28e88 (diff) | |
download | rails-f744d627364a9a98dedda5b30711bf80ebc3451f.tar.gz rails-f744d627364a9a98dedda5b30711bf80ebc3451f.tar.bz2 rails-f744d627364a9a98dedda5b30711bf80ebc3451f.zip |
Use memoization for collection associations ids reader
Fixes #21082
remove extra space
-rw-r--r-- | activerecord/lib/active_record/associations/collection_association.rb | 6 | ||||
-rw-r--r-- | activerecord/test/cases/associations/has_many_associations_test.rb | 8 |
2 files changed, 12 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations/collection_association.rb b/activerecord/lib/active_record/associations/collection_association.rb index 87576abd92..0fc2b83b71 100644 --- a/activerecord/lib/active_record/associations/collection_association.rb +++ b/activerecord/lib/active_record/associations/collection_association.rb @@ -62,8 +62,10 @@ module ActiveRecord record.send(reflection.association_primary_key) end else - column = "#{reflection.quoted_table_name}.#{reflection.association_primary_key}" - scope.pluck(column) + @association_ids ||= ( + column = "#{reflection.quoted_table_name}.#{reflection.association_primary_key}" + scope.pluck(column) + ) end end diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb index 21e2ee3b11..2cbee3cd21 100644 --- a/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_associations_test.rb @@ -2308,4 +2308,12 @@ class HasManyAssociationsTest < ActiveRecord::TestCase assert_instance_of PostWithErrorDestroying, error.record end + + def test_ids_reader_memoization + car = Car.create!(name: 'Tofaş') + bulb = Bulb.create!(car: car) + + assert_equal [bulb.id], car.bulb_ids + assert_no_queries { car.bulb_ids } + end end |