File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 11 pg_upgrade
22
3- This is a version of pg_upgrade which will migrate a 7.1 database to 7.2,
4- or allow a 7.2 to 7.2 migration if you need to perform an initdb.
3+ This is a version of pg_upgrade which will migrate a 7.1 database to
4+ 7.2, or allow a 7.2 to 7.2 migration if you need to perform an initdb.
5+ It has been only lightly tested. Please report any problems to the
6+ PostgreSQL lists.
57
68Read the manual page for more information. To view it:
79
Original file line number Diff line number Diff line change 33# pg_upgrade: update a database without needing a full dump/reload cycle.
44# CAUTION: Read the manual page before trying to use this!
55
6- # $Header: /cvsroot/pgsql/contrib/pg_upgrade/Attic/pg_upgrade,v 1.9 2002/01/15 05:41:55 momjian Exp $
6+ # $Header: /cvsroot/pgsql/contrib/pg_upgrade/Attic/pg_upgrade,v 1.10 2002/01/18 04:38:46 momjian Exp $
77#
88# To migrate this to newer versions of PostgreSQL:
99# 1) Update the version numbers at the top of the file
1313
1414# set -x
1515
16+ # UPGRADE_VERSION is the expected old database version
17+ UPGRADE_VERSION=" 7.1"
18+ CUR_VERSION=" 7.2"
19+
1620# Set this to "Y" to enable this program
17- ENABLE=" N "
21+ ENABLE=" Y "
1822
1923if [ " $ENABLE " != " Y" ]
2024then
2529fi
2630
2731
28- # UPGRADE_VERSION is the expected old database version
29- UPGRADE_VERSION=" 7.1"
30- CUR_VERSION=" 7.2"
31-
3232trap " rm -f /tmp/$$ .*" 0 1 2 3 15
3333
3434BASENAME=` basename " $0 " `
You can’t perform that action at this time.
0 commit comments