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

Commit 0f5d1a7

Browse files
committed
Update TODO for release
1 parent 21437b7 commit 0f5d1a7

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

HISTORY

+22
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ fix join clauses for multiple tables(Vadim)
2222
fix hash, hashjoin for arrays(Vadim)
2323
fix btree for abstime type(Vadim)
2424
large object fixes(Raymond)
25+
fix buffer leak in hash indices (Vadim)
26+
fix rtree for use in inner scan (Vadim)
27+
fix gist for use in inner scan, cleanups (Vadim, Andrea)
28+
avoid unnecessary local buffers allocation (Vadim, Massimo)
29+
fix local buffers leak in transaction aborts (Vadim)
30+
fix file manager memmory leaks, cleanups (Vadim, Massimo)
31+
fix storage manager memmory leaks (Vadim)
32+
fix btree duplicates handling (Vadim)
33+
fix deleted tuples re-incarnation caused by vacuum (Vadim)
34+
fix SELECT varchar()/char() INTO TABLE made zero-length fields(Bruce)
35+
many psql, pg_dump, and libpq memory leaks fixed using Purify (Igor)
2536

2637
Enhancements
2738
------------
@@ -60,6 +71,15 @@ more comparison operators for sorting types(Thomas)
6071
new conversion functions(Thomas)
6172
new more compact btree format(Vadim)
6273
allow pg_dumpall to preserve database ownership(Bruce)
74+
new SET GEQO=# and R_PLANS variable(Vadim)
75+
old (!GEQO) optimizer can use right-sided plans (Vadim)
76+
typechecking improvement in SQL parser(Bruce)
77+
new SET, SHOW, RESET commands(Thomas,Vadim)
78+
new \connect database USER option
79+
new destroydb -i option (Igor)
80+
new \dt and \di psql commands (Darren)
81+
SELECT "\n" now escapes newline (A. Duursma)
82+
new geometry conversion functions from old format (Thomas)
6383

6484
Source tree changes
6585
-------------------
@@ -77,6 +97,8 @@ now works with eBones, international Kerberos(Jun)
7797
more shared library support
7898
c++ include file cleanup(Bruce)
7999
warn about buggy flex(Bruce)
100+
DG-UX, Ultrix, Irix, AIX portability fixes
101+
80102

81103
PostgreSQL 6.0 Wed Jan 29 00:19:54 EST 1997
82104
-------------------------------------------------------------

doc/TODO

+25-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
====================================================
22
TODO list (FAQ) for PostgreSQL
33
====================================================
4-
last updated: Wed May 14 17:51:33 EDT 1997
4+
last updated: Tue Jun 3 16:22:07 EDT 1997
55

66
current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
77

@@ -20,6 +20,7 @@ Developers who have claimed items are:
2020
Darren is Darren King <darrenk@insightdist.com>
2121
Edmund is Edmund Mergl <E.Mergl@bawue.de>
2222
Erich Stamberger <eberger@gewi.kfunigraz.ac.at>
23+
Igor is Igor <igor@sba.miami.edu>
2324
Jun is Jun Kuwamura <juk@rccm.co.jp>
2425
Kurt is "Kurt J. Lidl" <lidl@va.pubnix.com>
2526
Martin is Martin S. Utesch <utesch@aut.tu-freiberg.de>
@@ -53,8 +54,9 @@ INSERT INTO ... SELECT DISTINCT ... generates error on DISTINCT
5354
pg_database.datdba is oid, should be int4
5455
fix array diffs in regression test
5556
can lo_export()/lo_import() read/write anywhere, causing a security problem?
56-
SELECT ... INTO TABLE ... with varchar()/char() types have zero-length fields
57+
-SELECT ... INTO TABLE ... with varchar()/char() types have zero-length fields
5758
Fix UPDATE key_table SET keyval=max(reftab.NUM)+1 WHERE tblname='reftab'
59+
SELECT COUNT(*) FROM TAB1, TAB2 fails
5860

5961
ENHANCEMENTS
6062
------------
@@ -197,6 +199,17 @@ fix join clauses for multiple tables(Vadim)
197199
fix hash, hashjoin for arrays(Vadim)
198200
fix btree for abstime type(Vadim)
199201
large object fixes(Raymond)
202+
fix buffer leak in hash indices (Vadim)
203+
fix rtree for use in inner scan (Vadim)
204+
fix gist for use in inner scan, cleanups (Vadim, Andrea)
205+
avoid unnecessary local buffers allocation (Vadim, Massimo)
206+
fix local buffers leak in transaction aborts (Vadim)
207+
fix file manager memmory leaks, cleanups (Vadim, Massimo)
208+
fix storage manager memmory leaks (Vadim)
209+
fix btree duplicates handling (Vadim)
210+
fix deleted tuples re-incarnation caused by vacuum (Vadim)
211+
fix SELECT varchar()/char() INTO TABLE made zero-length fields(Bruce)
212+
many psql, pg_dump, and libpq memory leaks fixed using Purify (Igor)
200213

201214
Enhancements
202215
------------
@@ -235,6 +248,15 @@ more comparison operators for sorting types(Thomas)
235248
new conversion functions(Thomas)
236249
new more compact btree format(Vadim)
237250
allow pg_dumpall to preserve database ownership(Bruce)
251+
new SET GEQO=# and R_PLANS variable(Vadim)
252+
old (!GEQO) optimizer can use right-sided plans (Vadim)
253+
typechecking improvement in SQL parser(Bruce)
254+
new SET, SHOW, RESET commands(Thomas,Vadim)
255+
new \connect database USER option
256+
new destroydb -i option (Igor)
257+
new \dt and \di psql commands (Darren)
258+
SELECT "\n" now escapes newline (A. Duursma)
259+
new geometry conversion functions from old format (Thomas)
238260

239261
Source tree changes
240262
-------------------
@@ -252,3 +274,4 @@ now works with eBones, international Kerberos(Jun)
252274
more shared library support
253275
c++ include file cleanup(Bruce)
254276
warn about buggy flex(Bruce)
277+
DG-UX, Ultrix, Irix, AIX portability fixes

0 commit comments

Comments
 (0)