Remove item, not sure what it refers to:
authorBruce Momjian
Sat, 23 Apr 2005 21:43:24 +0000 (21:43 +0000)
committerBruce Momjian
Sat, 23 Apr 2005 21:43:24 +0000 (21:43 +0000)
< * Allow ORDER BY ... LIMIT 1 to select high/low value without sort or
<   index using a sequential scan for highest/lowest values
<
<   If only one value is needed, there is no need to sort the entire
<   table. Instead a sequential scan could get the matching value.
<

doc/TODO
doc/src/FAQ/TODO.html

index f0e773cad7712b1292a8f85228b9d82401e8deff..97f5d5e41ea4b5c012266c9ca5aa0c9854cbcad1 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -2,7 +2,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Sat Apr 23 17:41:00 EDT 2005
+Last updated:      Sat Apr 23 17:43:18 EDT 2005
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -858,12 +858,6 @@ Optimizer / Executor
 ====================
 
 * Add missing optimizer selectivities for date, r-tree, etc
-* Allow ORDER BY ... LIMIT 1 to select high/low value without sort or
-  index using a sequential scan for highest/lowest values
-
-  If only one value is needed, there is no need to sort the entire
-  table. Instead a sequential scan could get the matching value.
-
 * Precompile SQL functions to avoid overhead
 * Create utility to compute accurate random_page_cost value
 * Improve ability to display optimizer analysis using OPTIMIZER_DEBUG
index 978e57a626781cfb568b4f35f1cd17845e20e099..e6daf7966201b9074f46daff3bc68f614b13db44 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Sat Apr 23 17:41:00 EDT 2005
+Last updated:           Sat Apr 23 17:43:18 EDT 2005
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -782,11 +782,6 @@ first.
 
 
       
  • Add missing optimizer selectivities for date, r-tree, etc
  • -  
  • Allow ORDER BY ... LIMIT 1 to select high/low value without sort or
  • -  index using a sequential scan for highest/lowest values
    -

      If only one value is needed, there is no need to sort the entire

    -  table. Instead a sequential scan could get the matching value.
    -

       
  • Precompile SQL functions to avoid overhead
  •    
  • Create utility to compute accurate random_page_cost value
  •    
  • Improve ability to display optimizer analysis using OPTIMIZER_DEBUG