Problem with encode() function - Mailing list pgsql-novice

From Glenn_Wiens@via-christi.org
Subject Problem with encode() function
Date
Msg-id OF31D5CA48.78E79003-ON86256E9B.006CB5CC-86256E9B.006CFF72@via-christi.org
Whole thread Raw
Responses Re: Problem with encode() function
List pgsql-novice
I have a table where I have stored plain text passwords in a varchar field.
I would like to convert these to an encoded field. I have been able to
insert values into a test table using this syntax with a literal password:

insert into testtable (name, password) values ('glenn',encode
('mypassword','base64'));

and I can read them back out with the decode(password,'base64') syntax.
This is the behavior I want.

But when I try to encode data from an existing table:

create table newtable as select name, encode(password,'base64') as password
from oldtable;

I get this error

ERROR:  Function encode(character varying, "unknown") does not exist
        Unable to identify a function that satisfies the given argument
types
        You may need to add explicit typecasts


I have tried the following casts

password::text
case(password as text)

but I still get the error:

ERROR:  Function encode(text, "unknown") does not exist
        Unable to identify a function that satisfies the given argument
types
        You may need to add explicit typecasts

Is there a way I can accomplish this task?

Thanks.



pgsql-novice by date:

Previous
From: Tom Lane
Date:
Subject: Re: INSTALLING POSTGRESQL 7.4.2
Next
From: Manuel Sugawara
Date:
Subject: Re: Problem with encode() function