Re: Integer range? - Mailing list pgsql-general

From Steve Atkins
Subject Re: Integer range?
Date
Msg-id 02C5F13F-9DD7-4CB8-882D-6F61246CEE07@blighty.com
Whole thread Raw
In response to Integer range?  (Scott Ribe <scott_ribe@killerbytes.com>)
Responses Re: Integer range?
List 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


pgsql-general by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: interface for "non-SQL people"
Next
From: Stephan Szabo
Date:
Subject: Re: interface for "non-SQL people"