Re: full text search in 8.3

Поиск
Список
Период
Сортировка
От andy
Тема Re: full text search in 8.3
Дата
Msg-id 470D44AF.1090600@squeakycode.net
обсуждение исходный текст
Ответ на Re: full text search in 8.3  (andy <andy@squeakycode.net>)
Ответы Re: full text search in 8.3  (Oleg Bartunov <oleg@sai.msu.su>)
Re: full text search in 8.3  (Oleg Bartunov <oleg@sai.msu.su>)
Список pgsql-hackers
andy wrote:
> Andy Colson wrote:
>> Hi All,
>>
>> You knew it was coming....
>>
>>
>> I tried doing a pg_dump --schema-only and restoring just that, but 
>> still got a bunch of errors (those above).  If I clean that up of all 
>> the old text search stuff, and then run it, then do the data, will 
>> that work ok?
>>
> 
> Further to this, I edited the schema, and created it ok, then dumped the 
> data across (after editing out all the tsearch stuff).  So far so good.
> 
> However, my trigger failed:
> 
> CREATE TRIGGER fulltext_update
>     BEFORE INSERT OR UPDATE ON times
>     FOR EACH ROW
>     EXECUTE PROCEDURE tsearch2('vectors', 'remarks');
> 
> Looks like we renamed/removed the tsearch2 function?  Is 
> setweight(to_tsvector()) the new way?
> 
> -Andy

Ah, found it.. in the doc's no less :-)

CREATE TRIGGER tsvectorupdate BEFORE INSERT OR UPDATE
ON tblMessages FOR EACH ROW EXECUTE PROCEDURE
tsvector_update_trigger(tsv, 'pg_catalog.english', strMessage);

-Andy


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Skytools committed without hackers discussion/review
Следующее
От: Tom Lane
Дата:
Сообщение: Re: full text search in 8.3