class ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Json

Public Instance Methods

accessor() click to toggle source
# File lib/arjdbc/postgresql/base/oid.rb, line 273
def accessor
  ActiveRecord::Store::StringKeyedHashAccessor
end
type_cast(value) click to toggle source
# File lib/arjdbc/postgresql/base/oid.rb, line 267
def type_cast(value)
  return if value.nil?

  ConnectionAdapters::PostgreSQLColumn.string_to_json value
end
type_cast_for_write(value) click to toggle source
# File lib/arjdbc/postgresql/base/oid.rb, line 260
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