Avoid VACUUM FULL altogether in initdb.

Commit ed7b3b3811 purported to remove initdb's use of VACUUM FULL,
as had been agreed to in a pghackers discussion back in Dec 2014.
But it missed this one ...
This commit is contained in:
Tom Lane 2015-12-23 20:09:01 -05:00
parent ff402ae11b
commit 01e386a325
1 changed files with 1 additions and 1 deletions

View File

@ -2130,7 +2130,7 @@ make_template0(FILE *cmdfd)
/*
* Finally vacuum to clean up dead rows in pg_database
*/
"VACUUM FULL pg_database;\n\n",
"VACUUM pg_database;\n\n",
NULL
};