Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Boolean

Inherits:
Type
  • Object
show all
Defined in:
lib/arjdbc/postgresql/base/oid.rb

Instance Method Summary collapse

Methods inherited from Type

#type

Instance Method Details

#type_cast(value) ⇒ Object



170
171
172
173
174
# File 'lib/arjdbc/postgresql/base/oid.rb', line 170

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::Column.value_to_boolean value
end