diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-03 18:35:46 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-03 18:35:46 +0000 |
commit | 5ab02fd12321d1d742f1b288fda73af87abdf37c (patch) | |
tree | 3d45aa7be7128fca26e64b1d8f5b61bcbc2c4d1d /doc/src | |
parent | 26ac2171735f288a1380e173ffbb6af1a50183d8 (diff) | |
download | postgresql-5ab02fd12321d1d742f1b288fda73af87abdf37c.tar.gz postgresql-5ab02fd12321d1d742f1b288fda73af87abdf37c.zip |
Update FAQ.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/FAQ/FAQ.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index dbb656686ea..7e6e97b1fcd 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -14,7 +14,7 @@ alink="#0000ff"> <H1>Frequently Asked Questions (FAQ) for PostgreSQL</H1> - <P>Last updated: Sun Mar 3 11:02:16 EST 2002</P> + <P>Last updated: Sun Mar 3 13:35:39 EST 2002</P> <P>Current maintainer: Bruce Momjian (<A href= "mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR> @@ -903,7 +903,7 @@ <H4><A name="4.8">4.8</A>) My queries are slow or don't make use of the indexes. Why?</H4> Indexes are not automatically used by every query. Indexes are only - used if the table is larger than a minimum size, and the index + used if the table is larger than a minimum size, and the query selects only a small percentage of the rows in the table. This is because the random disk access caused by an index scan is sometimes slower than a straight read through the table, or sequential scan. |