File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 26
26
#
27
27
#
28
28
# IDENTIFICATION
29
- # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.38 1998/03/16 05:58:46 momjian Exp $
29
+ # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.39 1998/03/22 18:28:39 scrappy Exp $
30
30
#
31
31
# -------------------------------------------------------------------------
32
32
348
348
349
349
# If the COPY is first, the VACUUM generates an error, so we vacuum first
350
350
echo " vacuuming template1"
351
- echo " vacuum" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null | \
352
- grep -v " ^DEBUG:"
351
+ echo " vacuum" | postgres -o /dev/null -F -Q -D$PGDATA template1
353
352
354
353
echo " COPY pg_shadow TO '$PGDATA /pg_pwd' USING DELIMITERS '\\ t'" | \
355
354
postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null | \
@@ -390,6 +389,4 @@ echo "REVOKE ALL on pg_shadow FROM public" |\
390
389
echo " loading pg_description"
391
390
echo " copy pg_description from '$TEMPLATE_DESCR '" | postgres -F -Q -D$PGDATA template1 > /dev/null
392
391
echo " copy pg_description from '$GLOBAL_DESCR '" | postgres -F -Q -D$PGDATA template1 > /dev/null
393
- echo " vacuum analyze" | postgres -F -Q -D$PGDATA template1 2>&1 > /dev/null | \
394
- grep -v " ^DEBUG:"
395
-
392
+ echo " vacuum analyze" | postgres -o /dev/null -F -Q -D$PGDATA template1
You can’t perform that action at this time.
0 commit comments