Re: cast bytea to text - Mailing list pgsql-general

From Willy-Bas Loos
Subject Re: cast bytea to text
Date
Msg-id 1dd6057e0703010942w176e34a9sa362c68e1198343a@mail.gmail.com
Whole thread Raw
In response to Re: cast bytea to text  ("Albe Laurenz" <all@adv.magwien.gv.at>)
List pgsql-general
yep, sry it took me a while to answer. It works now.
here´s my code:
-- start code --
create or replace function bytea2text(bytea) returns text as
$$
select ENCODE($1, 'escape');
$$
language sql strict;

create cast (bytea as text)
    with function bytea2text(bytea)
    as implicit;
-- end code --

thanks!

Willy-Bas Loos

On 3/1/07, Albe Laurenz <all@adv.magwien.gv.at> wrote:
> How can i cast bytea to text?
> I´ve read about the DECODE function, but my 8.1 backend
> doesn´t recognize it.
> I´m trying to create an implicit cast using the function:
>
> create or replace function bytea2text(bytea) returns text as
> $$
> select DECODE($1, 'escape');
> $$
> language sql strict;
>
> Answer:
> ERROR: function decode(bytea, "unknown") does not exist

Try ENCODE instead of DECODE ...

Yours,
Laurenz Albe

pgsql-general by date:

Previous
From: Palle Girgensohn
Date:
Subject: Re: /libexec/ld-elf.so.1: Shared object "libpq.so.4" not found
Next
From: "David Legault"
Date:
Subject: Re: get username of user calling function?