Update entry:
authorBruce Momjian
Tue, 12 Dec 2006 22:31:19 +0000 (22:31 +0000)
committerBruce Momjian
Tue, 12 Dec 2006 22:31:19 +0000 (22:31 +0000)
< * Have EXPLAIN ANALYZE highlight poor optimizer estimates
> * Have EXPLAIN ANALYZE issue NOTICE messages when the estimated and
>   actual row counts differ by a specified percentage

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

index 8d6483abafc79060906ef8470b7952d5a945476d..0a36c20f5315821f38af20eb6d11a15ac370570b 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -2,7 +2,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Tue Dec 12 15:34:25 EST 2006
+Last updated:      Tue Dec 12 17:31:12 EST 2006
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -1187,7 +1187,8 @@ Optimizer / Executor
 * Precompile SQL functions to avoid overhead
 * Create utility to compute accurate random_page_cost value
 * Improve ability to display optimizer analysis using OPTIMIZER_DEBUG
-* Have EXPLAIN ANALYZE highlight poor optimizer estimates
+* Have EXPLAIN ANALYZE issue NOTICE messages when the estimated and
+  actual row counts differ by a specified percentage
 * Consider using hash buckets to do DISTINCT, rather than sorting
 
   This would be beneficial when there are few distinct values.  This is
index ff2662bd0197c362849619c902a63e95d4416c48..16f1682da7205a78e2c37894a130c17f3aa94763 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Tue Dec 12 15:34:25 EST 2006
+Last updated:           Tue Dec 12 17:31:12 EST 2006
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -1073,7 +1073,8 @@ first.
   
  • Precompile SQL functions to avoid overhead
  •    
  • Create utility to compute accurate random_page_cost value
  •    
  • Improve ability to display optimizer analysis using OPTIMIZER_DEBUG
  • -  
  • Have EXPLAIN ANALYZE highlight poor optimizer estimates
  • +  
  • Have EXPLAIN ANALYZE issue NOTICE messages when the estimated and
  • +  actual row counts differ by a specified percentage
       
  • Consider using hash buckets to do DISTINCT, rather than sorting
  •  

      This would be beneficial when there are few distinct values.  This is

       already used by GROUP BY.