EXPLAIN CREATE TABLE AS - Mailing list pgsql-hackers

From Peter Eisentraut
Subject EXPLAIN CREATE TABLE AS
Date
Msg-id 49006028.5090805@gmx.net
Whole thread Raw
Responses Re: EXPLAIN CREATE TABLE AS
Re: EXPLAIN CREATE TABLE AS
List pgsql-hackers
It turns out you cannot EXPLAIN on CREATE TABLE AS, but it seems to work 
fine if I extend the grammar as below:
  ExplainableStmt:      SelectStmt      | InsertStmt      | UpdateStmt      | DeleteStmt      | DeclareCursorStmt
+     | CreateAsStmt      | ExecuteStmt            /* by default all are $$=$1 */  ;


It's the same as SELECT INTO after all, which already works.  Should 
this be added?


pgsql-hackers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: Re: Deriving Recovery Snapshots
Next
From: Simon Riggs
Date:
Subject: Re: Deriving Recovery Snapshots