aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-12-09 04:36:57 +0000
committerBruce Momjian <bruce@momjian.us>1999-12-09 04:36:57 +0000
commit469cf43fac9bd5e261499c2a922f5cb01fbb95f1 (patch)
tree865ab661af84f6ab0fb968163cb45811d347b11b /src
parent0882951b0cdb4c6686e57121d56216cb2044f7eb (diff)
downloadpostgresql-469cf43fac9bd5e261499c2a922f5cb01fbb95f1.tar.gz
postgresql-469cf43fac9bd5e261499c2a922f5cb01fbb95f1.zip
Remove extra vacuum, from Peter.
Diffstat (limited to 'src')
-rw-r--r--src/bin/initdb/initdb.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh
index 8e9847c422f..7c792c36c0a 100644
--- a/src/bin/initdb/initdb.sh
+++ b/src/bin/initdb/initdb.sh
@@ -26,7 +26,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.62 1999/11/21 04:16:15 tgl Exp $
+# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.63 1999/12/09 04:36:57 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -412,10 +412,6 @@ echo
PGSQL_OPT="-o /dev/null -O -F -Q -D$PGDATA"
-# If the COPY is first, the VACUUM generates an error, so we vacuum first
-echo "Vacuuming template1"
-echo "vacuum" | postgres $PGSQL_OPT template1 > /dev/null
-
# Create the initial pg_pwd (flat-file copy of pg_shadow)
echo "COPY pg_shadow TO '$PGDATA/pg_pwd' USING DELIMITERS '\\t'" | \
postgres $PGSQL_OPT template1 > /dev/null