Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Hstore

Inherits:
Type
  • Object
show all
Defined in:
lib/active_record/connection_adapters/postgresql/oid.rb

Instance Method Summary collapse

Methods inherited from Type

#type

Instance Method Details

#accessorObject



238
239
240
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 238

def accessor
  ActiveRecord::Store::StringKeyedHashAccessor
end

#type_cast(value) ⇒ Object



232
233
234
235
236
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 232

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::PostgreSQLColumn.string_to_hstore value
end

#type_cast_for_write(value) ⇒ Object



228
229
230
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 228

def type_cast_for_write(value)
  ConnectionAdapters::PostgreSQLColumn.hstore_to_string value
end