aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-09-02 06:44:22 +0000
committerBruce Momjian <bruce@momjian.us>2002-09-02 06:44:22 +0000
commit0ee105bb4c447d29f55c6a9052e88ae9b3e5ab33 (patch)
treeba74003af77fcd0c91b30fc1a2f3ff8d59c069b6
parenta02780ffd08c1f1c9ad4129cc6d6fb19886a5064 (diff)
downloadpostgresql-0ee105bb4c447d29f55c6a9052e88ae9b3e5ab33.tar.gz
postgresql-0ee105bb4c447d29f55c6a9052e88ae9b3e5ab33.zip
Done:
> * -Add OR REPLACE clauses to non-FUNCTION object creation > * -Allow autocommit so always in a transaction block > * -Cache most recent query plan(s) (Neil) [prepare]
-rw-r--r--doc/TODO8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/TODO b/doc/TODO
index cbbb2074692..9a26215d636 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,6 +1,6 @@
TODO list for PostgreSQL
========================
-Last updated: Mon Sep 2 00:42:59 EDT 2002
+Last updated: Mon Sep 2 02:44:01 EDT 2002
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -182,7 +182,7 @@ Commands
* -Remove LIMIT #,# and force use LIMIT and OFFSET clauses in 7.3 (Bruce)
* Allow LIMIT/OFFSET to use expressions
* -Disallow TRUNCATE on tables that are involved in referential constraints
-* Add OR REPLACE clauses to non-FUNCTION object creation
+* -Add OR REPLACE clauses to non-FUNCTION object creation
* CREATE TABLE AS can not determine column lengths from expressions [atttypmod]
* Allow UPDATE to handle complex aggregates [update]
* -Prevent create/drop scripts from allowing extra args (Bruce)
@@ -361,7 +361,7 @@ Dependency Checking
Transactions
============
-* Allow autocommit so always in a transaction block
+* -Allow autocommit so always in a transaction block
* Overhaul bufmgr/lockmgr/transaction manager
* Allow savepoints / nested transactions [transactions]
@@ -394,7 +394,7 @@ Fsync
Cache
=====
-* Cache most recent query plan(s) (Neil) [prepare]
+* -Cache most recent query plan(s) (Neil) [prepare]
* Shared catalog cache, reduce lseek()'s by caching table size in shared area
* Add free-behind capability for large sequential scans (Bruce)
* Allow binding query args over FE/BE protocol