Commit ed7b3b38 authored by Bruce Momjian's avatar Bruce Momjian

initdb: remove unnecessary VACUUM FULL

Report by Peter Eisentraut
parent 0badb069
......@@ -2325,7 +2325,8 @@ vacuum_db(void)
PG_CMD_OPEN;
PG_CMD_PUTS("ANALYZE;\nVACUUM FULL;\nVACUUM FREEZE;\n");
/* Run analyze before VACUUM so the statistics are frozen. */
PG_CMD_PUTS("ANALYZE;\nVACUUM FREEZE;\n");
PG_CMD_CLOSE;
......
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