diff options
author | Konstantin Shabanov <etehtsea@gmail.com> | 2013-08-22 14:56:22 +0700 |
---|---|---|
committer | Konstantin Shabanov <etehtsea@gmail.com> | 2013-08-22 14:56:22 +0700 |
commit | a01756c33ed9e2fcb3724dbf607ba64c963b112f (patch) | |
tree | 43b357a5e40864d92558f64e7a884430c16fc9bd /activerecord/lib | |
parent | 9208338b0f982e9776f29caeb46795c4cd9207a1 (diff) | |
download | rails-a01756c33ed9e2fcb3724dbf607ba64c963b112f.tar.gz rails-a01756c33ed9e2fcb3724dbf607ba64c963b112f.tar.bz2 rails-a01756c33ed9e2fcb3724dbf607ba64c963b112f.zip |
Use infinity const
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql/cast.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb b/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb index ef7b976d4f..ea44e818e5 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb @@ -17,8 +17,8 @@ module ActiveRecord return string unless String === string case string - when 'infinity'; 1.0 / 0.0 - when '-infinity'; -1.0 / 0.0 + when 'infinity'; Float::INFINITY + when '-infinity'; -Float::INFINITY when / BC$/ super("-" + string.sub(/ BC$/, "")) else |