From: Shigeru Hanada Date: Tue, 28 Sep 2010 11:11:59 +0000 (+0900) Subject: Initialize foreign table specific variables to suppress compiler's warning. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=77181aea15e7cc16ad1d61894a7fbd16215d5005;p=users%2Fhanada%2Fpostgres.git Initialize foreign table specific variables to suppress compiler's warning. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index be43afd9a4..24a420b6c4 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -11018,7 +11018,11 @@ dumpTableSchema(Archive *fout, TableInfo *tbinfo) PQclear(res); } else + { reltypename = "TABLE"; + srvname = NULL; + ftoptions = NULL; + } numParents = tbinfo->numParents; parents = tbinfo->parents;