11TODO list for PostgreSQL
22========================
3- Last updated:Wed May30 16:17:28 EDT 2001
3+ Last updated:Thu May31 10:48:15 EDT 2001
44
55Current maintainer:Bruce Momjian (pgman@candle.pha.pa.us)
66
@@ -84,7 +84,7 @@ MULTILANGUAGE SUPPORT
8484VIEWS
8585
8686* Automatically create rules on views so they are updateable, per SQL92
87- * Add the functionality for"with check option" clause ofcreate view
87+ * Add the functionality forWITH CHECK OPTION clause ofCREATE VIEW
8888* Allow NOTIFY in rules involving conditionals
8989* Evaluate INSERT rules at end of query, rather than beginning
9090
@@ -150,7 +150,7 @@ COMMANDS
150150* cluster all tables at once
151151* prevent lose of indexes, permissions, inheritance
152152* Automatically keep clustering on a table
153- * Keep statistics about clustering, perhaps during VACUUM ANALYZE
153+ *- Keep statistics about clustering
154154 [optimizer]
155155* COPY
156156* Allow specification of column names
@@ -201,13 +201,15 @@ REFERENTIAL INTEGRITY
201201* INSERT & UPDATE/DELETE in transaction of primary key fails with
202202 deferredTriggerGetPreviousEvent or "change violation" [foreign]
203203* Make constraints clearer in dump file
204+ * Make foreign keys easier to identify
204205* Change foreign key constraint for array -> element to mean element
205206 in array
206207* Automatically drop constraints/functions when object is dropped
207208
208209TRANSACTIONS
209210
210- * Implement UNDO using transaction log
211+ * Implement UNDO using transaction log, overwriting storage manager?
212+ [vacuum] (Vadim)
211213* Allow autocommit so always in a transaction block
212214* Overhaul bufmgr/lockmgr/transaction manager
213215* Allow nested transactions (Vadim)
@@ -229,7 +231,6 @@ MISCELLANEOUS
229231* Create a background process for each database that runs while
230232 database is idle, finding superceeded rows, gathering stats and
231233 vacuuming (Tom)
232- * WAL UNDO, overwriting storage manager? [vacuum] (Vadim)
233234* Populate backend status area and write program to dump status data (Jan)
234235* -Put sort files in their own directory (Bruce)
235236* Show location of syntax error in query [yacc]