Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Point

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



79
80
81
82
83
84
85
# File 'lib/arjdbc/postgresql/base/oid.rb', line 79

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