Class: ActiveRecord::ConnectionAdapters::RedshiftAdapter::OID::Point

Inherits:
Type
  • Object
show all
Defined in:
lib/active_record/connection_adapters/redshift/oid.rb

Instance Method Summary collapse

Methods inherited from Type

#type, #type_cast_for_write

Instance Method Details

#type_cast(value) ⇒ Object



78
79
80
81
82
83
84
# File 'lib/active_record/connection_adapters/redshift/oid.rb', line 78

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