From 8ae13aac520a93ec684b6275adfee03c9994f513 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 18 Mar 2005 17:33:03 +0000 Subject: [PATCH] Put 'dump complete' message in the right place, so it comes out where it's supposed to when --file option is used. --- src/bin/pg_dump/pg_backup_archiver.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"); } /* -- 2.39.5