aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-07-03 01:29:37 +0900
committerkennyj <kennyj@gmail.com>2012-07-03 12:19:31 +0900
commit9196b93111b5f89f030b089d32d7a3a9d49b0df9 (patch)
treed6f9857f7b6f2e5f288a1fe89a7fe9dd9b9e9d7f /activerecord/lib/active_record
parent215d41d802637520129cb7551b35faca72873143 (diff)
downloadrails-9196b93111b5f89f030b089d32d7a3a9d49b0df9.tar.gz
rails-9196b93111b5f89f030b089d32d7a3a9d49b0df9.tar.bz2
rails-9196b93111b5f89f030b089d32d7a3a9d49b0df9.zip
Don't mark the store as changed if an attribute isn't changed.
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/store.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/store.rb b/activerecord/lib/active_record/store.rb
index d13491502e..2af5b02fb7 100644
--- a/activerecord/lib/active_record/store.rb
+++ b/activerecord/lib/active_record/store.rb
@@ -58,8 +58,11 @@ module ActiveRecord
keys.each do |key|
define_method("#{key}=") do |value|
initialize_store_attribute(store_attribute)
- send(store_attribute)[key] = value
- send :"#{store_attribute}_will_change!"
+ attribute = send(store_attribute)
+ if value != attribute[key]
+ attribute[key] = value
+ send :"#{store_attribute}_will_change!"
+ end
end
define_method(key) do