1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-12 21:01:52 +03:00

Remove compiler warning about uninitialized warnings.

This commit is contained in:
Bruce Momjian
2001-01-08 20:54:24 +00:00
parent bf74477b05
commit 745f0c21e5
3 changed files with 2 additions and 1593 deletions

View File

@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: analyze.c,v 1.174 2001/01/05 06:34:18 tgl Exp $
* $Id: analyze.c,v 1.175 2001/01/08 20:54:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -1140,7 +1140,7 @@ transformCreateStmt(ParseState *pstate, CreateStmt *stmt)
int found=0;
List *cols;
List *fkattrs;
Ident *fkattr;
Ident *fkattr = NULL;
ColumnDef *col;
foreach(fkattrs, fkconstraint->fk_attrs) {
found=0;