From: Tom Lane Date: Fri, 18 Mar 2005 17:33:03 +0000 (+0000) Subject: Put 'dump complete' message in the right place, so it comes out where X-Git-Tag: REL8_0_2~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ae13aac520a93ec684b6275adfee03c9994f513;p=thirdparty%2Fpostgresql.git Put 'dump complete' message in the right place, so it comes out where it's supposed to when --file option is used. --- diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index b424b626211..32ed1eac767 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.101.4.3 2005/01/26 19:44:53 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.101.4.4 2005/03/18 17:33:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -400,6 +400,8 @@ RestoreArchive(Archive *AHX, RestoreOptions *ropt) te = te->next; } + ahprintf(AH, "--\n-- PostgreSQL database dump complete\n--\n\n"); + /* * Clean up & we're done. */ @@ -419,8 +421,6 @@ RestoreArchive(Archive *AHX, RestoreOptions *ropt) AH->blobConnection = NULL; } } - - ahprintf(AH, "--\n-- PostgreSQL database dump complete\n--\n\n"); } /*