aboutsummaryrefslogtreecommitdiff
path: root/doc/FAQ
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-01-26 02:43:55 +0000
committerBruce Momjian <bruce@momjian.us>2003-01-26 02:43:55 +0000
commit4dc2bceef4706f7786d54a5d0dcf88fa5ed6780b (patch)
treec7b857f35b4b6401345db3ccac69f5afc38709db /doc/FAQ
parentdc87ea755c6b63088e77b523de09d87f4fd78471 (diff)
downloadpostgresql-4dc2bceef4706f7786d54a5d0dcf88fa5ed6780b.tar.gz
postgresql-4dc2bceef4706f7786d54a5d0dcf88fa5ed6780b.zip
Mark IN performance problem as fixed in 7.4
Diffstat (limited to 'doc/FAQ')
-rw-r--r--doc/FAQ6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/FAQ b/doc/FAQ
index 78c113de9e0..7ad4800e4ef 100644
--- 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?