Enable /contrib/pg_upgrade, mention little testing.
authorBruce Momjian <[email protected]>
Fri, 18 Jan 2002 04:38:46 +0000 (04:38 +0000)
committerBruce Momjian <[email protected]>
Fri, 18 Jan 2002 04:38:46 +0000 (04:38 +0000)
contrib/pg_upgrade/README
contrib/pg_upgrade/pg_upgrade

index 878fad78165f8f6e10a190ff0ea24bd888a28105..e4363f52600bde1435d0673a3d698195ba2304bf 100644 (file)
@@ -1,7 +1,9 @@
                                  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:
 
index 1930793ce3239d3df0d03ee51e39495f28496340..bd28cb4956bced54a25bdae989855cc3495a5f1d 100755 (executable)
 
 #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
@@ -25,10 +29,6 @@ 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"`