Re: BUG #6139: LIMIT doesn't return correct result when the value is huge

Поиск
Список
Период
Сортировка
От Alex Hunsaker
Тема Re: BUG #6139: LIMIT doesn't return correct result when the value is huge
Дата
Msg-id CAFaPBrReNVPn7EeZ2yonFuGiC6CU1mC6Et0Pnz7hCQNcw7V0dA@mail.gmail.com
обсуждение исходный текст
Ответ на BUG #6139: LIMIT doesn't return correct result when the value is huge  ("Hitoshi Harada" <umi.tanuki@gmail.com>)
Список pgsql-bugs
On Tue, Aug 2, 2011 at 00:25, Hitoshi Harada <umi.tanuki@gmail.com> wrote:

> db1=3D# select * from test_xy order by x LIMIT 9223372036854775807 OFFSET=
 6;
[ ...]

> db1=3D# select * from test_xy order by x LIMIT pow(2, 63);
> ERROR: =C2=A0bigint out of range
> ERROR: =C2=A0bigint out of range
>
> Maybe a parser converts literal unexpectedly?

pow(2, 63) !=3D 9223372036854775807, pow(2, 63) - 1 does :-). On top of
that pow(2, 63) seems to default to the double variant of pow() which
causes rounding issues. You probably want LIMIT pow(2, 63::numeric)-1.

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

Предыдущее
От: "Hitoshi Harada"
Дата:
Сообщение: BUG #6139: LIMIT doesn't return correct result when the value is huge
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: Re: BUG #6139: LIMIT doesn't return correct result when the value is huge