projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff402ae
)
Avoid VACUUM FULL altogether in initdb.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Thu, 24 Dec 2015 01:09:01 +0000
(20:09 -0500)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Thu, 24 Dec 2015 01:09:01 +0000
(20:09 -0500)
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
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/initdb/initdb.c
b/src/bin/initdb/initdb.c
index a27706fdb45f8fc10b3b9304b847d8e9bafa0535..460342a35717d282a889d7dca20fbc75f4e7abfd 100644
(file)
--- 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
};