PostgreSQL 9.0 引入了 "hex" 作为编码二进制数据的新的默认格式。由于 "pg_unescape_bytea" 仅适用于旧的 "escape" 格式,因此您需要在执行 select 查询之前执行 pg_query('SET bytea_output = "escape";')。
更多详细信息请参见:https://postgresql.ac.cn/docs/9.0/static/datatype-binary.html
[编辑:最近的 PostgreSQL 版本支持解码 "hex" 格式。]