aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Symonds <ben@texperts.com>2008-12-08 14:11:55 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2008-12-08 15:42:13 -0800
commit091e6f791aa3324b2c7f8c8c4cd2fce12b689cc8 (patch)
tree381449412223c67200b9b273a2028f329c339769
parentebec9d43e262d28d742ff10acd828bad6cbb28ed (diff)
downloadrails-091e6f791aa3324b2c7f8c8c4cd2fce12b689cc8.tar.gz
rails-091e6f791aa3324b2c7f8c8c4cd2fce12b689cc8.tar.bz2
rails-091e6f791aa3324b2c7f8c8c4cd2fce12b689cc8.zip
Change field_changed? method to handle the case where a nullable integer column is changed from 0 to '0'
[#1530 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
-rw-r--r--activerecord/lib/active_record/dirty.rb4
-rw-r--r--activerecord/test/cases/dirty_test.rb12
2 files changed, 14 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/dirty.rb b/activerecord/lib/active_record/dirty.rb
index ae573799ae..a1760875ba 100644
--- a/activerecord/lib/active_record/dirty.rb
+++ b/activerecord/lib/active_record/dirty.rb
@@ -151,12 +151,12 @@ module ActiveRecord
def field_changed?(attr, old, value)
if column = column_for_attribute(attr)
- if column.type == :integer && column.null && (old.nil? || old == 0)
+ if column.type == :integer && column.null && (old.nil? || old == 0) && value.blank?
# For nullable integer columns, NULL gets stored in database for blank (i.e. '') values.
# Hence we don't record it as a change if the value changes from nil to ''.
# If an old value of 0 is set to '' we want this to get changed to nil as otherwise it'll
# be typecast back to 0 (''.to_i => 0)
- value = nil if value.blank?
+ value = nil
else
value = column.type_cast(value)
end
diff --git a/activerecord/test/cases/dirty_test.rb b/activerecord/test/cases/dirty_test.rb
index 39d38c4e1e..10cdbdc622 100644
--- a/activerecord/test/cases/dirty_test.rb
+++ b/activerecord/test/cases/dirty_test.rb
@@ -68,6 +68,18 @@ class DirtyTest < ActiveRecord::TestCase
end
end
+ def test_nullable_integer_zero_to_string_zero_not_marked_as_changed
+ pirate = Pirate.new
+ pirate.parrot_id = 0
+ pirate.catchphrase = 'arrr'
+ assert pirate.save!
+
+ assert !pirate.changed?
+
+ pirate.parrot_id = '0'
+ assert !pirate.changed?
+ end
+
def test_zero_to_blank_marked_as_changed
pirate = Pirate.new
pirate.catchphrase = "Yarrrr, me hearties"