Re: PLPerl Trigger to update text search

Поиск
Список
Период
Сортировка
От Alex Hunsaker
Тема Re: PLPerl Trigger to update text search
Дата
Msg-id CAFaPBrQA5T717aMm5UPK3C2KhzCWAUtMTQKHDU=-z_xXXjejgQ@mail.gmail.com
обсуждение исходный текст
Ответ на PLPerl Trigger to update text search  (Alex Magnum <magnum11200@gmail.com>)
Ответы Re: PLPerl Trigger to update text search  (Alex Hunsaker <badalex@gmail.com>)
Список pgsql-general


On Fri, Jul 31, 2015 at 6:07 AM, Alex Magnum <magnum11200@gmail.com> wrote:
Hi,

I am trying to update a tsvector field through a plperl trigger.

$_TD->{new}{text_search} = to_tsvector('pg_catalog.english', 'text1 text2');


You need to wrap that into an actual SPI call at the very least. Database procedures are not available natively for PL languages in general (minus perhaps pl/pgsql).

 Something like:

$_TD->{new}{text_search} = spi_exec_query("to_tsvector('pg_catalog.english', ". quote_literal('text1 text2') .";")->{rows}[0]{to_tsvector};

If performance is any consideration, I suspect pl/pgsql would be the clear winner.

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

Предыдущее
От: Peter Kroon
Дата:
Сообщение: Re: conn = PQconnectdb(conninfo);
Следующее
От: Alex Hunsaker
Дата:
Сообщение: Re: PLPerl Trigger to update text search