mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
Re-add Peter E's changes.
This commit is contained in:
parent
503f042cd7
commit
930b283a89
20
HISTORY
20
HISTORY
@ -98,10 +98,10 @@ Enhancements
|
||||
------------
|
||||
Add OUTER JOINs (Tom)
|
||||
Function manager overhaul (Tom)
|
||||
Allow ALTER TABLE RENAME on indexes(Tom)
|
||||
Improve CLUSTER(Tom)
|
||||
Improve ps status display for more platforms(Marc)
|
||||
Improve CREATE FUNCTION failure message(Ross)
|
||||
Allow ALTER TABLE RENAME on indexes (Tom)
|
||||
Improve CLUSTER (Tom)
|
||||
Improve ps status display for more platforms (Peter E, Marc)
|
||||
Improve CREATE FUNCTION failure message (Ross)
|
||||
JDBC improvements (Peter, Travis Bauer, Christopher Cain, William Webber,
|
||||
Gunnar)
|
||||
Grand Unified Configuration scheme/GUC. Many options can now be set in
|
||||
@ -115,12 +115,12 @@ ODBC cleanups/improvements (Nick Gorham, Stephan Szabo, Zoltan Kovacs,
|
||||
Michael Fork)
|
||||
Allow renaming of temp tables (Tom)
|
||||
Overhaul memory manager contexts (Tom)
|
||||
pg_dump uses CREATE USER or CREATE GROUP rather using COPY (Peter E)
|
||||
pg_dumpall uses CREATE USER or CREATE GROUP rather using COPY (Peter E)
|
||||
Overhaul pg_dump (Philip Warner)
|
||||
Allow pg_hba.conf secondary password file to specify username (Peter E)
|
||||
Allow pg_hba.conf secondary password file to specify only username (Peter E)
|
||||
Allow TEMPORARY or TEMP keyword when creating temporary tables (Bruce)
|
||||
New memory leak checker (Karel)
|
||||
New SET SESSION CHARACTERISTICS and SET DefaultXactIsoLevel (Thomas, Peter E)
|
||||
New SET SESSION CHARACTERISTICS (Thomas)
|
||||
Allow nested block comments (Thomas)
|
||||
Add WITHOUT TIME ZONE type qualifier (Thomas)
|
||||
New ALTER TABLE ADD CONSTRAINT (Stephan)
|
||||
@ -173,7 +173,7 @@ Fix INET/CIDR type ordering and add new functions (Tom)
|
||||
Make OID behave as an unsigned type (Tom)
|
||||
Allow BIGINT as synonym for INT8 (Peter E)
|
||||
New int2 and int8 comparison operators (Tom)
|
||||
New BIT and BIT VARYING types (Adriaan Joubert, Tom)
|
||||
New BIT and BIT VARYING types (Adriaan Joubert, Tom, Peter E)
|
||||
CHAR() no longer faster than VARCHAR() because of TOAST (Tom)
|
||||
New GIST seg/cube examples (Gene Selkov)
|
||||
Improved round(numeric) handling (Tom)
|
||||
@ -194,7 +194,7 @@ Source Code
|
||||
-----------
|
||||
New function manager call conventions (Tom)
|
||||
SGI portability fixes (David Kaelbling)
|
||||
New configure --enable-syslog option (Marc)
|
||||
New configure --enable-syslog option (Peter E)
|
||||
New BSDI README (Bruce)
|
||||
configure script moved to top level, not /src (Peter E)
|
||||
Makefile/configuration/compilation overhaul (Peter E)
|
||||
@ -220,7 +220,7 @@ Overhaul shared memory segments (Tom)
|
||||
Add IBM S/390 support (Neale Ferguson)
|
||||
Moved macmanuf to /contrib (Larry Rosenman)
|
||||
Syslog improvements (Larry Rosenman)
|
||||
New template0 database that contains no user additions(Tom)
|
||||
New template0 database that contains no user additions (Tom)
|
||||
New /contrib/cube and /contrib/seg GIST sample code (Gene Selkov)
|
||||
Allow *BSD's libedit instead of readline (Peter)
|
||||
Improved assembly language source code format (Bruce)
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.75 2001/01/29 18:58:45 momjian Exp $
|
||||
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.76 2001/02/03 21:50:45 momjian Exp $
|
||||
-->
|
||||
|
||||
<appendix id="release">
|
||||
@ -174,10 +174,10 @@ Enhancements
|
||||
------------
|
||||
Add OUTER JOINs (Tom)
|
||||
Function manager overhaul (Tom)
|
||||
Allow ALTER TABLE RENAME on indexes(Tom)
|
||||
Improve CLUSTER(Tom)
|
||||
Improve ps status display for more platforms(Marc)
|
||||
Improve CREATE FUNCTION failure message(Ross)
|
||||
Allow ALTER TABLE RENAME on indexes (Tom)
|
||||
Improve CLUSTER (Tom)
|
||||
Improve ps status display for more platforms (Peter E, Marc)
|
||||
Improve CREATE FUNCTION failure message (Ross)
|
||||
JDBC improvements (Peter, Travis Bauer, Christopher Cain, William Webber,
|
||||
Gunnar)
|
||||
Grand Unified Configuration scheme/GUC. Many options can now be set in
|
||||
@ -191,12 +191,12 @@ ODBC cleanups/improvements (Nick Gorham, Stephan Szabo, Zoltan Kovacs,
|
||||
Michael Fork)
|
||||
Allow renaming of temp tables (Tom)
|
||||
Overhaul memory manager contexts (Tom)
|
||||
pg_dump uses CREATE USER or CREATE GROUP rather using COPY (Peter E)
|
||||
pg_dumpall uses CREATE USER or CREATE GROUP rather using COPY (Peter E)
|
||||
Overhaul pg_dump (Philip Warner)
|
||||
Allow pg_hba.conf secondary password file to specify username (Peter E)
|
||||
Allow pg_hba.conf secondary password file to specify only username (Peter E)
|
||||
Allow TEMPORARY or TEMP keyword when creating temporary tables (Bruce)
|
||||
New memory leak checker (Karel)
|
||||
New SET SESSION CHARACTERISTICS and SET DefaultXactIsoLevel (Thomas, Peter E)
|
||||
New SET SESSION CHARACTERISTICS (Thomas)
|
||||
Allow nested block comments (Thomas)
|
||||
Add WITHOUT TIME ZONE type qualifier (Thomas)
|
||||
New ALTER TABLE ADD CONSTRAINT (Stephan)
|
||||
@ -249,7 +249,7 @@ Fix INET/CIDR type ordering and add new functions (Tom)
|
||||
Make OID behave as an unsigned type (Tom)
|
||||
Allow BIGINT as synonym for INT8 (Peter E)
|
||||
New int2 and int8 comparison operators (Tom)
|
||||
New BIT and BIT VARYING types (Adriaan Joubert, Tom)
|
||||
New BIT and BIT VARYING types (Adriaan Joubert, Tom, Peter E)
|
||||
CHAR() no longer faster than VARCHAR() because of TOAST (Tom)
|
||||
New GIST seg/cube examples (Gene Selkov)
|
||||
Improved round(numeric) handling (Tom)
|
||||
@ -270,7 +270,7 @@ Source Code
|
||||
-----------
|
||||
New function manager call conventions (Tom)
|
||||
SGI portability fixes (David Kaelbling)
|
||||
New configure --enable-syslog option (Marc)
|
||||
New configure --enable-syslog option (Peter E)
|
||||
New BSDI README (Bruce)
|
||||
configure script moved to top level, not /src (Peter E)
|
||||
Makefile/configuration/compilation overhaul (Peter E)
|
||||
@ -296,7 +296,7 @@ Overhaul shared memory segments (Tom)
|
||||
Add IBM S/390 support (Neale Ferguson)
|
||||
Moved macmanuf to /contrib (Larry Rosenman)
|
||||
Syslog improvements (Larry Rosenman)
|
||||
New template0 database that contains no user additions(Tom)
|
||||
New template0 database that contains no user additions (Tom)
|
||||
New /contrib/cube and /contrib/seg GIST sample code (Gene Selkov)
|
||||
Allow *BSD's libedit instead of readline (Peter)
|
||||
Improved assembly language source code format (Bruce)
|
||||
|
Loading…
Reference in New Issue
Block a user