Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bit

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

Instance Method Summary collapse

Methods inherited from Type

#infinity, #simplified_type

Instance Method Details

#typeObject



58
# File 'lib/arjdbc/postgresql/base/oid.rb', line 58

def type; :string end

#type_cast(value) ⇒ Object



60
61
62
63
64
65
66
# File 'lib/arjdbc/postgresql/base/oid.rb', line 60

def type_cast(value)
  if ::String === value
    ConnectionAdapters::PostgreSQLColumn.string_to_bit value
  else
    value
  end
end