aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorJames Sanders & Jason Noble <comvergepair+jsanders+jnoble@gmail.com>2012-04-30 11:37:31 -0600
committerJames Sanders & Jason Noble <comvergepair+jsanders+jnoble@gmail.com>2012-04-30 11:37:31 -0600
commit13823a4cf35e99582c9b634a94c362d565b7841c (patch)
treee7be84cdce9adbefe437f7adc3e3af5b35fc4762 /activerecord/lib/active_record
parentc435feb4044f6c62bb188c459c3be5d81cc77b07 (diff)
downloadrails-13823a4cf35e99582c9b634a94c362d565b7841c.tar.gz
rails-13823a4cf35e99582c9b634a94c362d565b7841c.tar.bz2
rails-13823a4cf35e99582c9b634a94c362d565b7841c.zip
Don't type cast values that don't respond to to_i to 1
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/connection_adapters/column.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/column.rb b/activerecord/lib/active_record/connection_adapters/column.rb
index b7e1513422..9af8e46120 100644
--- a/activerecord/lib/active_record/connection_adapters/column.rb
+++ b/activerecord/lib/active_record/connection_adapters/column.rb
@@ -95,7 +95,7 @@ module ActiveRecord
case type
when :string, :text then value
- when :integer then value.to_i rescue value ? 1 : 0
+ when :integer then value.to_i
when :float then value.to_f
when :decimal then klass.value_to_decimal(value)
when :datetime, :timestamp then klass.string_to_time(value)