pg_upgrade
-This is a version of pg_upgrade which will migrate a 7.1 database to 7.2,
-or allow a 7.2 to 7.2 migration if you need to perform an initdb.
+This is a version of pg_upgrade which will migrate a 7.1 database to
+7.2, or allow a 7.2 to 7.2 migration if you need to perform an initdb.
+It has been only lightly tested. Please report any problems to the
+PostgreSQL lists.
Read the manual page for more information. To view it:
#set -x
+# UPGRADE_VERSION is the expected old database version
+UPGRADE_VERSION="7.1"
+CUR_VERSION="7.2"
+
# Set this to "Y" to enable this program
-ENABLE="N"
+ENABLE="Y"
if [ "$ENABLE" != "Y" ]
then
fi
-# UPGRADE_VERSION is the expected old database version
-UPGRADE_VERSION="7.1"
-CUR_VERSION="7.2"
-
trap "rm -f /tmp/$$.*" 0 1 2 3 15
BASENAME=`basename "$0"`