diff options
| author | Neil Conway <neilc@samurai.com> | 2007-10-10 21:48:22 +0000 |
|---|---|---|
| committer | Neil Conway <neilc@samurai.com> | 2007-10-10 21:48:22 +0000 |
| commit | f83a9303a6ee4256419309404483e40d6217d255 (patch) | |
| tree | 4210cafbff1b71bd1e5ccf08294f50267a1a990d /doc/src | |
| parent | 8230895313ae0b2376e2a319572683444c974cf6 (diff) | |
Minor correction for full-text search limitations docs.
Heikki Linnakangas.
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/textsearch.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/textsearch.sgml b/doc/src/sgml/textsearch.sgml index e199de642a2..8fbffe07c0e 100644 --- a/doc/src/sgml/textsearch.sgml +++ b/doc/src/sgml/textsearch.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.17 2007/09/14 13:21:30 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/textsearch.sgml,v 1.18 2007/10/10 21:48:22 neilc Exp $ --> <chapter id="textsearch"> <title id="textsearch-title">Full Text Search</title> @@ -2045,15 +2045,15 @@ EXPLAIN SELECT * FROM apod WHERE textsearch @@@ to_tsquery('supernovae:a'); <itemizedlist spacing="compact" mark="bullet"> <listitem> <para>The length of each lexeme must be less than 2K bytes </para> - </listitem> - <listitem> + </listitem> + <listitem> <para>The length of a <type>tsvector</type> (lexemes + positions) must be less than 1 megabyte </para> </listitem> <listitem> <para>The number of lexemes must be less than 2<superscript>64</superscript> </para> </listitem> <listitem> - <para>Positional information must be non-negative and less than 16,383 </para> + <para>Positional information must be greater than 0 and less than 16,383 </para> </listitem> <listitem> <para>No more than 256 positions per lexeme </para> |
