Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Point
- Inherits:
-
Type
- Object
- Type
- ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Point
show all
- Defined in:
- lib/active_record/connection_adapters/postgresql/oid.rb
Instance Method Summary
collapse
Methods inherited from Type
#type, #type_cast_for_write
Instance Method Details
#type_cast(value) ⇒ Object
83
84
85
86
87
88
89
|
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 83
def type_cast(value)
if String === value
ConnectionAdapters::PostgreSQLColumn.string_to_point value
else
value
end
end
|