Method: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Vector#initialize
- Defined in:
- activerecord/lib/active_record/connection_adapters/postgresql/oid/vector.rb
#initialize(delim, subtype) ⇒ Vector
delim corresponds to the typdelim column in the pg_types table. subtype is derived from the typelem column in the pg_types table.
13 14 15 16 |
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid/vector.rb', line 13 def initialize(delim, subtype) @delim = delim @subtype = subtype end |