mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
In pg_upgrade, dump each database separately and use
--single-transaction to restore each database schema. This yields performance improvements for databases with many tables. Also, remove split_old_dump() as it is no longer needed.
This commit is contained in:
@ -35,6 +35,18 @@ report_status(eLogType type, const char *fmt,...)
|
||||
}
|
||||
|
||||
|
||||
/* force blank output for progress display */
|
||||
void
|
||||
end_progress_output(void)
|
||||
{
|
||||
/*
|
||||
* In case nothing printed; pass a space so gcc doesn't complain about
|
||||
* empty format string.
|
||||
*/
|
||||
prep_status(" ");
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* prep_status
|
||||
*
|
||||
|
Reference in New Issue
Block a user