Useless sort by

Поиск
Список
Период
Сортировка
От Gaetano Mendola
Тема Useless sort by
Дата
Msg-id i6ks04$2jet$1@news.hub.org
обсуждение исходный текст
Ответы Re: Useless sort by  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Useless sort by  (Dave Crooke <dcrooke@gmail.com>)
Список pgsql-performance
Hi all,
I have a view v_table defined as following:

select a,b,c,d,e,f
from  t_table
sort by  a,b,c;

the usage pattern of this view is the following:

select distinct(a) from v_table;
select distinct(b) from v_table where a = "XXX";
select distinct(c) from v_table where a = "XXX" and b = "YYYY";

because of that sort in the view definition the first query above
takes not less than 3 seconds. I have solved this performance issue
removing the sort from the view definition and putting it in the
select reducing the time from > 3secons to < 150ms.

Can not the optimizer take rid of that useless sort on those
kind of queries ?


Regards
Gaetano Mendola




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

Предыдущее
От: Gerhard Wiesinger
Дата:
Сообщение: Re: Major performance problem after upgrade from 8.3 to 8.4
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Problem with mergejoin performance