Re: INTEGER range ("-2147483648" is not accepted.)

Поиск
Список
Период
Сортировка
От Thom Brown
Тема Re: INTEGER range ("-2147483648" is not accepted.)
Дата
Msg-id AANLkTil8g4KBzILetkAnygNnltFKothMXfITfOH9FraR@mail.gmail.com
обсуждение исходный текст
Ответ на INTEGER range ("-2147483648" is not accepted.)  (Satoshi Nagayasu <satoshi.nagayasu@gmail.com>)
Ответы Re: INTEGER range ("-2147483648" is not accepted.)  (Thom Brown <thombrown@gmail.com>)
Список pgsql-docs
On 22 June 2010 09:59, Satoshi Nagayasu <satoshi.nagayasu@gmail.com> wrote:
> Magnus,
>
> Thanks for your advice. I've understood how it happens.
>
> However, it looks tricky and difficult to understand,
> so I hope that the message could be more understandable
> as Thom mentioned.
>
> Regards,
>

This does appear to be a gotcha, as the following returns a negative
integer as expected:

postgres=# SELECT -2147483648;
  ?column?
-------------
 -2147483648
(1 row)

postgres=# SELECT pg_typeof(-2147483648);
 pg_typeof
-----------
 integer
(1 row)

And just in case...

postgres=# SELECT pg_typeof(test.my_num) FROM (SELECT -2147483648) AS
test(my_num);
 pg_typeof
-----------
 integer
(1 row)

So it's affected by the cast operator?

Thom

В списке pgsql-docs по дате отправления:

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: INTEGER range ("-2147483648" is not accepted.)
Следующее
От: Thom Brown
Дата:
Сообщение: Re: INTEGER range ("-2147483648" is not accepted.)