Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Jsonb

Inherits:
Type
  • Object
show all
Defined in:
lib/arjdbc/postgresql/base/oid.rb

Instance Method Summary collapse

Methods inherited from Type

#type

Instance Method Details

#accessorObject



292
293
294
# File 'lib/arjdbc/postgresql/base/oid.rb', line 292

def accessor
  ActiveRecord::Store::StringKeyedHashAccessor
end

#type_cast(value) ⇒ Object



286
287
288
289
290
# File 'lib/arjdbc/postgresql/base/oid.rb', line 286

def type_cast(value)
  return if value.nil?

  ConnectionAdapters::PostgreSQLColumn.string_to_json value
end

#type_cast_for_write(value) ⇒ Object



279
280
281
282
283
284
# File 'lib/arjdbc/postgresql/base/oid.rb', line 279

def type_cast_for_write(value)
  # roundtrip to ensure uniform uniform types
  # TODO: This is not an efficient solution.
  stringified = ConnectionAdapters::PostgreSQLColumn.json_to_string(value)
  type_cast(stringified)
end