]> granicus.if.org Git - postgresql/commitdiff
Mark IN performance problem as fixed in 7.4
authorBruce Momjian <bruce@momjian.us>
Sun, 26 Jan 2003 02:43:55 +0000 (02:43 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 26 Jan 2003 02:43:55 +0000 (02:43 +0000)
doc/FAQ

diff --git a/doc/FAQ b/doc/FAQ
index 78c113de9e0557f17ea974e15d792beba166e190..7ad4800e4ef8c8b4b9177480af70f00122fda501 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
 
                 Frequently Asked Questions (FAQ) for PostgreSQL
                                        
-   Last updated: Fri Jan 17 12:15:04 EST 2003
+   Last updated: Sat Jan 25 21:43:37 EST 2003
    
    Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
    
@@ -1015,8 +1015,8 @@ CREATE TABLE test (x int, modtime timestamp DEFAULT CURRENT_TIMESTAMP );
     FROM tab
     WHERE EXISTS (SELECT subcol FROM subtab WHERE subcol = col);
 
-   For this to be fast, subcol should be an indexed column. We hope to
-   fix this limitation in a future release.
+   For this to be fast, subcol should be an indexed column. This
+   preformance problem will be fixed in 7.4.
    
     4.23) How do I perform an outer join?