Commit 745f0c21 authored by Bruce Momjian's avatar Bruce Momjian

Remove compiler warning about uninitialized warnings.

parent bf74477b
This diff is collapsed.
This diff is collapsed.
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California * 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) ...@@ -1140,7 +1140,7 @@ transformCreateStmt(ParseState *pstate, CreateStmt *stmt)
int found=0; int found=0;
List *cols; List *cols;
List *fkattrs; List *fkattrs;
Ident *fkattr; Ident *fkattr = NULL;
ColumnDef *col; ColumnDef *col;
foreach(fkattrs, fkconstraint->fk_attrs) { foreach(fkattrs, fkconstraint->fk_attrs) {
found=0; found=0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment