Class: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bytea

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

Instance Method Summary collapse

Methods inherited from Type

#type

Instance Method Details

#type_cast(value) ⇒ Object



28
29
30
31
# File 'lib/arjdbc/postgresql/base/oid.rb', line 28

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