Merge pull request #5718 from benedikt/master

Removes caching from ActiveRecord::Core::ClassMethods#relation
This commit is contained in:
Jeremy Kemper 2012-04-08 11:30:18 -07:00
commit 9f37f335f2
4 changed files with 13 additions and 6 deletions

View File

@ -137,12 +137,12 @@ module ActiveRecord
private
def relation #:nodoc:
@relation ||= Relation.new(self, arel_table)
relation = Relation.new(self, arel_table)
if finder_needs_type_condition?
@relation.where(type_condition).create_with(inheritance_column.to_sym => sti_name)
relation.where(type_condition).create_with(inheritance_column.to_sym => sti_name)
else
@relation
relation
end
end
end
@ -351,7 +351,6 @@ module ActiveRecord
@attributes[pk] = nil unless @attributes.key?(pk)
@relation = nil
@aggregation_cache = {}
@association_cache = {}
@attributes_cache = {}

View File

@ -35,7 +35,7 @@ module ActiveRecord
if current_scope
current_scope.clone
else
scope = relation.clone
scope = relation
scope.default_scoped = true
scope
end
@ -49,7 +49,7 @@ module ActiveRecord
if current_scope
current_scope.scope_for_create
else
scope = relation.clone
scope = relation
scope.default_scoped = true
scope.scope_for_create
end

View File

@ -1174,6 +1174,12 @@ class EagerAssociationTest < ActiveRecord::TestCase
assert_equal Comment.find(1), Comment.preload(:post => :comments).scoping { Comment.find(1) }
end
test "circular preload does not modify unscoped" do
expected = FirstPost.unscoped.find(2)
FirstPost.preload(:comments => :first_post).find(1)
assert_equal expected, FirstPost.unscoped.find(2)
end
test "preload ignores the scoping" do
assert_equal(
Comment.find(1).post,

View File

@ -9,6 +9,8 @@ class Comment < ActiveRecord::Base
belongs_to :post, :counter_cache => true
has_many :ratings
belongs_to :first_post, :foreign_key => :post_id
has_many :children, :class_name => 'Comment', :foreign_key => :parent_id
belongs_to :parent, :class_name => 'Comment', :counter_cache => :children_count