Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 735594f

Browse files
committed
Update docs for 7.2 mention where appropriate.
1 parent 87fd2db commit 735594f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

INSTALL

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ If You Are Upgrading
7676

7777
The internal data storage format changes with new releases of PostgreSQL.
7878
Therefore, if you are upgrading an existing installation that does not have
79-
a version number "7.1.x", you must back up and restore your data as shown
79+
a version number "7.2.x", you must back up and restore your data as shown
8080
here. These instructions assume that your existing installation is under the
8181
/usr/local/pgsql directory, and that the data area is in
8282
/usr/local/pgsql/data. Substitute your paths appropriately.
@@ -97,7 +97,7 @@ here. These instructions assume that your existing installation is under the
9797
do this.
9898

9999
Make sure that you use the pg_dumpall command from the version you are
100-
currently running. 7.1's pg_dumpall should not be used on older
100+
currently running. 7.2's pg_dumpall should not be used on older
101101
databases.
102102

103103
3. If you are installing the new version at the same location as the old
@@ -125,7 +125,7 @@ here. These instructions assume that your existing installation is under the
125125

126126
mv /usr/local/pgsql /usr/local/pgsql.old
127127

128-
After you have installed PostgreSQL 7.1, create a new database directory and
128+
After you have installed PostgreSQL 7.2, create a new database directory and
129129
start the new server. Remember that you must execute these commands while
130130
logged in to the special database user account (which you already have if
131131
you are upgrading).
@@ -736,7 +736,7 @@ tests pass.
736736

737737
Unsupported Platforms. The following platforms have not been verified to
738738
work. Platforms listed for version 6.3.x and later should also work with
739-
7.1, but we did not receive explicit confirmation of such at the time this
739+
7.2, but we did not receive explicit confirmation of such at the time this
740740
list was compiled. We include these here to let you know that these
741741
platforms could be supported if given some attention.
742742

doc/src/sgml/backup.sgml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.15 2001/09/10 07:17:01 ishii Exp $ -->
1+
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.16 2001/10/01 17:46:46 momjian Exp $ -->
22
<chapter id="backup">
33
<title>Backup and Restore</title>
44

@@ -234,7 +234,7 @@ cat <replaceable class="parameter">filename</replaceable>* | psql <replaceable c
234234
</formalpara>
235235

236236
<formalpara>
237-
<title>Use the custom dump format (V7.1).</title>
237+
<title>Use the custom dump format.</title>
238238
<para>
239239
If PostgreSQL was built on a system with the <application>zlib</> compression library
240240
installed, the custom dump format will compress data as it writes it
@@ -368,8 +368,8 @@ tar -cf backup.tar /usr/local/pgsql/data
368368
As a general rule, the internal data storage format is subject to
369369
change between releases of <productname>Postgres</>. This does not
370370
apply to different <quote>patch levels</quote>, these always have
371-
compatible storage formats. For example, releases 6.5.3, 7.0.1, and
372-
7.1 are not compatible, whereas 7.0.2 and 7.0.1 are. When you
371+
compatible storage formats. For example, releases 7.0.1, 7.1.2, and
372+
7.2 are not compatible, whereas 7.1.2 and 7.1.1 are. When you
373373
update between compatible versions, then you can simply reuse the
374374
data area in disk by the new executables. Otherwise you need to
375375
<quote>back up</> your data and <quote>restore</> it on the new
@@ -409,7 +409,7 @@ pg_dumpall -p 5432 | psql -d template1 -p 6543
409409
pg_dumpall > backup
410410
pg_ctl stop
411411
mv /usr/local/pgsql /usr/local/pgsql.old
412-
cd /usr/src/postgresql-7.1
412+
cd /usr/src/postgresql-7.2
413413
gmake install
414414
initdb -D /usr/local/pgsql/data
415415
postmaster -D /usr/local/pgsql/data

0 commit comments

Comments
 (0)