aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/TODO4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/TODO b/doc/TODO
index bd39c3ee3fe..948987f274d 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,6 +1,6 @@
TODO list for PostgreSQL
========================
-Last updated: Fri Oct 12 12:29:28 EDT 2001
+Last updated: Fri Oct 12 13:22:57 EDT 2001
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -125,7 +125,7 @@ INDEXES
* Add btree index support for reltime, tinterval, regproc
* Add rtree index support for line, lseg, path, point
* Use indexes for min() and max() or convert to SELECT col FROM tab ORDER
- BY col DESC LIMIT 1
+ BY col DESC LIMIT 1 if appropriate index exists and WHERE clause acceptible
* Use index to restrict rows returned by multi-key index when used with
non-consecutive keys or OR clauses, so fewer heap accesses
* Allow SELECT * FROM tab WHERE int2col = 4 to use int2col index, int8,