Re: Remove all trace of EXPLAIN EXECUTE - Mailing list pgsql-patches

From Tom Lane
Subject Re: Remove all trace of EXPLAIN EXECUTE
Date
Msg-id 20415.1123627801@sss.pgh.pa.us
Whole thread Raw
In response to Remove all trace of EXPLAIN EXECUTE  (Simon Riggs <simon@2ndquadrant.com>)
Responses Re: Remove all trace of EXPLAIN EXECUTE  (Simon Riggs <simon@2ndquadrant.com>)
List 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 by date:

Previous
From: Simon Riggs
Date:
Subject: Remove all trace of EXPLAIN EXECUTE
Next
From: "Alon Goldshuv"
Date:
Subject: Re: COPY FROM performance improvements