diff options
author | Paco Guzman <fjguzman@aspgems.com> | 2010-08-12 17:09:58 +0200 |
---|---|---|
committer | Paco Guzman <fjguzman@aspgems.com> | 2010-08-12 17:09:58 +0200 |
commit | 8a2b69b7273379f3c9f68ff7903b653801951ac3 (patch) | |
tree | d040890da223ef4317981377e83143b7a6934992 /activerecord/CHANGELOG | |
parent | 599c50583784537eec454f5e91dac89f88e54da3 (diff) | |
download | rails-8a2b69b7273379f3c9f68ff7903b653801951ac3.tar.gz rails-8a2b69b7273379f3c9f68ff7903b653801951ac3.tar.bz2 rails-8a2b69b7273379f3c9f68ff7903b653801951ac3.zip |
applied guidelines to "# =>"
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 20b2286fc0..972c907c46 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -966,7 +966,7 @@ during calendar reform. #7649, #7724 [fedot, Geoff Buesing] * Made increment_counter/decrement_counter play nicely with optimistic locking, and added a more general update_counters method [Jamis Buck] * Reworked David's query cache to be available as Model.cache {...}. For the duration of the block no select query should be run more then once. Any inserts/deletes/executes will flush the whole cache however [Tobias Lütke] - Task.cache { Task.find(1); Task.find(1) } #=> 1 query + Task.cache { Task.find(1); Task.find(1) } # => 1 query * When dealing with SQLite3, use the table_info pragma helper, so that the bindings can do some translation for when sqlite3 breaks incompatibly between point releases. [Jamis Buck] |