Thanks for the reply.
The error was inside a personal function that called function convert
with caracters that it cannot handle properly.
"select proname from pg_proc where oid = 59015;" did not give me any
result. I still don't know where "59015" come from, but I'm not in a
hurry to find i
Maxime Carbonneau wrote:
> with a database encoded with UTF8, I cannot insert into a varchar(100)
> column the letter œ (\u0x0153). It gives me: "ERROR: function 59015
> returned NULL"
What's function 59015? Try a
select proname from pg_proc where oid = 59015;
--
Alvaro Herrera