diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-02-22 05:42:44 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-02-22 05:42:44 +0000 |
commit | 4633ee213d553341bc7d88712a436c3925608fb7 (patch) | |
tree | dfc719585b921afc541e21edee6d25adfb065f03 | |
parent | fb4c1c285fbb40760b2b44f874c29ff4a2faca6f (diff) | |
download | postgresql-4633ee213d553341bc7d88712a436c3925608fb7.tar.gz postgresql-4633ee213d553341bc7d88712a436c3925608fb7.zip |
Modify:
> * Inline simple SQL functions to avoid overhead (Tom)
> * Precompile SQL functions to avoid overhead (Neil Conway)
-rw-r--r-- | doc/TODO | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ TODO list for PostgreSQL ======================== -Last updated: Fri Feb 22 00:21:53 EST 2002 +Last updated: Fri Feb 22 00:41:52 EST 2002 Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) @@ -420,7 +420,8 @@ OPTIMIZER / EXECUTOR * 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 -* Inline simple SQL functions to avoid overhead (Neil Conway) +* Inline simple SQL functions to avoid overhead (Tom) +* Precompile SQL functions to avoid overhead (Neil Conway) MISCELLANEOUS |