Methods
T
Instance Public methods
type_cast(value)
# File activerecord/lib/active_record/connection_adapters/postgresql/oid.rb, line 32
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