]> granicus.if.org Git - postgresql/commit
CREATE TABLE foo (x,y,z) AS SELECT ... can't apply target column names
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 Nov 2001 05:00:14 +0000 (05:00 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 Nov 2001 05:00:14 +0000 (05:00 +0000)
commit5251e7b3d07da28b48ec5c7930c8b57b554fd27a
tree6b0f24e3c8722839d2fc549d052995d2d4e3b763
parentd556920a982c29810c2afaf64ca4840713a424c1
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/backend/nodes/copyfuncs.c
src/backend/nodes/equalfuncs.c
src/backend/parser/analyze.c
src/backend/parser/gram.y
src/include/nodes/parsenodes.h