1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Allow EXPLAIN on CREATE TABLE AS.

This commit is contained in:
Peter Eisentraut
2008-10-27 08:47:14 +00:00
parent e5da8e15ba
commit 5163b94e6f
2 changed files with 8 additions and 5 deletions

View File

@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.628 2008/10/22 11:00:34 petere Exp $
* $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.629 2008/10/27 08:47:14 petere Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -5898,6 +5898,7 @@ ExplainableStmt:
| UpdateStmt
| DeleteStmt
| DeclareCursorStmt
| CreateAsStmt
| ExecuteStmt /* by default all are $$=$1 */
;