From: Bruce Momjian Date: Tue, 11 Dec 2012 04:03:17 +0000 (-0500) Subject: Fix pg_upgrade -O/-o options X-Git-Tag: REL9_2_3~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35fb1434b185c5e9ee1e232f3349713201e7cbfa;p=postgresql Fix pg_upgrade -O/-o options Fix previous commit that added synchronous_commit=off, but broke -O/-o due to missing space in argument passing. Backpatch to 9.2. --- diff --git a/contrib/pg_upgrade/server.c b/contrib/pg_upgrade/server.c index 49d4c8f9d7..0940e00a72 100644 --- a/contrib/pg_upgrade/server.c +++ b/contrib/pg_upgrade/server.c @@ -214,7 +214,7 @@ start_postmaster(ClusterInfo *cluster) * the new cluster has to be recreated anyway. */ snprintf(cmd, sizeof(cmd), - "\"%s/pg_ctl\" -w -l \"%s\" -D \"%s\" -o \"-p %d%s%s%s%s\" start", + "\"%s/pg_ctl\" -w -l \"%s\" -D \"%s\" -o \"-p %d%s%s %s%s\" start", cluster->bindir, SERVER_LOG_FILE, cluster->pgconfig, cluster->port, (cluster->controldata.cat_ver >= BINARY_UPGRADE_SERVER_FLAG_CAT_VER) ? " -b" :