aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-08-21 21:29:21 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-08-21 21:29:21 +0000
commit0e452bb02d7437a5e67fdb41f6a1f77289e7ddbd (patch)
tree4d8e62ae3411576b3327534959df7cea1e9f2a6b /activerecord/CHANGELOG
parent0fc77b3928546c09bd1fac40402289fd3730840b (diff)
downloadrails-0e452bb02d7437a5e67fdb41f6a1f77289e7ddbd.tar.gz
rails-0e452bb02d7437a5e67fdb41f6a1f77289e7ddbd.tar.bz2
rails-0e452bb02d7437a5e67fdb41f6a1f77289e7ddbd.zip
Fixed that eager loading queries should respect the :group option as well [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7354 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 401dc6d53f..0ee5f91532 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fixed that eager loading queries should respect the :group option as well [DHH]
+
* Improve performance and functionality of the postgresql adapter. Closes #8049 [roderickvd]
For more information see: http://dev.rubyonrails.org/ticket/8049
@@ -14,7 +16,6 @@
- Move method definition to the class, instead of the instance
- Always generate the readers, writers and predicate methods.
-
* Perform a deep #dup on query cache results so that modifying activerecord attributes does not modify the cached attributes. [Rick]
# Ensure that has_many :through associations use a count query instead of loading the target when #size is called. Closes #8800 [lifo]