Skip to content

Commit f74f2d3

Browse files
committed
update for 6.3.1
1 parent 817fc4b commit f74f2d3

File tree

8 files changed

+28
-20
lines changed

8 files changed

+28
-20
lines changed

HISTORY

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
PostgreSQL 6.3p1 Sun Mar 22 00:19:35 EST 1998
1+
PostgreSQL 6.3.1 Mon Mar 23 10:21:52 EST 1998
22
-------------------------------------------------------------
33

4-
A dump/restore is NOT required for those running 6.3. A 'make clean',
5-
'make', and 'make install' is all that is required. This last step
6-
should be performed while the postmaster is not running. You should
7-
re-link any custom applications that use PostgreSQL libraries.
4+
A dump/restore is NOT required for those running 6.3. A
5+
'make distclean', 'make', and 'make install' is all that is required.
6+
This last step should be performed while the postmaster is not running.
7+
You should re-link any custom applications that use PostgreSQL libraries.
88

99
Changes
1010
-------

INSTALL

+17-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ POSTGRESQL INSTALLATION INSTRUCTIONS
22
Copyright (c) 1997 Regents of the University of California
33

44
This is file /usr/src/pgsql/INSTALL. It contains notes on how to install
5-
PostgreSQL v6.3. Up to date information on PostgreSQL may be found at
5+
PostgreSQL v6.3.1. Up to date information on PostgreSQL may be found at
66
http://www.postgresql.org.
77

88
PostgreSQL is an RDBMS database server. It is not completely ANSI SQL
@@ -68,6 +68,15 @@ You should have at least 8 MB of memory and at least 45 MB of disk space
6868
to hold the source, binaries, and user databases. After installation
6969
you may reduce this to about 3 Mbytes plus space for user databases.
7070

71+
To those upgrading from PostgreSQL 6.3:
72+
---------------------------------------
73+
74+
A dump/restore is NOT required for those running 6.3. A
75+
'make distclean', 'make', and 'make install' is all that is required.
76+
This last step should be performed while the postmaster is not running.
77+
You should re-link any custom applications that use PostgreSQL libraries.
78+
79+
7180
To those doing a fresh install or upgrading from previous releases of
7281
PostgreSQL:
7382
----------------------------------------------
@@ -110,7 +119,7 @@ PostgreSQL:
110119

111120
To check for disk space, use command "df -k".
112121

113-
4) Ftp file ftp://ftp.postgresql.org/pub/postgresql-v6.3.tar.gz from the
122+
4) Ftp file ftp://ftp.postgresql.org/pub/postgresql-v6.3.1.tar.gz from the
114123
Internet. Store it in your home directory.
115124

116125
5) Some platforms use flex. If your system uses flex then make sure
@@ -152,7 +161,7 @@ PostgreSQL:
152161
step. Type (with the gunzip line and the following line typed as one
153162
line):
154163
cd
155-
gunzip -c postgresql-v6.3.tar.gz |
164+
gunzip -c postgresql-v6.3.1.tar.gz |
156165
tar xvf - src/bin/pg_dump/pg_dumpall
157166
chmod a+x src/bin/pg_dump/pg_dumpall
158167
src/bin/pg_dump/pg_dumpall > db.out
@@ -217,7 +226,7 @@ PostgreSQL:
217226

218227
10) Unzip and untar the new source file. Type
219228
cd /usr/src/pgsql
220-
gunzip -c ~/postgresql-v6.3.tar.gz | tar xvf -
229+
gunzip -c ~/postgresql-v6.3.1.tar.gz | tar xvf -
221230

222231
11) Configure the source code for your system. It is this step at which
223232
you can specify your actual source path and installation paths for
@@ -414,7 +423,7 @@ PostgreSQL:
414423
PostgreSQL.
415424

416425
For a i686/Linux-ELF platform, no tests failed since this is the
417-
v6.3 regression testing reference platform.
426+
v6.3.1 regression testing reference platform.
418427

419428
For the SPARC/Linux-ELF platform, using the 970525 beta version of
420429
PostgreSQL v6.2 the following tests "failed":
@@ -507,7 +516,7 @@ PostgreSQL:
507516
e-mail us a copy of your shell script. We would like to set up
508517
our own systems to do this too.)
509518

510-
23) If you are upgrading an existing system then install your old database.
519+
23) If you are upgrading an existing system then reload your old database.
511520
Type
512521
cd
513522
psql -e template1 < db.out
@@ -534,7 +543,7 @@ PostgreSQL:
534543
rm -rf /usr/local/pgsql_6_0
535544
# Also delete old database directory tree if it is not in
536545
# /usr/local/pgsql_6_0/data
537-
rm ~/postgresql-v6.3.tar.gz
546+
rm ~/postgresql-v6.3.1.tar.gz
538547

539548
26) You will probably want to print out the documentation. Here is how
540549
you might do it if you have Ghostscript on your system and are
@@ -561,7 +570,7 @@ PostgreSQL:
561570
supported platforms. We therefore ask you to let us know if you did
562571
or did not get PostgreSQL to work on you system. Please send a
563572
mail message to [email protected] telling us the following:
564-
- The version of PostgreSQL (v6.3, 6.2.1, beta 970703, etc.).
573+
- The version of PostgreSQL (v6.3.1, 6.2.1, beta 970703, etc.).
565574
- Your operating system (i.e. RedHat v4.0 Linux v2.0.26).
566575
- Your hardware (SPARC, i486, etc.).
567576
- Did you compile, install and run the regression tests cleanly?

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PostgreSQL Data Base Management System (formerly known as Postgres, then
33
as Postgres95).
44

5-
This directory contains the version 6.3 release of the PostgreSQL
5+
This directory contains the version 6.3.1 release of the PostgreSQL
66
database server. The server is not ANSI SQL compliant, but it gets
77
closer with every release. After you unzip and untar the distribution
88
file, look at file INSTALL for the installation notes and file HISTORY

doc/TODO

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ DOCUMENTATION
194194

195195
=============================================================================
196196

197-
CHANGES IN THE 6.3p1 PATCH
197+
CHANGES IN THE 6.3.1 PATCH
198198
--------------------------
199199
ecpg cleanup/fixes, now version 1.1(Michael Meskes)
200200
pg_user cleanup(Bruce)

doc/bug.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ System Configuration
2727

2828
Operating System (example: Linux 2.0.26 ELF) :
2929

30-
PostgreSQL version (example: PostgreSQL-6.3) : PostgreSQL-6.3
30+
PostgreSQL version (example: PostgreSQL-6.3) : PostgreSQL-6.3.1
3131

3232
Compiler used (example: gcc 2.7.2) :
3333

register.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
(1998-03-01)
3+
(1998-03-21)
44
PostgreSQL has a Web site at http://www.postgresql.org/ which carries details
55
on the latest release, upcoming features, and other information to make your
66
work or play with PostgreSQL more productive.

src/configure.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ fi
7171

7272
cat <<EOT
7373
**************************************************************
74-
PostreSQL v6.3 Installation Program
74+
PostreSQL v6.3.1 Installation Program
7575

7676
Welcome to the new improved PostgreSQL installation program.
77-
This configuration program is for version 6.3 of the
77+
This configuration program is for version 6.3.1 of the
7878
PostgreSQL software.
7979

8080
EOT

src/tools/RELEASE_CHANGES

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ INSTALL
33
HISTORY
44
register.txt
55
configure.in
6-
doc/FAQ, including version number
76
doc/Machine-specific FAQ's
87
doc/TODO
98
doc/bug.template

0 commit comments

Comments
 (0)