Re: ts_headline - Mailing list pgsql-general

From Richard Huxton
Subject Re: ts_headline
Date
Msg-id 47BD467D.7010407@archonet.com
Whole thread Raw
In response to Re: ts_headline  (Stephen Davies <scldad@sdc.com.au>)
Responses Re: ts_headline
List pgsql-general
Stephen Davies wrote:
> G'day Richard.
>
> I don't think so. A sample command is:
>
> ts_headline(abstract,to_tsquery('english','database'),'minWords = 99, maxWords
> = 999')
>
> I have also tried with smaller maxwords without any visible effect.

Hmm - a simple test seems to work OK.

SELECT ts_headline( repeat('apple banana carrot ', 100),
to_tsquery('apple'));
                                                               ts_headline

----------------------------------------------------------------------------------------------------------------------------------------
  <b>apple</b> banana carrot <b>apple</b> banana carrot <b>apple</b>
banana carrot <b>apple</b> banana carrot <b>apple</b> banana carrot
(1 row)

It's not just the start of the text either:

SELECT ts_headline( repeat('elephant ', 100) || repeat('apple banana
carrot ', 100), to_tsquery('apple'));
                                                               ts_headline

----------------------------------------------------------------------------------------------------------------------------------------
  <b>apple</b> banana carrot <b>apple</b> banana carrot <b>apple</b>
banana carrot <b>apple</b> banana carrot <b>apple</b> banana carrot
(1 row)

Can you provide a piece of text that shows the problem?

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: Stephen Davies
Date:
Subject: Re: ts_headline
Next
From: Stephen Davies
Date:
Subject: Re: ts_headline