Sha256: 119bfec3b10512b7e633fcade324bd1be10cea98352567a8ae3721ee32917bf2
Contents?: true
Size: 531 Bytes
Versions: 52
Compression:
Stored size: 531 Bytes
Contents
module ActiveRecord module ConnectionAdapters module PostgreSQL module OID # :nodoc: class Float < Type::Float # :nodoc: include Infinity def cast_value(value) case value when ::Float then value when 'Infinity' then ::Float::INFINITY when '-Infinity' then -::Float::INFINITY when 'NaN' then ::Float::NAN else value.to_f end end end end end end end
Version data entries
52 entries across 51 versions & 8 rubygems