Re: Remove all trace of EXPLAIN EXECUTE

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Simon Riggs <simon(at)2ndquadrant(dot)com>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: Remove all trace of EXPLAIN EXECUTE
Date: 2005-08-09 22:50:01
Message-ID: 20415.1123627801@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Simon Riggs <simon(at)2ndquadrant(dot)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

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Alon Goldshuv 2005-08-10 00:41:18 Re: COPY FROM performance improvements
Previous Message Simon Riggs 2005-08-09 22:28:01 Remove all trace of EXPLAIN EXECUTE