Commit 01e386a3 authored by Tom Lane's avatar Tom Lane

Avoid VACUUM FULL altogether in initdb.

Commit ed7b3b38 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 ...
parent ff402ae1
......@@ -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
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment