Class: ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::OID::Bytea

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

Instance Method Summary collapse

Methods inherited from Type

#type, #type_cast_for_write

Instance Method Details

#type_cast(value) ⇒ Object



32
33
34
35
# File 'activerecord/lib/active_record/connection_adapters/postgresql/oid.rb', line 32

def type_cast(value)
  return if value.nil?
  PGconn.unescape_bytea value
end