summaryrefslogtreecommitdiff
path: root/www/wiki/maintenance/postgres/archives/patch-ts2pagetitle.sql
blob: a770c91234d8103e7caee9fadacc233233feab62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CREATE OR REPLACE FUNCTION ts2_page_title()
RETURNS TRIGGER
LANGUAGE plpgsql AS
$mw$
BEGIN
IF TG_OP = 'INSERT' THEN
  NEW.titlevector = to_tsvector(REPLACE(NEW.page_title,'/',' '));
ELSIF NEW.page_title != OLD.page_title THEN
  NEW.titlevector := to_tsvector(REPLACE(NEW.page_title,'/',' '));
END IF;
RETURN NEW;
END;
$mw$;