numbers format - Mailing list pgsql-hackers

From ivan
Subject numbers format
Date
Msg-id Pine.LNX.4.56.0308182014350.24969@rex.anfa.pl
Whole thread Raw
List pgsql-hackers
in pg is function to_hex () , but there is no function to_dec,
but there could be auto conversion like in c/c++ and others lang.

select 0x64;
select 0312;

( and like in asm select 01010101b; :-)

and also :

select char(0x64);

or conversion :

select '0x64' :: int;

need to change parser ?


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Parsing speed (was Re: pgstats_initstats() cost)
Next
From: ivan
Date:
Subject: Re: DOMAIN NEED CAST ?