From 5251e7b3d07da28b48ec5c7930c8b57b554fd27a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 5 Nov 2001 05:00:14 +0000 Subject: CREATE TABLE foo (x,y,z) AS SELECT ... can't apply target column names to the target list in gram.y; it must wait till after expansion of the target list in analyze.c. Per bug report 4-Nov: lx=# CREATE TABLE abc (a char, b char, c char); CREATE lx=# CREATE TABLE xyz (x, y, z) AS SELECT * FROM abc; ERROR: CREATE TABLE/AS SELECT has mismatched column count --- src/include/nodes/parsenodes.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/nodes/parsenodes.h') diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 1abd7ba365..892177c920 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.149 2001/10/28 06:26:07 momjian Exp $ + * $Id: parsenodes.h,v 1.150 2001/11/05 05:00:14 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -881,6 +881,7 @@ typedef struct SelectStmt * DISTINCT) */ char *into; /* name of table (for select into table) */ bool istemp; /* into is a temp table? */ + List *intoColNames; /* column names for into table */ List *targetList; /* the target list (of ResTarget) */ List *fromClause; /* the FROM clause */ Node *whereClause; /* WHERE qualification */ -- cgit v1.2.1