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

Commit 8255fc1

Browse files
committed
Update HISTORY/release with current changes.
1 parent 6efa783 commit 8255fc1

File tree

2 files changed

+49
-9
lines changed

2 files changed

+49
-9
lines changed

HISTORY

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Migration to v7.1
4343

4444

4545

46-
Last updated from CVS logs: 2000-12-11
46+
Last updated from CVS logs: 2001-01-29
4747

4848
Bug Fixes
4949
---------
@@ -86,6 +86,13 @@ Fix INSERT...SELECT with rules (Tom)
8686
Fix FOR UPDATE inside views and subselects (Tom)
8787
Fix OVERLAPS operators conform to SQL92 spec regarding NULLs (Tom)
8888
Fix lpad() and rpad() to handle length less than input string (Tom)
89+
Fix use of NOTIFY in some rules (Tom)
90+
Overhaul btree code (Tom)
91+
Fix NOT NULL use in Pl/PgSQL variables (Tom)
92+
Overhaul GIST code (Oleg)
93+
Fix CLUSTER to preserve constraints and column default (Tom)
94+
Improved deadlock detection handling (Tom)
95+
Allow multiple SERIAL columns in a table (Tom)
8996

9097
Enhancements
9198
------------
@@ -152,6 +159,13 @@ Allow postmaster to listen on a specific IP address (David J. MacKenzie)
152159
Allow socket path name to be specified in hostname by using leading slash
153160
(David J. MacKenzie)
154161
Allow CREATE DATABASE to specify template database (Tom)
162+
New pg_dump --globals-only option (Peter E)
163+
New utility to convert MySQL schema dumps to SQL92 and PostgreSQL (Thomas)
164+
New /contrib/rserv replication toolkit (Vadim)
165+
New file format for COPY BINARY (Tom)
166+
New /contrib/oid2name to map numeric files to table names (B Palmer)
167+
New "idle in transaction" ps status message (Marc)
168+
Update to pgaccess 0.98.7 (Constantin Teodorescu)
155169

156170
Types
157171
-----
@@ -162,6 +176,9 @@ New int2 and int8 comparison operators (Tom)
162176
New BIT and BIT VARYING types (Adriaan Joubert, Tom)
163177
CHAR() no longer faster than VARCHAR() because of TOAST (Tom)
164178
New GIST seg/cube examples (Gene Selkov)
179+
Improved round(numeric) handling (Tom)
180+
Fix CIDR output formatting (Tom)
181+
New CIDR abbrev() function (Tom)
165182

166183
Performance
167184
-----------
@@ -204,6 +221,9 @@ Add IBM S/390 support (Neale Ferguson)
204221
Moved macmanuf to /contrib (Larry Rosenman)
205222
Syslog improvements (Larry Rosenman)
206223
New template0 database that contains no user additions(Tom)
224+
New /contrib/cube and /contrib/seg GIST sample code (Gene Selkov)
225+
Allow *BSD's libedit instead of readline (Peter)
226+
Improved assembly language source code format (Bruce)
207227

208228

209229

doc/src/sgml/release.sgml

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.74 2001/01/27 11:12:53 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.75 2001/01/29 18:58:45 momjian Exp $
33
-->
44

55
<appendix id="release">
@@ -119,7 +119,7 @@ Subqueries in FROM are now supported.
119119

120120
<para>
121121
<programlisting>
122-
Last updated from CVS logs: 2000-12-11
122+
Last updated from CVS logs: 2001-01-29
123123

124124
Bug Fixes
125125
---------
@@ -162,14 +162,21 @@ Fix INSERT...SELECT with rules (Tom)
162162
Fix FOR UPDATE inside views and subselects (Tom)
163163
Fix OVERLAPS operators conform to SQL92 spec regarding NULLs (Tom)
164164
Fix lpad() and rpad() to handle length less than input string (Tom)
165+
Fix use of NOTIFY in some rules (Tom)
166+
Overhaul btree code (Tom)
167+
Fix NOT NULL use in Pl/PgSQL variables (Tom)
168+
Overhaul GIST code (Oleg)
169+
Fix CLUSTER to preserve constraints and column default (Tom)
170+
Improved deadlock detection handling (Tom)
171+
Allow multiple SERIAL columns in a table (Tom)
165172

166173
Enhancements
167174
------------
168175
Add OUTER JOINs (Tom)
169176
Function manager overhaul (Tom)
170177
Allow ALTER TABLE RENAME on indexes(Tom)
171178
Improve CLUSTER(Tom)
172-
Improve ps status display for more platforms (Peter E)
179+
Improve ps status display for more platforms(Marc)
173180
Improve CREATE FUNCTION failure message(Ross)
174181
JDBC improvements (Peter, Travis Bauer, Christopher Cain, William Webber,
175182
Gunnar)
@@ -184,12 +191,12 @@ ODBC cleanups/improvements (Nick Gorham, Stephan Szabo, Zoltan Kovacs,
184191
Michael Fork)
185192
Allow renaming of temp tables (Tom)
186193
Overhaul memory manager contexts (Tom)
187-
pg_dumpall uses CREATE USER or CREATE GROUP rather using COPY (Peter E)
194+
pg_dump uses CREATE USER or CREATE GROUP rather using COPY (Peter E)
188195
Overhaul pg_dump (Philip Warner)
189-
Allow pg_hba.conf secondary password file to specify only username (Peter E)
196+
Allow pg_hba.conf secondary password file to specify username (Peter E)
190197
Allow TEMPORARY or TEMP keyword when creating temporary tables (Bruce)
191198
New memory leak checker (Karel)
192-
New SET SESSION CHARACTERISTICS (Thomas)
199+
New SET SESSION CHARACTERISTICS and SET DefaultXactIsoLevel (Thomas, Peter E)
193200
Allow nested block comments (Thomas)
194201
Add WITHOUT TIME ZONE type qualifier (Thomas)
195202
New ALTER TABLE ADD CONSTRAINT (Stephan)
@@ -228,16 +235,26 @@ Allow postmaster to listen on a specific IP address (David J. MacKenzie)
228235
Allow socket path name to be specified in hostname by using leading slash
229236
(David J. MacKenzie)
230237
Allow CREATE DATABASE to specify template database (Tom)
238+
New pg_dump --globals-only option (Peter E)
239+
New utility to convert MySQL schema dumps to SQL92 and PostgreSQL (Thomas)
240+
New /contrib/rserv replication toolkit (Vadim)
241+
New file format for COPY BINARY (Tom)
242+
New /contrib/oid2name to map numeric files to table names (B Palmer)
243+
New "idle in transaction" ps status message (Marc)
244+
Update to pgaccess 0.98.7 (Constantin Teodorescu)
231245

232246
Types
233247
-----
234248
Fix INET/CIDR type ordering and add new functions (Tom)
235249
Make OID behave as an unsigned type (Tom)
236250
Allow BIGINT as synonym for INT8 (Peter E)
237251
New int2 and int8 comparison operators (Tom)
238-
New BIT and BIT VARYING types (Adriaan Joubert, Tom, Peter E)
252+
New BIT and BIT VARYING types (Adriaan Joubert, Tom)
239253
CHAR() no longer faster than VARCHAR() because of TOAST (Tom)
240254
New GIST seg/cube examples (Gene Selkov)
255+
Improved round(numeric) handling (Tom)
256+
Fix CIDR output formatting (Tom)
257+
New CIDR abbrev() function (Tom)
241258

242259
Performance
243260
-----------
@@ -253,7 +270,7 @@ Source Code
253270
-----------
254271
New function manager call conventions (Tom)
255272
SGI portability fixes (David Kaelbling)
256-
New configure --enable-syslog option (Peter E)
273+
New configure --enable-syslog option (Marc)
257274
New BSDI README (Bruce)
258275
configure script moved to top level, not /src (Peter E)
259276
Makefile/configuration/compilation overhaul (Peter E)
@@ -280,6 +297,9 @@ Add IBM S/390 support (Neale Ferguson)
280297
Moved macmanuf to /contrib (Larry Rosenman)
281298
Syslog improvements (Larry Rosenman)
282299
New template0 database that contains no user additions(Tom)
300+
New /contrib/cube and /contrib/seg GIST sample code (Gene Selkov)
301+
Allow *BSD's libedit instead of readline (Peter)
302+
Improved assembly language source code format (Bruce)
283303
</programlisting>
284304
</para>
285305
</sect2>

0 commit comments

Comments
 (0)