update for 6.3.1

This commit is contained in:
Bruce Momjian 1998-03-23 16:14:50 +00:00
parent 817fc4b2ac
commit f74f2d39d8
8 changed files with 28 additions and 20 deletions

10
HISTORY
View File

@ -1,10 +1,10 @@
PostgreSQL 6.3p1 Sun Mar 22 00:19:35 EST 1998 PostgreSQL 6.3.1 Mon Mar 23 10:21:52 EST 1998
------------------------------------------------------------- -------------------------------------------------------------
A dump/restore is NOT required for those running 6.3. A 'make clean', A dump/restore is NOT required for those running 6.3. A
'make', and 'make install' is all that is required. This last step 'make distclean', 'make', and 'make install' is all that is required.
should be performed while the postmaster is not running. You should This last step should be performed while the postmaster is not running.
re-link any custom applications that use PostgreSQL libraries. You should re-link any custom applications that use PostgreSQL libraries.
Changes Changes
------- -------

25
INSTALL
View File

@ -2,7 +2,7 @@ POSTGRESQL INSTALLATION INSTRUCTIONS
Copyright (c) 1997 Regents of the University of California Copyright (c) 1997 Regents of the University of California
This is file /usr/src/pgsql/INSTALL. It contains notes on how to install This is file /usr/src/pgsql/INSTALL. It contains notes on how to install
PostgreSQL v6.3. Up to date information on PostgreSQL may be found at PostgreSQL v6.3.1. Up to date information on PostgreSQL may be found at
http://www.postgresql.org. http://www.postgresql.org.
PostgreSQL is an RDBMS database server. It is not completely ANSI SQL 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
to hold the source, binaries, and user databases. After installation to hold the source, binaries, and user databases. After installation
you may reduce this to about 3 Mbytes plus space for user databases. you may reduce this to about 3 Mbytes plus space for user databases.
To those upgrading from PostgreSQL 6.3:
---------------------------------------
A dump/restore is NOT required for those running 6.3. A
'make distclean', 'make', and 'make install' is all that is required.
This last step should be performed while the postmaster is not running.
You should re-link any custom applications that use PostgreSQL libraries.
To those doing a fresh install or upgrading from previous releases of To those doing a fresh install or upgrading from previous releases of
PostgreSQL: PostgreSQL:
---------------------------------------------- ----------------------------------------------
@ -110,7 +119,7 @@ PostgreSQL:
To check for disk space, use command "df -k". To check for disk space, use command "df -k".
4) Ftp file ftp://ftp.postgresql.org/pub/postgresql-v6.3.tar.gz from the 4) Ftp file ftp://ftp.postgresql.org/pub/postgresql-v6.3.1.tar.gz from the
Internet. Store it in your home directory. Internet. Store it in your home directory.
5) Some platforms use flex. If your system uses flex then make sure 5) Some platforms use flex. If your system uses flex then make sure
@ -152,7 +161,7 @@ PostgreSQL:
step. Type (with the gunzip line and the following line typed as one step. Type (with the gunzip line and the following line typed as one
line): line):
cd cd
gunzip -c postgresql-v6.3.tar.gz | gunzip -c postgresql-v6.3.1.tar.gz |
tar xvf - src/bin/pg_dump/pg_dumpall tar xvf - src/bin/pg_dump/pg_dumpall
chmod a+x src/bin/pg_dump/pg_dumpall chmod a+x src/bin/pg_dump/pg_dumpall
src/bin/pg_dump/pg_dumpall > db.out src/bin/pg_dump/pg_dumpall > db.out
@ -217,7 +226,7 @@ PostgreSQL:
10) Unzip and untar the new source file. Type 10) Unzip and untar the new source file. Type
cd /usr/src/pgsql cd /usr/src/pgsql
gunzip -c ~/postgresql-v6.3.tar.gz | tar xvf - gunzip -c ~/postgresql-v6.3.1.tar.gz | tar xvf -
11) Configure the source code for your system. It is this step at which 11) Configure the source code for your system. It is this step at which
you can specify your actual source path and installation paths for you can specify your actual source path and installation paths for
@ -414,7 +423,7 @@ PostgreSQL:
PostgreSQL. PostgreSQL.
For a i686/Linux-ELF platform, no tests failed since this is the For a i686/Linux-ELF platform, no tests failed since this is the
v6.3 regression testing reference platform. v6.3.1 regression testing reference platform.
For the SPARC/Linux-ELF platform, using the 970525 beta version of For the SPARC/Linux-ELF platform, using the 970525 beta version of
PostgreSQL v6.2 the following tests "failed": PostgreSQL v6.2 the following tests "failed":
@ -507,7 +516,7 @@ PostgreSQL:
e-mail us a copy of your shell script. We would like to set up e-mail us a copy of your shell script. We would like to set up
our own systems to do this too.) our own systems to do this too.)
23) If you are upgrading an existing system then install your old database. 23) If you are upgrading an existing system then reload your old database.
Type Type
cd cd
psql -e template1 < db.out psql -e template1 < db.out
@ -534,7 +543,7 @@ PostgreSQL:
rm -rf /usr/local/pgsql_6_0 rm -rf /usr/local/pgsql_6_0
# Also delete old database directory tree if it is not in # Also delete old database directory tree if it is not in
# /usr/local/pgsql_6_0/data # /usr/local/pgsql_6_0/data
rm ~/postgresql-v6.3.tar.gz rm ~/postgresql-v6.3.1.tar.gz
26) You will probably want to print out the documentation. Here is how 26) You will probably want to print out the documentation. Here is how
you might do it if you have Ghostscript on your system and are you might do it if you have Ghostscript on your system and are
@ -561,7 +570,7 @@ PostgreSQL:
supported platforms. We therefore ask you to let us know if you did supported platforms. We therefore ask you to let us know if you did
or did not get PostgreSQL to work on you system. Please send a or did not get PostgreSQL to work on you system. Please send a
mail message to pgsql-ports@postgresql.org telling us the following: mail message to pgsql-ports@postgresql.org telling us the following:
- The version of PostgreSQL (v6.3, 6.2.1, beta 970703, etc.). - The version of PostgreSQL (v6.3.1, 6.2.1, beta 970703, etc.).
- Your operating system (i.e. RedHat v4.0 Linux v2.0.26). - Your operating system (i.e. RedHat v4.0 Linux v2.0.26).
- Your hardware (SPARC, i486, etc.). - Your hardware (SPARC, i486, etc.).
- Did you compile, install and run the regression tests cleanly? - Did you compile, install and run the regression tests cleanly?

2
README
View File

@ -2,7 +2,7 @@
PostgreSQL Data Base Management System (formerly known as Postgres, then PostgreSQL Data Base Management System (formerly known as Postgres, then
as Postgres95). as Postgres95).
This directory contains the version 6.3 release of the PostgreSQL This directory contains the version 6.3.1 release of the PostgreSQL
database server. The server is not ANSI SQL compliant, but it gets database server. The server is not ANSI SQL compliant, but it gets
closer with every release. After you unzip and untar the distribution closer with every release. After you unzip and untar the distribution
file, look at file INSTALL for the installation notes and file HISTORY file, look at file INSTALL for the installation notes and file HISTORY

View File

@ -194,7 +194,7 @@ DOCUMENTATION
============================================================================= =============================================================================
CHANGES IN THE 6.3p1 PATCH CHANGES IN THE 6.3.1 PATCH
-------------------------- --------------------------
ecpg cleanup/fixes, now version 1.1(Michael Meskes) ecpg cleanup/fixes, now version 1.1(Michael Meskes)
pg_user cleanup(Bruce) pg_user cleanup(Bruce)

View File

@ -27,7 +27,7 @@ System Configuration
Operating System (example: Linux 2.0.26 ELF) : Operating System (example: Linux 2.0.26 ELF) :
PostgreSQL version (example: PostgreSQL-6.3) : PostgreSQL-6.3 PostgreSQL version (example: PostgreSQL-6.3) : PostgreSQL-6.3.1
Compiler used (example: gcc 2.7.2) : Compiler used (example: gcc 2.7.2) :

View File

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

View File

@ -71,10 +71,10 @@ fi
cat <<EOT cat <<EOT
************************************************************** **************************************************************
PostreSQL v6.3 Installation Program PostreSQL v6.3.1 Installation Program
Welcome to the new improved PostgreSQL installation program. Welcome to the new improved PostgreSQL installation program.
This configuration program is for version 6.3 of the This configuration program is for version 6.3.1 of the
PostgreSQL software. PostgreSQL software.
EOT EOT

View File

@ -3,7 +3,6 @@ INSTALL
HISTORY HISTORY
register.txt register.txt
configure.in configure.in
doc/FAQ, including version number
doc/Machine-specific FAQ's doc/Machine-specific FAQ's
doc/TODO doc/TODO
doc/bug.template doc/bug.template