aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-04-03 16:09:47 +0000
committerRick Olson <technoweenie@gmail.com>2006-04-03 16:09:47 +0000
commitdb7fadd7300e07bac343ff7b9d2056fe8b37475f (patch)
treeb6a5e0872e14bad827c25073b534fb72f3831434 /activerecord/CHANGELOG
parent6c2d167cd96485cba338059f902411305faa26ad (diff)
downloadrails-db7fadd7300e07bac343ff7b9d2056fe8b37475f.tar.gz
rails-db7fadd7300e07bac343ff7b9d2056fe8b37475f.tar.bz2
rails-db7fadd7300e07bac343ff7b9d2056fe8b37475f.zip
Changed those private ActiveRecord methods to take optional third argument :auto instead of nil for performance optimizations. (closes #4456) [Stefan]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4141 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index f55d8d6e0f..ebeb0cf969 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Changed those private ActiveRecord methods to take optional third argument :auto instead of nil for performance optimizations. (closes #4456) [Stefan]
+
* Private ActiveRecord methods add_limit!, add_joins!, and add_conditions! take an OPTIONAL third argument 'scope' (closes #4456) [Rick]
* DEPRECATED: Using additional attributes on has_and_belongs_to_many associations. Instead upgrade your association to be a real join model [DHH]