diff options
| author | Tom Lane | 2001-08-26 16:56:03 +0000 |
|---|---|---|
| committer | Tom Lane | 2001-08-26 16:56:03 +0000 |
| commit | bc7d37a525c02f4a0e983854c4222e9d063eeae2 (patch) | |
| tree | 46d1ff8c74eb0a6cec5c183732410a1b846fc5ba /src/bin/initdb | |
| parent | d1ee78f2962f09f0fe7c6c8ee16ad513ac113ba4 (diff) | |
Transaction IDs wrap around, per my proposal of 13-Aug-01. More
documentation to come, but the code is all here. initdb forced.
Diffstat (limited to 'src/bin/initdb')
| -rw-r--r-- | src/bin/initdb/initdb.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index bbb014391a4..11799e70490 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -27,7 +27,7 @@ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.134 2001/08/25 18:52:42 tgl Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.135 2001/08/26 16:56:00 tgl Exp $ # #------------------------------------------------------------------------- @@ -841,7 +841,7 @@ echo "ok" $ECHO_N "vacuuming database template1... "$ECHO_C "$PGPATH"/postgres $PGSQL_OPT template1 >/dev/null <<EOF -VACUUM FULL ANALYZE; +VACUUM FULL FREEZE; EOF if [ "$?" -ne 0 ]; then exit_nicely |
