Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Array
- Defined in:
- lib/active_record/connection_adapters/postgresql/oid.rb
Instance Attribute Summary collapse
-
#subtype ⇒ Object
readonly
Returns the value of attribute subtype.
Instance Method Summary collapse
-
#initialize(subtype) ⇒ Array
constructor
A new instance of Array.
- #type_cast(value) ⇒ Object
Methods inherited from Type
Constructor Details
#initialize(subtype) ⇒ Array
Returns a new instance of Array.
94 95 96 |
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 94 def initialize(subtype) @subtype = subtype end |
Instance Attribute Details
#subtype ⇒ Object (readonly)
Returns the value of attribute subtype.
93 94 95 |
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 93 def subtype @subtype end |
Instance Method Details
#type_cast(value) ⇒ Object
98 99 100 101 102 103 104 |
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 98 def type_cast(value) if String === value ConnectionAdapters::PostgreSQLColumn.string_to_array value, @subtype else value end end |