Methods
N
T
Attributes
[R] subtype
Class Public methods
new(subtype)
# File activerecord/lib/active_record/connection_adapters/postgresql/oid.rb, line 97
def initialize(subtype)
  @subtype = subtype
end
Instance Public methods
type_cast(value)
# File activerecord/lib/active_record/connection_adapters/postgresql/oid.rb, line 101
def type_cast(value)
  if String === value
    ConnectionAdapters::PostgreSQLColumn.string_to_array value, @subtype
  else
    value
  end
end