pgadmin vs psql output

Started by Rakesh Kumarover 9 years ago2 messagesgeneral
Jump to latest
#1Rakesh Kumar
rakeshkumar464@outlook.com

I have a bytea col which stores Java UUID data. When I run

Select cast(uuid_col as varchar) from table limit 1

Output in pgadmin
-===================
"A0000000000000000000000000000001"

Output in psql
========
\x4130303030303030303030303030303030303030303030303030303030303031

is there some setting in psql output I need to take care of.

--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Rakesh Kumar (#1)
Re: pgadmin vs psql output

Rakesh Kumar <rakeshkumar464@outlook.com> writes:

I have a bytea col which stores Java UUID data. When I run
Select cast(uuid_col as varchar) from table limit 1

Output in pgadmin
-===================
"A0000000000000000000000000000001"

Output in psql
========
\x4130303030303030303030303030303030303030303030303030303030303031

is there some setting in psql output I need to take care of.

See "bytea_output" parameter.

regards, tom lane

--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general