Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 01e386a

Browse files
committed
Avoid VACUUM FULL altogether in initdb.
Commit ed7b3b3 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 ...
1 parent ff402ae commit 01e386a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/initdb/initdb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2130,7 +2130,7 @@ make_template0(FILE *cmdfd)
21302130
/*
21312131
* Finally vacuum to clean up dead rows in pg_database
21322132
*/
2133-
"VACUUM FULL pg_database;\n\n",
2133+
"VACUUM pg_database;\n\n",
21342134
NULL
21352135
};
21362136

0 commit comments

Comments
 (0)