blob: c060ee8757e9a36e9d18f6e275e50eb5f82454f7 (
plain)
1
2
3
4
5
6
|
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION fti() RETURNS trigger AS
'MODULE_PATHNAME', 'fti'
LANGUAGE C VOLATILE CALLED ON NULL INPUT;
|