Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Point
  
  
  
Overview
  
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  
  #changed_in_place?, #mutable?
  
    Instance Method Details
    
      
  
  
    #cast(value)  ⇒ Object 
  
  
  
  
    | 
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 | # 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)
  when ::Hash
    return if value.blank?
    build_point(*values_array_from_hash(value))
  else
    value
  end
end | 
 
    
      
  
  
    #serialize(value)  ⇒ Object 
  
  
  
  
    | 
37
38
39
40
41
42
43
44
45
46
47
48 | # File 'activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb', line 37
def serialize(value)
  case value
  when ActiveRecord::Point
    "(#{number_for_point(value.x)},#{number_for_point(value.y)})"
  when ::Array
    serialize(build_point(*value))
  when ::Hash
    serialize(build_point(*values_array_from_hash(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 
  
  
  
  
    | 
50
51
52
53
54
55
56 | # File 'activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb', line 50
def type_cast_for_schema(value)
  if ActiveRecord::Point === value
    [value.x, value.y]
  else
    super
  end
end |