Re: Remove all trace of EXPLAIN EXECUTE

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Remove all trace of EXPLAIN EXECUTE
Дата
Msg-id 20415.1123627801@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Remove all trace of EXPLAIN EXECUTE  (Simon Riggs <simon@2ndquadrant.com>)
Ответы Re: Remove all trace of EXPLAIN EXECUTE  (Simon Riggs <simon@2ndquadrant.com>)
Список pgsql-patches
Simon Riggs <simon@2ndquadrant.com> writes:
> There once was a rumour of a EXPLAIN EXECUTE command.
> This minor patch removes all trace of that, but without disturbing other
> valid occurrences of the EXECUTE command, which still lives on.

It's not as dead as you seem to think.

regression=# prepare foo as select * from tenk1;
PREPARE
regression=# explain execute foo;
                         QUERY PLAN
-------------------------------------------------------------
 Seq Scan on tenk1  (cost=0.00..458.00 rows=10000 width=244)
(1 row)

regression=#

            regards, tom lane

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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: Remove all trace of EXPLAIN EXECUTE
Следующее
От: "Alon Goldshuv"
Дата:
Сообщение: Re: COPY FROM performance improvements