Re: Integer range?

Поиск
Список
Период
Сортировка
От Steve Atkins
Тема Re: Integer range?
Дата
Msg-id 02C5F13F-9DD7-4CB8-882D-6F61246CEE07@blighty.com
обсуждение исходный текст
Ответ на Integer range?  (Scott Ribe <scott_ribe@killerbytes.com>)
Ответы Re: Integer range?
Список 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 по дате отправления:

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: interface for "non-SQL people"
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: interface for "non-SQL people"