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

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

#type_cast(value) ⇒ Object



28
29
30
31
32
33
34
# File 'lib/active_record/connection_adapters/postgresql/oid.rb', line 28

def type_cast(value)
  return if value.nil?
  # This is a flawed heuristic, but it avoids truncation;
  # we really shouldn’t be calling this with already-unescaped values
  return value if value.dup.force_encoding("BINARY") =~ /\x00/
  PGconn.unescape_bytea value
end