From: | Steve Atkins <steve(at)blighty(dot)com> |
---|---|
To: | pgsql-general List <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Integer range? |
Date: | 2009-10-09 17:24:17 |
Message-ID: | 02C5F13F-9DD7-4CB8-882D-6F61246CEE07@blighty.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Oct 9, 2009, at 9:46 AM, Scott Ribe wrote:
> The range of a twos-complement 32-bit integer is -2147483648 through
> 2147483647. Yet in Postgres:
>
>
> # select -2147483647::int4;
> ?column?
> -------------
> -2147483647
> (1 row)
>
> # select -2147483648::int4;
> ERROR: integer out of range
>
>
> Is this a bug? Or something required by the SQL standard?
Neither, really. The cast shortcut you're using is binding to the
digits more tightly than the minus prefix.
So what you end up with is the integer 2147483648, with a unary minus
in front of it, pretty much like this:
# select -(2147483648::int4);
ERROR: integer out of range
While what you want is more like this:
# select '-2147483648'::int4;
int4
-------------
-2147483648
(1 row)
# select cast(-2147483648 as int4);
int4
-------------
-2147483648
(1 row)
Cheers,
Steve
From | Date | Subject | |
---|---|---|---|
Next Message | Dominic Bevacqua | 2009-10-09 17:31:56 | full text + snowball + ispell? |
Previous Message | Joshua D. Drake | 2009-10-09 17:18:50 | Re: interface for "non-SQL people" |