We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8505fc8 commit 80caa74Copy full SHA for 80caa74
src/backend/parser/analyze.c
@@ -6,7 +6,7 @@
6
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
7
* Portions Copyright (c) 1994, Regents of the University of California
8
*
9
- * $Id: analyze.c,v 1.177 2001/01/24 19:43:00 momjian Exp $
+ * $Id: analyze.c,v 1.178 2001/01/27 07:23:48 tgl Exp $
10
11
*-------------------------------------------------------------------------
12
*/
@@ -749,7 +749,7 @@ transformCreateStmt(ParseState *pstate, CreateStmt *stmt)
749
elog(NOTICE, "CREATE TABLE will create implicit sequence '%s' for SERIAL column '%s.%s'",
750
sequence->seqname, stmt->relname, column->colname);
751
752
- blist = makeList1(sequence);
+ blist = lappend(blist, sequence);
753
}
754
755
/* Process column constraints, if any... */
0 commit comments