From: Bruce Momjian Date: Wed, 5 Jan 2011 02:33:37 +0000 (-0500) Subject: In pg_upgrade, fix backward logging display of link operations. X-Git-Tag: REL9_0_3~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=845626f506df0518829fe519977f42e02d9c8438;p=thirdparty%2Fpostgresql.git In pg_upgrade, fix backward logging display of link operations. --- diff --git a/contrib/pg_upgrade/relfilenode.c b/contrib/pg_upgrade/relfilenode.c index de81053241e..b20ca200f18 100644 --- a/contrib/pg_upgrade/relfilenode.c +++ b/contrib/pg_upgrade/relfilenode.c @@ -218,7 +218,7 @@ transfer_relfile(migratorContext *ctx, pageCnvCtx *pageConverter, const char *ol } else { - pg_log(ctx, PG_INFO, "linking %s to %s\n", newfile, oldfile); + pg_log(ctx, PG_INFO, "linking %s to %s\n", oldfile, newfile); if ((msg = linkAndUpdateFile(ctx, pageConverter, oldfile, newfile)) != NULL) pg_log(ctx, PG_FATAL,