aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-06-03 20:29:57 +0000
committerBruce Momjian <bruce@momjian.us>1997-06-03 20:29:57 +0000
commit0f5d1a7fee85f22eb0ae9ecd5b760e183816a6d5 (patch)
treeecb0ff0f2a757fd4e47f7929bdc72e75eb969dfb
parent21437b747beefdaf09496f6844f6709df67978ff (diff)
downloadpostgresql-0f5d1a7fee85f22eb0ae9ecd5b760e183816a6d5.tar.gz
postgresql-0f5d1a7fee85f22eb0ae9ecd5b760e183816a6d5.zip
Update TODO for release
-rw-r--r--HISTORY22
-rw-r--r--doc/TODO27
2 files changed, 47 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index b36bdea06e1..389a278e413 100644
--- a/HISTORY
+++ b/HISTORY
@@ -22,6 +22,17 @@ fix join clauses for multiple tables(Vadim)
fix hash, hashjoin for arrays(Vadim)
fix btree for abstime type(Vadim)
large object fixes(Raymond)
+fix buffer leak in hash indices (Vadim)
+fix rtree for use in inner scan (Vadim)
+fix gist for use in inner scan, cleanups (Vadim, Andrea)
+avoid unnecessary local buffers allocation (Vadim, Massimo)
+fix local buffers leak in transaction aborts (Vadim)
+fix file manager memmory leaks, cleanups (Vadim, Massimo)
+fix storage manager memmory leaks (Vadim)
+fix btree duplicates handling (Vadim)
+fix deleted tuples re-incarnation caused by vacuum (Vadim)
+fix SELECT varchar()/char() INTO TABLE made zero-length fields(Bruce)
+many psql, pg_dump, and libpq memory leaks fixed using Purify (Igor)
Enhancements
------------
@@ -60,6 +71,15 @@ more comparison operators for sorting types(Thomas)
new conversion functions(Thomas)
new more compact btree format(Vadim)
allow pg_dumpall to preserve database ownership(Bruce)
+new SET GEQO=# and R_PLANS variable(Vadim)
+old (!GEQO) optimizer can use right-sided plans (Vadim)
+typechecking improvement in SQL parser(Bruce)
+new SET, SHOW, RESET commands(Thomas,Vadim)
+new \connect database USER option
+new destroydb -i option (Igor)
+new \dt and \di psql commands (Darren)
+SELECT "\n" now escapes newline (A. Duursma)
+new geometry conversion functions from old format (Thomas)
Source tree changes
-------------------
@@ -77,6 +97,8 @@ now works with eBones, international Kerberos(Jun)
more shared library support
c++ include file cleanup(Bruce)
warn about buggy flex(Bruce)
+DG-UX, Ultrix, Irix, AIX portability fixes
+
PostgreSQL 6.0 Wed Jan 29 00:19:54 EST 1997
-------------------------------------------------------------
diff --git a/doc/TODO b/doc/TODO
index 50a585d2025..a26294604ff 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,7 +1,7 @@
====================================================
TODO list (FAQ) for PostgreSQL
====================================================
-last updated: Wed May 14 17:51:33 EDT 1997
+last updated: Tue Jun 3 16:22:07 EDT 1997
current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
@@ -20,6 +20,7 @@ Developers who have claimed items are:
Darren is Darren King <darrenk@insightdist.com>
Edmund is Edmund Mergl <E.Mergl@bawue.de>
Erich Stamberger <eberger@gewi.kfunigraz.ac.at>
+ Igor is Igor <igor@sba.miami.edu>
Jun is Jun Kuwamura <juk@rccm.co.jp>
Kurt is "Kurt J. Lidl" <lidl@va.pubnix.com>
Martin is Martin S. Utesch <utesch@aut.tu-freiberg.de>
@@ -53,8 +54,9 @@ INSERT INTO ... SELECT DISTINCT ... generates error on DISTINCT
pg_database.datdba is oid, should be int4
fix array diffs in regression test
can lo_export()/lo_import() read/write anywhere, causing a security problem?
-SELECT ... INTO TABLE ... with varchar()/char() types have zero-length fields
+-SELECT ... INTO TABLE ... with varchar()/char() types have zero-length fields
Fix UPDATE key_table SET keyval=max(reftab.NUM)+1 WHERE tblname='reftab'
+SELECT COUNT(*) FROM TAB1, TAB2 fails
ENHANCEMENTS
------------
@@ -197,6 +199,17 @@ fix join clauses for multiple tables(Vadim)
fix hash, hashjoin for arrays(Vadim)
fix btree for abstime type(Vadim)
large object fixes(Raymond)
+fix buffer leak in hash indices (Vadim)
+fix rtree for use in inner scan (Vadim)
+fix gist for use in inner scan, cleanups (Vadim, Andrea)
+avoid unnecessary local buffers allocation (Vadim, Massimo)
+fix local buffers leak in transaction aborts (Vadim)
+fix file manager memmory leaks, cleanups (Vadim, Massimo)
+fix storage manager memmory leaks (Vadim)
+fix btree duplicates handling (Vadim)
+fix deleted tuples re-incarnation caused by vacuum (Vadim)
+fix SELECT varchar()/char() INTO TABLE made zero-length fields(Bruce)
+many psql, pg_dump, and libpq memory leaks fixed using Purify (Igor)
Enhancements
------------
@@ -235,6 +248,15 @@ more comparison operators for sorting types(Thomas)
new conversion functions(Thomas)
new more compact btree format(Vadim)
allow pg_dumpall to preserve database ownership(Bruce)
+new SET GEQO=# and R_PLANS variable(Vadim)
+old (!GEQO) optimizer can use right-sided plans (Vadim)
+typechecking improvement in SQL parser(Bruce)
+new SET, SHOW, RESET commands(Thomas,Vadim)
+new \connect database USER option
+new destroydb -i option (Igor)
+new \dt and \di psql commands (Darren)
+SELECT "\n" now escapes newline (A. Duursma)
+new geometry conversion functions from old format (Thomas)
Source tree changes
-------------------
@@ -252,3 +274,4 @@ now works with eBones, international Kerberos(Jun)
more shared library support
c++ include file cleanup(Bruce)
warn about buggy flex(Bruce)
+DG-UX, Ultrix, Irix, AIX portability fixes