diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-01-28 15:12:54 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-01-28 15:12:54 +0000 |
commit | 5acea7fc9ca19848733c0a81e0c018bc7388af5e (patch) | |
tree | 1ffa10bd2754f5eb67ce1d2ea725217b39984aca /activerecord/CHANGELOG | |
parent | c5f7997ebc9a49c3b58f007de26569b7e5f1795e (diff) | |
download | rails-5acea7fc9ca19848733c0a81e0c018bc7388af5e.tar.gz rails-5acea7fc9ca19848733c0a81e0c018bc7388af5e.tar.bz2 rails-5acea7fc9ca19848733c0a81e0c018bc7388af5e.zip |
update_all can take a Hash argument. sanitize_sql splits into two methods for conditions and assignment since NULL values and delimiters are handled differently. References #6583, closes #7365.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6073 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 85b5262994..b6994bbf62 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* update_all can take a Hash argument. sanitize_sql splits into two methods for conditions and assignment since NULL values and delimiters are handled differently. #6583, #7365 [sandofsky, Assaf] + * MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last inserted id. #6778 [Jonathan Viney, timc] * Use Date#to_s(:db) for quoted dates. #7411 [Michael Schoen] |