diff options
Diffstat (limited to 'maintenance/postgres/archives/patch-ts2pagetitle.sql')
-rw-r--r-- | maintenance/postgres/archives/patch-ts2pagetitle.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/maintenance/postgres/archives/patch-ts2pagetitle.sql b/maintenance/postgres/archives/patch-ts2pagetitle.sql new file mode 100644 index 00000000..4ac985e3 --- /dev/null +++ b/maintenance/postgres/archives/patch-ts2pagetitle.sql @@ -0,0 +1,13 @@ +CREATE OR REPLACE FUNCTION ts2_page_title() +RETURNS TRIGGER +LANGUAGE plpgsql AS +$mw$ +BEGIN +IF TG_OP = 'INSERT' THEN + NEW.titlevector = to_tsvector('default',REPLACE(NEW.page_title,'/',' ')); +ELSIF NEW.page_title != OLD.page_title THEN + NEW.titlevector := to_tsvector('default',REPLACE(NEW.page_title,'/',' ')); +END IF; +RETURN NEW; +END; +$mw$; |