# File lib/active_record/connection_adapters/postgresql/oid.rb, line 94 def initialize(subtype) @subtype = subtype end
# 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