Commit f83a9303 authored by Neil Conway's avatar Neil Conway

Minor correction for full-text search limitations docs.

Heikki Linnakangas.
parent 82308953
<!-- $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>
......@@ -2053,7 +2053,7 @@ EXPLAIN SELECT * FROM apod WHERE textsearch @@@ to_tsquery('supernovae:a');
<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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment