Рабочее решение:
CREATE OR REPLACE FUNCTION my_search(tsq tsquery, translation_id integer, lang regconfig, count integer DEFAULT 10, skip integer DEFAULT 0)
RETURNS TABLE(id int, chapter int, number int, headline text) AS $$
SELECT id, chapter, number, ts_headline($3, text, $1, 'StartSel = <em>, StopSel = </em>'::text) FROM (
SELECT id, chapter, number, text FROM lyrics
WHERE $1 @@ search_text AND translation_id = $2
LIMIT $4 OFFSET $5) AS matches;
$$ LANGUAGE SQL STABLE;
Оригинальный вопрос ниже.
Я пытался создать хранимую процедуру PostgreSQL, например:
CREATE OR REPLACE FUNCTION my_search(tsq tsquery, translation_id integer, lang text, count integer DEFAULT 10, skip integer DEFAULT 0)
RETURNS TABLE(id int, chapter int, number int, headline text) AS $$
SELECT id, chapter, number, ts_headline(lang, text, tsq, 'StartSel = <em>, StopSel = </em>') FROM (
SELECT (id, chapter, number, text) FROM my_texts
WHERE tsq @@ search_text AND translation_id = translation_id
LIMIT count OFFSET skip) AS matches;
$$ LANGUAGE SQL STABLE;
Но когда я пытаюсь загрузить его в базу данных, я получаю эту ошибку:
psql:scriptura.pgsql:7: ERROR: column "tsq" does not exist
LINE 5: WHERE tsq @@ search_text AND translation_id = tran...
^
Кажется, что переменные функции так или иначе не попадают в область действия подзапроса.Я изучал документы PostgreSQL и не могу понять, почему.Может кто-нибудь выяснить, что происходит с моей переменной?