Re: select distinct in a subquery bug/problem

Поиск
Список
Период
Сортировка
От Raymond O'Donnell
Тема Re: select distinct in a subquery bug/problem
Дата
Msg-id 5026A28E.6000502@iol.ie
обсуждение исходный текст
Ответ на select distinct in a subquery bug/problem  ("Dan Halbert" <halbert@halwitz.org>)
Ответы Re: select distinct in a subquery bug/problem  (Dan Halbert <halbert@halwitz.org>)
Список pgsql-general
On 11/08/2012 04:32, Dan Halbert wrote:
> In version 9.1.4-0ubuntu12.04:
>
>
>
> Hi - I am getting wrong answers from a certain kind of query, and have
> narrowed it down to a change in the query plan between two similar
> queries. The two queries below use different query plans, and generate
> different results, one of which is completely wrong.
>
>
>
> 1. select count(t1_id) from t1 where t1_id not in (select distinct t1_id
> from t2 limit 1103)  ==> 13357   [CORRECT result]
>
> 2. select count(t1_id) from t1 where t1_id not in (select distinct t1_id
> from t2 limit 1104)  ==> 0   [WRONG result; should be close to 13357]

Does it make a difference if you include an ORDER BY in the subquery?
AIUI, the particular result set from the subquery is indeterminate (in
theory anyway) without it.

Ray.


--
Raymond O'Donnell :: Galway :: Ireland
rod@iol.ie


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

Предыдущее
От: Laszlo Fogas
Дата:
Сообщение: Re: slowness what only full vacuum can solve
Следующее
От: Dan Halbert
Дата:
Сообщение: Re: select distinct in a subquery bug/problem