Chained scopes will be preloaded properly. Fixes #7490

This commit is contained in:
Chris Geihsler
2012-09-29 18:32:56 -04:00
committed by Chris Geihsler
parent 488699166c
commit 453c7d6c47
4 changed files with 22 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
## Rails 3.2.13 (Feb 17, 2013) ##
* Chaining multiple preloaded scopes will correctly preload all the scopes
at the same time.
*Chris Geihsler*
* Reverted 921a296a3390192a71abeec6d9a035cc6d1865c8, 'Quote numeric values
compared to string columns.' This caused several regressions.

View File

@@ -17,14 +17,14 @@ module ActiveRecord
if method == :includes
merged_relation = merged_relation.includes(value)
else
merged_relation.send(:"#{method}_values=", value)
merge_relation_method(merged_relation, method, value)
end
end
end
(Relation::MULTI_VALUE_METHODS - [:joins, :where, :order]).each do |method|
value = r.send(:"#{method}_values")
merged_relation.send(:"#{method}_values=", merged_relation.send(:"#{method}_values") + value) if value.present?
merge_relation_method(merged_relation, method, value) if value.present?
end
merged_relation.joins_values += r.joins_values
@@ -144,5 +144,10 @@ module ActiveRecord
relation
end
private
def merge_relation_method(relation, method, value)
relation.send(:"#{method}_values=", relation.send(:"#{method}_values") + value)
end
end
end

View File

@@ -332,6 +332,13 @@ class RelationTest < ActiveRecord::TestCase
end
end
def test_preload_applies_to_all_chained_preloaded_scopes
assert_queries(3) do
post = Post.with_tags.with_comments.first
assert post
end
end
def test_find_with_included_associations
assert_queries(2) do
posts = Post.includes(:comments).order('posts.id')

View File

@@ -76,6 +76,9 @@ class Post < ActiveRecord::Base
end
end
scope :with_comments, preload(:comments)
scope :with_tags, preload(:taggings)
has_many :interpolated_taggings, :class_name => 'Tagging', :as => :taggable, :conditions => proc { "1 = #{1}" }
has_many :interpolated_tags, :through => :taggings
has_many :interpolated_tags_2, :through => :interpolated_taggings, :source => :tag