diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-12-05 22:07:55 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-12-05 22:07:55 +0000 |
commit | 8dea60b0c3a965c169127e0f1f4777bfbbc5e16d (patch) | |
tree | 151acc004fc343443949a8729dbb78314c7e5def /activerecord/CHANGELOG | |
parent | eb300f842864358c1b3b2809e4bbbe5af0f2eb33 (diff) | |
download | rails-8dea60b0c3a965c169127e0f1f4777bfbbc5e16d.tar.gz rails-8dea60b0c3a965c169127e0f1f4777bfbbc5e16d.tar.bz2 rails-8dea60b0c3a965c169127e0f1f4777bfbbc5e16d.zip |
find supports :lock with :include. Check whether your database allows SELECT ... FOR UPDATE with outer joins before using. Closes #6764.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5682 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index e64e594ad2..de864e15e8 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* find supports :lock with :include. Check whether your database allows SELECT ... FOR UPDATE with outer joins before using. #6764 [vitaly, Jeremy Kemper] + * Add AssociationCollection#create! to be consistent with AssociationCollection#create when dealing with a foreign key that is a protected attribute [Cody Fauser] * Added counter optimization for AssociationCollection#any? so person.friends.any? won't actually load the full association if we have the count in a cheaper form [DHH] |