File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
pg_upgrade
2
2
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.
5
7
6
8
Read the manual page for more information. To view it:
7
9
Original file line number Diff line number Diff line change 3
3
# pg_upgrade: update a database without needing a full dump/reload cycle.
4
4
# CAUTION: Read the manual page before trying to use this!
5
5
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 $
7
7
#
8
8
# To migrate this to newer versions of PostgreSQL:
9
9
# 1) Update the version numbers at the top of the file
13
13
14
14
# set -x
15
15
16
+ # UPGRADE_VERSION is the expected old database version
17
+ UPGRADE_VERSION=" 7.1"
18
+ CUR_VERSION=" 7.2"
19
+
16
20
# Set this to "Y" to enable this program
17
- ENABLE=" N "
21
+ ENABLE=" Y "
18
22
19
23
if [ " $ENABLE " != " Y" ]
20
24
then
25
29
fi
26
30
27
31
28
- # UPGRADE_VERSION is the expected old database version
29
- UPGRADE_VERSION=" 7.1"
30
- CUR_VERSION=" 7.2"
31
-
32
32
trap " rm -f /tmp/$$ .*" 0 1 2 3 15
33
33
34
34
BASENAME=` basename " $0 " `
You can’t perform that action at this time.
0 commit comments