aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/autosave_association.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-07-07 01:07:20 +0100
committerJon Leighton <j@jonathanleighton.com>2011-07-07 01:07:31 +0100
commit86390c3bf30dd61f3bac047e0887b74ff422c02f (patch)
treee4a980c2bd2fb2c6f03707904c0636bfed6e9b08 /activerecord/lib/active_record/autosave_association.rb
parent7da88c5b297486cd90696133d287be7d60d65218 (diff)
downloadrails-86390c3bf30dd61f3bac047e0887b74ff422c02f.tar.gz
rails-86390c3bf30dd61f3bac047e0887b74ff422c02f.tar.bz2
rails-86390c3bf30dd61f3bac047e0887b74ff422c02f.zip
Don't construct association scope in initializer. This yields a big performance gain for cases where the association is never used to load the target, for example with preloading. Related: #1873.
Diffstat (limited to 'activerecord/lib/active_record/autosave_association.rb')
-rw-r--r--activerecord/lib/active_record/autosave_association.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/autosave_association.rb b/activerecord/lib/active_record/autosave_association.rb
index 036d514a03..085fdba639 100644
--- a/activerecord/lib/active_record/autosave_association.rb
+++ b/activerecord/lib/active_record/autosave_association.rb
@@ -347,7 +347,7 @@ module ActiveRecord
end
# reconstruct the scope now that we know the owner's id
- association.send(:construct_scope) if association.respond_to?(:construct_scope)
+ association.send(:reset_scope) if association.respond_to?(:reset_scope)
end
end