From 77181aea15e7cc16ad1d61894a7fbd16215d5005 Mon Sep 17 00:00:00 2001 From: Shigeru Hanada Date: Tue, 28 Sep 2010 20:11:59 +0900 Subject: [PATCH] Initialize foreign table specific variables to suppress compiler's warning. --- src/bin/pg_dump/pg_dump.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.39.5