class ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bit
Public Instance Methods
type_cast(value)
click to toggle source
# File lib/arjdbc/postgresql/base/oid.rb, line 18 def type_cast(value) if String === value ConnectionAdapters::PostgreSQLColumn.string_to_bit value else value end end