From 01e386a325549b7755739f31308de4be8eea110d Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 23 Dec 2015 20:09:01 -0500 Subject: [PATCH] Avoid VACUUM FULL altogether in initdb. Commit ed7b3b3811c5836a 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 ... --- src/bin/initdb/initdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index a27706fdb4..460342a357 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -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 };