Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Point
Overview
Instance Method Summary
collapse
#changed_in_place?, #immutable_value
Instance Method Details
#cast(value) ⇒ Object
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb', line 16
def cast(value)
case value
when ::String
return if value.blank?
if value.start_with?("(") && value.end_with?(")")
value = value[1...-1]
end
x, y = value.split(",")
build_point(x, y)
when ::Array
build_point(*value)
else
value
end
end
|
#serialize(value) ⇒ Object
33
34
35
36
37
38
39
40
41
42
|
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb', line 33
def serialize(value)
case value
when ActiveRecord::Point
"(#{number_for_point(value.x)},#{number_for_point(value.y)})"
when ::Array
serialize(build_point(*value))
else
super
end
end
|
12
13
14
|
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb', line 12
def type
:point
end
|
#type_cast_for_schema(value) ⇒ Object
44
45
46
47
48
49
50
|
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb', line 44
def type_cast_for_schema(value)
if ActiveRecord::Point === value
[value.x, value.y]
else
super
end
end
|