From 271205223a3a2f8daec73869af82753c19d46826 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 4 Mar 2008 03:17:18 +0000 Subject: [PATCH] Show example of ts_headline() using a configuration name. --- doc/src/sgml/textsearch.sgml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/src/sgml/textsearch.sgml b/doc/src/sgml/textsearch.sgml index a121741bbe..e484ddcbdc 100644 --- a/doc/src/sgml/textsearch.sgml +++ b/doc/src/sgml/textsearch.sgml @@ -1,4 +1,4 @@ - + Full Text Search @@ -1102,7 +1102,7 @@ StartSel=<b>, StopSel=</b>, MaxWords=35, MinWords=15, ShortWord=3, H For example: -SELECT ts_headline('The most common type of search +SELECT ts_headline('english', 'The most common type of search is to find all documents containing given query terms and return them in order of their similarity to the query.', to_tsquery('query & similarity')); @@ -1112,7 +1112,7 @@ query.', to_tsquery('query & similarity')); and return them in order of their <b>similarity</b> to the <b>query</b>. -SELECT ts_headline('The most common type of search +SELECT ts_headline('english', 'The most common type of search is to find all documents containing given query terms and return them in order of their similarity to the query.', @@ -1135,8 +1135,8 @@ query.', example: -SELECT id, ts_headline(body,q), rank -FROM (SELECT id, body, q, ts_rank_cd(ti,q) AS rank +SELECT id, ts_headline(body, q), rank +FROM (SELECT id, body, q, ts_rank_cd(ti, q) AS rank FROM apod, to_tsquery('stars') q WHERE ti @@ q ORDER BY rank DESC LIMIT 10) AS foo; -- GitLab