Re: Posible planner improvement?

Поиск
Список
Период
Сортировка
От Albert Cervera Areny
Тема Re: Posible planner improvement?
Дата
Msg-id 200805211311.25016.albert@sedifa.com
обсуждение исходный текст
Ответ на Re: Posible planner improvement?  (Richard Huxton <dev@archonet.com>)
Ответы Re: Posible planner improvement?
Список pgsql-performance
A Dimecres 21 Maig 2008, Richard Huxton va escriure:
> Albert Cervera Areny wrote:
> > I've got a query similar to this:
> >
> > select * from t1, t2 where t1.id > 158507 and t1.id = t2.id;
> >
> > That took > 84 minutes (the query was a bit longer but this is the part
> > that made the difference) after a little change the query took ~1 second:
> >
> > select * from t1, t2 where t1.id > 158507 and t2.id > 158507 and t1.id =
> > t2.id;
>
> Try posting EXPLAIN ANALYSE SELECT ... for both of those queries and
> we'll see why it's better at the second one.

Right, attached an example of such a difference.



Вложения

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

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Posible planner improvement?
Следующее
От: Mark Mielke
Дата:
Сообщение: Re: Posible planner improvement?