PostgreSQL TODO List
====================
-Last updated: Mon Sep 19 22:21:26 EDT 2005
+Last updated: Tue Sep 20 16:51:26 EDT 2005
The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html.
* Have EXPLAIN ANALYZE highlight poor optimizer estimates
* Consider using hash buckets to do DISTINCT, rather than sorting
- This would be beneficial when there are few distinct values.
+ This would be beneficial when there are few distinct values. This is
+ already used by GROUP BY.
* Log queries where the optimizer row estimates were dramatically
different from the number of rows actually found?
-* Allow DISTINCT to use hashing like GROUP BY
Miscellaneous Performance
-Last updated: Mon Sep 19 22:21:26 EDT 2005
+Last updated: Tue Sep 20 16:51:26 EDT 2005
The most recent version of this document can be viewed at
Improve ability to display optimizer analysis using OPTIMIZER_DEBUG
Have EXPLAIN ANALYZE highlight poor optimizer estimates
Consider using hash buckets to do DISTINCT, rather than sorting
-
This would be beneficial when there are few distinct values.
+
This would be beneficial when there are few distinct values. This is
+ already used by GROUP BY.
Log queries where the optimizer row estimates were dramatically
different from the number of rows actually found?
-
Allow DISTINCT to use hashing like GROUP BY