aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-02-17 18:48:29 +0000
committerBruce Momjian <bruce@momjian.us>2003-02-17 18:48:29 +0000
commita8ed5dc069fae4538828f8801fa826a11529ff9e (patch)
treefd214b3f4dc8d625a03a0b81f42f8f3da92a912d
parentfa4574e3a35dc1f2fa9d77dd420077351d18e6f8 (diff)
downloadpostgresql-a8ed5dc069fae4538828f8801fa826a11529ff9e.tar.gz
postgresql-a8ed5dc069fae4538828f8801fa826a11529ff9e.zip
Update marks:
< o Allow CLUSTER to cluster all tables (Alvaro Herrera) > o -Allow CLUSTER to cluster all tables (Alvaro Herrera) 243c243 < * Allow pg_dump to dump a specific schema (Neil Conway) > * -Allow pg_dump to dump a specific schema (Neil Conway) 398c398 < * Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom) > * -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
-rw-r--r--doc/TODO8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/TODO b/doc/TODO
index 5f898264332..c90fba89338 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,6 +1,6 @@
TODO list for PostgreSQL
========================
-Last updated: Mon Feb 17 13:46:07 EST 2003
+Last updated: Mon Feb 17 13:48:20 EST 2003
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -181,7 +181,7 @@ Commands
* CLUSTER
o Automatically maintain clustering on a table
- o Allow CLUSTER to cluster all tables (Alvaro Herrera)
+ o -Allow CLUSTER to cluster all tables (Alvaro Herrera)
* COPY
o Allow dump/load of CSV format
@@ -240,7 +240,7 @@ Clients
* Allow psql to show transaction status if backend protocol changes made
* Add XML interface: psql, pg_dump, COPY, separate server (?)
* -Add schema, cast, and conversion backslash commands to psql (Christopher)
-* Allow pg_dump to dump a specific schema (Neil Conway)
+* -Allow pg_dump to dump a specific schema (Neil Conway)
* Allow psql to do table completion for SELECT * FROM schema_part and
table completion for SELECT * FROM schema_name.
@@ -395,7 +395,7 @@ Optimizer / Executor
* Allow Subplans to use efficient joins(hash, merge) with upper variable
* -Add hash for evaluating GROUP BY aggregates (Tom)
* Allow merge and hash joins on expressions not just simple variables (Tom)
-* Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
+* -Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS (Tom)
* Missing optimizer selectivities for date, r-tree, etc. [optimizer]
* Allow ORDER BY ... LIMIT to select top values without sort or index
using a sequential scan for highest/lowest values (Oleg)