mirror of https://github.com/postgres/postgres
Put 'dump complete' message in the right place, so it comes out where
it's supposed to when --file option is used.
This commit is contained in:
parent
88164799ce
commit
2e629080f7
|
@ -15,7 +15,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.105 2005/02/22 04:39:34 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.106 2005/03/18 17:32:55 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");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue