Skip to content

Commit 8e81164

Browse files
committed
Update for 6.3.2
1 parent db21523 commit 8e81164

File tree

8 files changed

+82
-15
lines changed

8 files changed

+82
-15
lines changed

HISTORY

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
PostgreSQL 6.3.2 Tue Apr 7 16:53:16 EDT 1998
2+
-------------------------------------------------------------
3+
4+
A dump/restore is NOT required for those running 6.3.1. 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.
8+
9+
Changes
10+
-------
11+
configure detection improvements for tcl/tk(Brook Milligan, Alvin)
12+
Manual page improvements(Bruce)
13+
BETWEEN and LIKE fix(Thomas)
14+
fix for psql \connect used by pg_dump(Oliver Elphick)
15+
Cleanup of postodbc source code indentation
16+
pgaccess, version 0.86
17+
HAVING clause now supported in SELECT(Stefan)
18+
qsort removed, now uses libc version, cleanups(Jeroen)
19+
fix for buffer over-runs detected(Maurice Gittens)
20+
fix for buffer overrun in libpgtcl(Randy Kunkee)
21+
fix for UNION with DISTINCT or ORDER BY(Bruce)
22+
gettimeofday configure check(Doug Winterburn)
23+
Fix "indexes not used" bug(Vadim)
24+
docs additions(Thomas)
25+
Fix for backend memory leak(Bruce)
26+
libreadline cleanup(Erwan MAS)
27+
Remove DISTDIR(Bruce)
28+
Makefile dependency cleanup(Jeroen van Vianen)
29+
ASSERT fixes(Bruce)
30+
31+
32+
133
PostgreSQL 6.3.1 Mon Mar 23 10:21:52 EST 1998
234
-------------------------------------------------------------
335

INSTALL

+9-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.1. Up to date information on PostgreSQL may be found at
5+
PostgreSQL v6.3.2. 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
@@ -119,7 +119,7 @@ PostgreSQL:
119119

120120
To check for disk space, use command "df -k".
121121

122-
4) Ftp file ftp://ftp.postgresql.org/pub/postgresql-v6.3.1.tar.gz from the
122+
4) Ftp file ftp://ftp.postgresql.org/pub/postgresql-v6.3.2.tar.gz from the
123123
Internet. Store it in your home directory.
124124

125125
5) Some platforms use flex. If your system uses flex then make sure
@@ -161,7 +161,7 @@ PostgreSQL:
161161
step. Type (with the gunzip line and the following line typed as one
162162
line):
163163
cd
164-
gunzip -c postgresql-v6.3.1.tar.gz |
164+
gunzip -c postgresql-v6.3.2.tar.gz |
165165
tar xvf - src/bin/pg_dump/pg_dumpall
166166
chmod a+x src/bin/pg_dump/pg_dumpall
167167
src/bin/pg_dump/pg_dumpall > db.out
@@ -177,7 +177,8 @@ PostgreSQL:
177177
Please note that if you are upgrading from a version prior to
178178
Postgres95 v1.09 then you must back up your database, install
179179
Postgres95 v1.09, restore your database, then back it up again.
180-
You should also read files /usr/src/pgsql/migration/*.
180+
181+
You should also read the appropriate files pgsql/migration/*.
181182

182183
You must make sure that your database is not updated in the middle of
183184
your backup. If necessary, bring down postmaster, edit the permissions
@@ -226,7 +227,7 @@ PostgreSQL:
226227

227228
10) Unzip and untar the new source file. Type
228229
cd /usr/src/pgsql
229-
gunzip -c ~/postgresql-v6.3.1.tar.gz | tar xvf -
230+
gunzip -c ~/postgresql-v6.3.2.tar.gz | tar xvf -
230231

231232
11) Configure the source code for your system. It is this step at which
232233
you can specify your actual source path and installation paths for
@@ -430,7 +431,7 @@ PostgreSQL:
430431
PostgreSQL.
431432

432433
For a i686/Linux-ELF platform, no tests failed since this is the
433-
v6.3.1 regression testing reference platform.
434+
v6.3.2 regression testing reference platform.
434435

435436
For the SPARC/Linux-ELF platform, using the 970525 beta version of
436437
PostgreSQL v6.2 the following tests "failed":
@@ -550,7 +551,7 @@ PostgreSQL:
550551
rm -rf /usr/local/pgsql_6_0
551552
# Also delete old database directory tree if it is not in
552553
# /usr/local/pgsql_6_0/data
553-
rm ~/postgresql-v6.3.1.tar.gz
554+
rm ~/postgresql-v6.3.2.tar.gz
554555

555556
26) You will probably want to print out the documentation. Here is how
556557
you might do it if you have Ghostscript on your system and are
@@ -577,7 +578,7 @@ PostgreSQL:
577578
supported platforms. We therefore ask you to let us know if you did
578579
or did not get PostgreSQL to work on you system. Please send a
579580
mail message to [email protected] telling us the following:
580-
- The version of PostgreSQL (v6.3.1, 6.2.1, beta 970703, etc.).
581+
- The version of PostgreSQL (v6.3.2, 6.2.1, beta 970703, etc.).
581582
- Your operating system (i.e. RedHat v4.0 Linux v2.0.26).
582583
- Your hardware (SPARC, i486, etc.).
583584
- 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.1 release of the PostgreSQL
5+
This directory contains the version 6.3.2 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

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TODO list for PostgreSQL
22
========================
3-
Last updated: Sat Mar 21 00:26:29 EST 1998
3+
Last updated: Tue Apr 7 16:56:24 EDT 1998
44

55
Current maintainer: Bruce Momjian ([email protected])
66

@@ -28,6 +28,7 @@ Developers who have claimed items are:
2828
* Jan is Jan Wieck <[email protected]>
2929
* Jun is Jun Kuwamura <[email protected]>
3030
* Kurt is "Kurt J. Lidl" <[email protected]>
31+
* Maarten is Maarten Boekhold <[email protected]>
3132
* Marc is Marc Fournier <[email protected]>
3233
* Martin is Martin S. Utesch <[email protected]>
3334
* Michael is Michael Meskes <[email protected]>
@@ -79,6 +80,9 @@ RELIABILITY
7980
* views on subselects fail
8081
* disallow inherited columns with the same name as new columns
8182
* recover or force failure when disk space is exhausted
83+
* default char() value not to full length crashes server on some OS's
84+
* -DISTINCT not on last query fails on UNION but not UNION ALL
85+
* Negative constants used with int2 or float4 columns fails
8286

8387
ENHANCEMENTS
8488
------------
@@ -88,7 +92,7 @@ ENHANCEMENTS
8892
* Allow transaction commits with rollback with no-fsync performance
8993
* More access control over who can create tables and access the database
9094
* Add full ANSI SQL capabilities
91-
* Implement HAVING clause(Stephan)
95+
* -Implement HAVING clause(Stephan)
9296
* add OUTER joins, left and right (Thomas)
9397
* make VIEWs updateable where possible
9498
* add INTERSECTS, SUBTRACTS(Stephan)
@@ -157,6 +161,8 @@ ENHANCEMENTS
157161
* Have psql with no database name not connect to username as default(?)
158162
* Allow subqueries in target list
159163
* Granting permissions to another user looses permissions for the owner
164+
* Allow queries across multiple databases
165+
* Add replication of distributed databases
160166

161167
PERFORMANCE
162168
-----------
@@ -194,6 +200,30 @@ DOCUMENTATION
194200

195201
=============================================================================
196202

203+
204+
CHANGES IN THE 6.3.2 PATCH
205+
--------------------------
206+
configure detection improvements for tcl/tk(Brook Milligan, Alvin)
207+
Manual page improvements(Bruce)
208+
BETWEEN and LIKE fix(Thomas)
209+
fix for psql \connect used by pg_dump(Oliver Elphick)
210+
Cleanup of postodbc source code indentation
211+
pgaccess, version 0.86
212+
HAVING clause now supported in SELECT(Stefan)
213+
qsort removed, now uses libc version, cleanups(Jeroen)
214+
fix for buffer over-runs detected(Maurice Gittens)
215+
fix for buffer overrun in libpgtcl(Randy Kunkee)
216+
fix for UNION with DISTINCT or ORDER BY(Bruce)
217+
gettimeofday configure check(Doug Winterburn)
218+
Fix "indexes not used" bug(Vadim)
219+
docs additions(Thomas)
220+
Fix for backend memory leak(Bruce)
221+
libreadline cleanup(Erwan MAS)
222+
Remove DISTDIR(Bruce)
223+
Makefile dependency cleanup(Jeroen van Vianen)
224+
ASSERT fixes(Bruce)
225+
226+
197227
CHANGES IN THE 6.3.1 PATCH
198228
--------------------------
199229
ecpg cleanup/fixes, now version 1.1(Michael Meskes)

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.1
30+
PostgreSQL version (example: PostgreSQL-6.3.2) : PostgreSQL-6.3.2
3131

3232
Compiler used (example: gcc 2.7.2) :
3333

migration/6.3.1_to_6.3.2

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
A dump/restore is NOT required for those running 6.3. A
2+
'make distclean', 'make', and 'make install' is all that is required.
3+
This last step should be performed while the postmaster is not running.
4+
You should re-link any custom applications that use PostgreSQL libraries.

register.txt

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

22

3-
(1998-03-21)
3+
(1998-04-07)
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.1 Installation Program
74+
PostreSQL v6.3.2 Installation Program
7575

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

8080
EOT

0 commit comments

Comments
 (0)