blob: 47213779b465137b217d28bab9395cc7b5e914ab (
plain)
1
2
3
4
5
6
7
8
9
|
-- Adjust this setting to control where the objects get created.
SET search_path = public;
SET autocommit TO 'on';
CREATE OR REPLACE FUNCTION noup ()
RETURNS trigger
AS 'MODULE_PATHNAME'
LANGUAGE 'C';
|