Re: BUG #14010: Multi-valued Index-only scans do not properly handle nulls in search

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #14010: Multi-valued Index-only scans do not properly handle nulls in search
Дата
Msg-id 9408.1457550046@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #14010: Multi-valued Index-only scans do not properly handle nulls in search  (gtakahashi@palantir.com)
Ответы Re: BUG #14010: Multi-valued Index-only scans do not properly handle nulls in search  (Glen Takahashi <gtakahashi@palantir.com>)
Список pgsql-bugs
gtakahashi@palantir.com writes:
> select a,b from test_table where (a,b) > ('a','a') order by a,b;
> returns:
>  a | b
> ---+---
>  a | b
>  b | a
> (2 rows)

> create index on test_table (a,b);
> The same query now returns:
>  a | b
> ---+---
>  a | b
> (1 row)

Ugh.  This bug just passed its tenth birthday ... kind of astonishing
that nobody found it before.  Will fix, thanks for the report!

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #14008: corr, covar_pop function returns different values on the same dataset
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #14010: Multi-valued Index-only scans do not properly handle nulls in search