entire section, per Peter.
index 4c8c0c56cac74b8b62426cbbc7878cccda7f9d3d..67f96ce1f73697bdb449c478e2c0ceda82c6d939 100644 (file)
-<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.208 2007年08月29日 20:37:14 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.209 2007年08月31日 04:52:29 momjian Exp $ -->
<chapter id="datatype">
<title id="datatype-title">Data Types</title>
<variablelist>
- <indexterm zone="datatype-textsearch">
- <primary>tsvector</primary>
- </indexterm>
-
<varlistentry>
<term><firstterm>tsvector</firstterm></term>
<listitem>
<para>
- <type>tsvector</type> is a data type that represents a document and is
- optimized for full text searching. In the simplest case,
- <type>tsvector</type> is a sorted list of lexemes, so even without indexes
- full text searches perform better than standard <literal>~</literal> and
- <literal>LIKE</literal> operations:
+ <type>tsvector</type>
+ <indexterm><primary>tsvector</primary></indexterm> is a data type
+ that represents a document and is optimized for full text searching.
+ In the simplest case, <type>tsvector</type> is a sorted list of
+ lexemes, so even without indexes full text searches perform better
+ than standard <literal>~</literal> and <literal>LIKE</literal>
+ operations:
<programlisting>
SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector;
@@ -3355,19 +3353,17 @@ SELECT 'fat:1 rat:2'::tsvector || 'fat:1 cat:2'::tsvector;
</varlistentry>
- <indexterm zone="datatype-textsearch">
- <primary>tsquery</primary>
- </indexterm>
-
<varlistentry>
<term><firstterm>tsquery</firstterm></term>
<listitem>
<para>
- <type>tsquery</type> is a data type for textual queries which supports
- the boolean operators <literal>&</literal> (AND), <literal>|</literal> (OR),
- and parentheses. A <type>tsquery</type> consists of lexemes
- (optionally labeled by letters) with boolean operators in between:
+ <type>tsquery</type>
+ <indexterm><primary>tsquery</primary></indexterm> is a data type
+ for textual queries which supports the boolean operators
+ <literal>&</literal> (AND), <literal>|</literal> (OR), and
+ parentheses. A <type>tsquery</type> consists of lexemes (optionally
+ labeled by letters) with boolean operators in between:
<programlisting>
SELECT 'fat & cat'::tsquery;
index 6e56fa4335fe0d264ceeb4e8b7b4fef3f31cfc06..d3f831e81b4b0cc2b7ae852c6515c31ba2779f68 100644 (file)
-<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.390 2007年08月29日 21:51:45 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.391 2007年08月31日 04:52:29 momjian Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
@@ -7585,8 +7585,8 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
<varlistentry>
- <indexterm zone="functions-textsearch-search-operator">
- <primary>TSVECTOR @@ TSQUERY</primary>
+ <indexterm>
+ <primary>TSVECTOR @@ TSQUERY</primary>
</indexterm>
<term>
@@ -7620,8 +7620,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat'::tsvector @@ 'fat & cow'::
<varlistentry>
- <indexterm zone="functions-textsearch-search-operator">
- <primary>TEXT @@ TSQUERY</primary>
+ <indexterm>
+ <primary>TEXT @@ TSQUERY</primary>
</indexterm>
<term>
@@ -7652,8 +7652,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat'::text @@ 'cat & cow'::tsqu
<varlistentry>
- <indexterm zone="functions-textsearch-search-operator">
- <primary>TEXT @@ TEXT</primary>
+ <indexterm>
+ <primary>TEXT @@ TEXT</primary>
</indexterm>
<term>
@@ -7701,8 +7701,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat' @@ 'cat cow';
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>to_tsvector</primary>
+ <indexterm>
+ <primary>to_tsvector</primary>
</indexterm>
<term>
@@ -7723,8 +7723,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat' @@ 'cat cow';
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>strip</primary>
+ <indexterm>
+ <primary>strip</primary>
</indexterm>
<term>
@@ -7746,8 +7746,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat' @@ 'cat cow';
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>setweight</primary>
+ <indexterm>
+ <primary>setweight</primary>
</indexterm>
<term>
@@ -7771,8 +7771,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat' @@ 'cat cow';
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>tsvector concatenation</primary>
+ <indexterm>
+ <primary>tsvector concatenation</primary>
</indexterm>
<term>
@@ -7802,8 +7802,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat' @@ 'cat cow';
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>length(tsvector)</primary>
+ <indexterm>
+ <primary>length(tsvector)</primary>
</indexterm>
<term>
@@ -7821,8 +7821,8 @@ SELECT 'a fat cat sat on a mat and ate a fat rat' @@ 'cat cow';
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>text::tsvector</primary>
+ <indexterm>
+ <primary>text::tsvector</primary>
</indexterm>
<term>
@@ -7846,9 +7846,9 @@ SELECT 'a fat cat sat on a mat and ate a fat rat' @@ 'cat cow';
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>trigger</primary>
- <secondary>for updating a derived tsvector column</secondary>
+ <indexterm>
+ <primary>trigger</primary>
+ <secondary>for updating a derived tsvector column</secondary>
</indexterm>
<term>
@@ -7896,8 +7896,8 @@ tsvector_update_trigger(tsv, 'pg_catalog.english', strMessage);
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>ts_stat</primary>
+ <indexterm>
+ <primary>ts_stat</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsvector">
- <primary>Btree operations for tsvector</primary>
+ <indexterm>
+ <primary>Btree operations for tsvector</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>to_tsquery</primary>
+ <indexterm>
+ <primary>to_tsquery</primary>
</indexterm>
<term>
@@ -8026,8 +8026,8 @@ SELECT to_tsquery('''supernovae stars'' & !crab');
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>plainto_tsquery</primary>
+ <indexterm>
+ <primary>plainto_tsquery</primary>
</indexterm>
<term>
@@ -8051,8 +8051,8 @@ SELECT to_tsquery('''supernovae stars'' & !crab');
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>querytree</primary>
+ <indexterm>
+ <primary>querytree</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>text::tsquery casting</primary>
+ <indexterm>
+ <primary>text::tsquery casting</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>numnode</primary>
+ <indexterm>
+ <primary>numnode</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>TSQUERY && TSQUERY</primary>
+ <indexterm>
+ <primary>TSQUERY && TSQUERY</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>TSQUERY || TSQUERY</primary>
+ <indexterm>
+ <primary>TSQUERY || TSQUERY</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>!! TSQUERY</primary>
+ <indexterm>
+ <primary>!! TSQUERY</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>Btree operations for tsquery</primary>
+ <indexterm>
+ <primary>Btree operations for tsquery</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>ts_rewrite</primary>
+ <indexterm>
+ <primary>ts_rewrite</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>TSQUERY @> TSQUERY</primary>
+ <indexterm>
+ <primary>TSQUERY @> TSQUERY</primary>
</indexterm>
<term>
<varlistentry>
- <indexterm zone="functions-textsearch-tsquery">
- <primary>tsquery <@ tsquery</primary>
+ <indexterm>
+ <primary>tsquery <@ tsquery</primary>
</indexterm>
<term>
index bfa83380854be825370c7a7c1a20674b5c3dd049..18e6aa7c646869ececf50274bf678b6c73f82b57 100644 (file)
@@ -241,8 +241,8 @@ SELECT 'fat & cow'::tsquery @@ 'a fat cat sat on a mat and ate a fat rat'::t
<title>Configurations</title>
<indexterm zone="textsearch-configurations">
- <primary>text search</primary>
- <secondary>configurations</secondary>
+ <primary>text search</primary>
+ <secondary>configurations</secondary>
</indexterm>
<para>
<sect2 id="textsearch-parser">
<title>Parsing</title>
+ <indexterm zone="textsearch-parser">
+ <primary>text search</primary>
+ <secondary>parse</secondary>
+ </indexterm>
+
<para>
Full text searching in <productname>PostgreSQL</productname> provides
function <function>to_tsvector</function>, which converts a document to
<varlistentry>
- <indexterm zone="textsearch-parser">
- <primary>text search</primary>
- <secondary>parse</secondary>
- </indexterm>
-
<term>
<synopsis>
ts_parse(<replaceable class="PARAMETER">parser</replaceable>, <replaceable class="PARAMETER">document</replaceable> TEXT) returns SETOF <type>tokenout</type>
@@ -579,8 +579,8 @@ SELECT * FROM ts_parse('default','123 - a number');
<varlistentry>
<indexterm zone="textsearch-parser">
- <primary>text search</primary>
- <secondary>ts_token_type</secondary>
+ <primary>text search</primary>
+ <secondary>ts_token_type</secondary>
</indexterm>
<term>
<varlistentry>
<indexterm zone="textsearch-ranking">
- <primary>text search</primary>
- <secondary>ts_rank</secondary>
+ <primary>text search</primary>
+ <secondary>ts_rank</secondary>
</indexterm>
<term>
<varlistentry>
<indexterm zone="textsearch-ranking">
- <primary>text search</primary>
- <secondary>ts_rank_cd</secondary>
+ <primary>text search</primary>
+ <secondary>ts_rank_cd</secondary>
</indexterm>
<term>
<title>Highlighting Results</title>
<indexterm zone="textsearch-headline">
- <primary>text search</primary>
- <secondary>headline</secondary>
+ <primary>text search</primary>
+ <secondary>headline</secondary>
</indexterm>
<para>
<varlistentry>
<indexterm zone="textsearch-dictionaries">
- <primary>text search</primary>
- <secondary>ts_lexize</secondary>
+ <primary>text search</primary>
+ <secondary>ts_lexize</secondary>
</indexterm>
<term>
<varlistentry>
<indexterm zone="textsearch-indexes">
- <primary>text search</primary>
- <secondary>GiST</secondary>
+ <primary>text search</primary>
+ <secondary>GiST</secondary>
</indexterm>
<!--
<indexterm zone="textsearch-indexes">
- <primary>GiST</primary>
+ <primary>GiST</primary>
</indexterm>
-->
<term>
<varlistentry>
<indexterm zone="textsearch-indexes">
- <primary>text search</primary>
- <secondary>GIN</secondary>
+ <primary>text search</primary>
+ <secondary>GIN</secondary>
</indexterm>
<!--
<indexterm zone="textsearch-indexes">
- <primary>GIN</primary>
+ <primary>GIN</primary>
</indexterm>
-->
<term>