Sha256: e55d0f70df787f8a6f4076b5c329bbca029aec141662ce6681946156a621b0c3
Contents?: true
Size: 350 Bytes
Versions: 29
Compression:
Stored size: 350 Bytes
Contents
# frozen_string_literal: true module ActiveRecord::ConnectionAdapters::PostgreSQL::OID class Bytea < ActiveModel::Type::Binary module PG class Connection # emulate PG::Connection#unescape_bytea due #652 def self.unescape_bytea(escaped) ArJdbc::PostgreSQL.unescape_bytea(escaped) end end end end end
Version data entries
29 entries across 29 versions & 2 rubygems