|
6 | 6 | * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group |
7 | 7 | * Portions Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
9 | | - *$Id: analyze.c,v 1.177 2001/01/24 19:43:00 momjian Exp $ |
| 9 | + *$Id: analyze.c,v 1.178 2001/01/27 07:23:48 tgl Exp $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
@@ -749,7 +749,7 @@ transformCreateStmt(ParseState *pstate, CreateStmt *stmt) |
749 | 749 | elog(NOTICE,"CREATE TABLE will create implicit sequence '%s' for SERIAL column '%s.%s'", |
750 | 750 | sequence->seqname,stmt->relname,column->colname); |
751 | 751 |
|
752 | | -blist=makeList1(sequence); |
| 752 | +blist=lappend(blist,sequence); |
753 | 753 | } |
754 | 754 |
|
755 | 755 | /* Process column constraints, if any... */ |
|