Skip to content

Commit a6ae2ae

Browse files
committed
update TODO
1 parent 461d222 commit a6ae2ae

File tree

4 files changed

+11
-173
lines changed

4 files changed

+11
-173
lines changed

HISTORY

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Fix permissions on lo_export()(Bruce)
3030
Fix unitialized reads of memory(Kurt)
3131
Fixed ALTER TABLE ... char(3) bug(Bruce)
3232
Fixed a few small memory leaks
33+
Fixed EXPLAIN handling of options and changed full_path option name
3334
Fixed output of group acl permissions
3435
Memory leaks (hunt and destroy with tools like Purify(Kurt)
3536
Minor improvements to rules system
@@ -43,12 +44,14 @@ Properly report errors when insert column names were not correct
4344
Psql \g filename now works(Bruce)
4445
Psql fixed problem with multiple statements on one line with multiple outputs
4546
Removed duplicate system oid's
47+
SELECT * INTO TABLE . GROUP/ORDER BY gives unlink error if table exists(Bruce)
4648
Several fixes for queries that crashed the backend
4749
Starting quote in insert string errors(Bruce)
4850
Submiting an empty query now returns empty status, not just " " query(Bruce)
4951

5052
Enhancements
5153
------------
54+
Add EXPLAIN manual page(Bruce)
5255
Add UNIQUE index capability(Dan)
5356
Add hostname/user level access control rather than just hostname and user
5457
Add synonym of != for <>(Bruce)
@@ -117,7 +120,6 @@ Restructured port-specific file locations(Bryan, Marc)
117120
Unused/uninialized variables corrected
118121

119122

120-
121123
Postgres95 1.02 Thu Aug 1 18:00:00 EDT 1996
122124
-------------------------------------------------------------
123125

MIGRATION_to_1.02.1

Lines changed: 0 additions & 73 deletions
This file was deleted.

doc/MIGRATION_1.0_to_1.01

Lines changed: 0 additions & 94 deletions
This file was deleted.

doc/TODO

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
====================================================
22
TODO list (FAQ) for PostgreSQL
33
====================================================
4-
last updated: Thu Dec 26 23:45:50 EST 1996
4+
last updated: Thu Jan 2 11:19:41 EST 1997
55

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

@@ -21,6 +21,7 @@ Developers who have claimed items are:
2121
Erich Stamberger <eberger@gewi.kfunigraz.ac.at>
2222
Kurt is "Kurt J. Lidl" <lidl@va.pubnix.com>
2323
Martin is Martin S. Utesch <utesch@aut.tu-freiberg.de>
24+
Thomas is Thomas Lockhart <tgl@mythos.jpl.nasa.gov>
2425
Vadim is "Vadim B. Mikheev" <vadim@sable.krasnoyarsk.su>
2526
Vivek is Vivek Khera <khera@kci.kciLink.com>
2627

@@ -34,13 +35,11 @@ Fix all NULL features
3435
allow psql to print nulls meaningfully
3536
Fix compile and security of Kerberos V code
3637
Dropping a table twice causes corruption, drop/create not rollback-able
37-
SUM aggregate on no rows or null value should return NULL, not zero
38+
-SUM aggregate on no rows or null value should return NULL, not zero(Thomas)
3839
SELECT on two tables where zero or one table in WHERE and target
3940
clause returns no rows
4041
fix system to use oid index using constant without cast to oid
4142
COUNT on VIEW always returns zero (maybe because there is no oid for views?)
42-
SELECT ... INTO TABLE ... GROUP BY ... generates unlink error
43-
if done three times with same INTO TABLE name (failure cleanup problem?)
4443
CREATE VIEW requires super-user priviledge
4544

4645
ENHANCEMENTS
@@ -117,6 +116,7 @@ Add STDDEV/VARIANCE() function for standard deviation computation/variance
117116
Add upper/lower functions
118117
-Add table/column/function discription table indexed by oid
119118
-make all identifiers case-insensitive(Bruce)
119+
add pg_type attribute to identify types that need length (bpchar, varchar)
120120

121121
PERFORMANCE
122122
-----------
@@ -138,14 +138,14 @@ Add FILLFACTOR to index creation
138138
Allow indexes to be used with OR clauses
139139
-Add column optimization statistics to vacuum(Bruce)
140140
-Change pg_attribute.attnvals name to attdispursion and change type float4
141+
update pg_statistic table to remove operator column
141142

142143
DOCUMENTATION
143144
-------------
144145
Update usermanual source
145146
remove time-travel in documentation(Bruce)
146147
added features used in grammer but not in docs, like :: and CAST
147148
add DECLARE manual pages
148-
add EXPLAIN manual page
149149

150150
PORTABILITY
151151
-----------
@@ -173,6 +173,7 @@ Fix permissions on lo_export()(Bruce)
173173
Fix unitialized reads of memory(Kurt)
174174
Fixed ALTER TABLE ... char(3) bug(Bruce)
175175
Fixed a few small memory leaks
176+
Fixed EXPLAIN handling of options and changed full_path option name
176177
Fixed output of group acl permissions
177178
Memory leaks (hunt and destroy with tools like Purify(Kurt)
178179
Minor improvements to rules system
@@ -186,12 +187,14 @@ Properly report errors when insert column names were not correct
186187
Psql \g filename now works(Bruce)
187188
Psql fixed problem with multiple statements on one line with multiple outputs
188189
Removed duplicate system oid's
190+
SELECT * INTO TABLE . GROUP/ORDER BY gives unlink error if table exists(Bruce)
189191
Several fixes for queries that crashed the backend
190192
Starting quote in insert string errors(Bruce)
191193
Submiting an empty query now returns empty status, not just " " query(Bruce)
192194

193195
Enhancements
194196
------------
197+
Add EXPLAIN manual page(Bruce)
195198
Add UNIQUE index capability(Dan)
196199
Add hostname/user level access control rather than just hostname and user
197200
Add synonym of != for <>(Bruce)

0 commit comments

Comments
 (0)