Re: Is postgres able to share sorts required by common partition window functions?

Поиск
Список
Период
Сортировка
От Michael Lewis
Тема Re: Is postgres able to share sorts required by common partition window functions?
Дата
Msg-id CAHOFxGrhiXrATVHiMztJpyMzvsbdPYFMK-JO9O+1WokudiJj=w@mail.gmail.com
обсуждение исходный текст
Ответ на Is postgres able to share sorts required by common partition window functions?  (Sebastien Arod <sebastien.arod@gmail.com>)
Ответы Re: Is postgres able to share sorts required by common partition window functions?  (Sebastien Arod <sebastien.arod@gmail.com>)
Список pgsql-general
Does this give the same result and do the optimization you want?

select
  c1,
  min(c2) AS c2,
  min(c3) AS c3,
  min(c4) AS c4
from  
  t
group by
  c1;

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

Предыдущее
От: Michael Lewis
Дата:
Сообщение: Re: Apply LIMIT when computation is logically irrelevant
Следующее
От: Sebastien Arod
Дата:
Сообщение: Re: Is postgres able to share sorts required by common partition window functions?