Re: hex integer input - Mailing list pgsql-hackers

From Jeremy Drake
Subject Re: hex integer input
Date
Msg-id Pine.BSO.4.64.0703012345540.18849@resin.csoft.net
Whole thread Raw
In response to Re: hex integer input  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses xlogViewer / xlogdump  ("Vishal Arora" <aroravishal22@hotmail.com>)
List pgsql-hackers
On Fri, 2 Mar 2007, Tom Lane wrote:

> Jeremy Drake <pgsql@jdrake.com> writes:
> > On several occasions I have wanted to input integers in hexadecimal rather
> > than in decimal in PostgreSQL.  I notice that there is a to_hex function,
> > but there is not (AFAIK) a way to provide an integer in hexadecimal.
>
> regression=# select x'abcd'::int;
>  int4
> -------
>  43981
> (1 row)

Hmm.  I actually used the bit(N) type on a project quite some time ago,
but it did not occur to me to use the bit string input syntax to input an
integer.

Well, I guess there is a way after all.  So in the immortal words of Emily
Litella, "Never mind."


-- 
In an organization, each person rises to the level of his own
incompetency    -- The Peter Principle


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: hex integer input
Next
From: "Vishal Arora"
Date:
Subject: xlogViewer / xlogdump