blob: 7ffee1e9a7ebd715d6113fdf1a4f16d1010a80b9 (
plain)
1
2
3
4
5
6
7
8
9
|
/* $PostgreSQL$ */
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION insert_username()
RETURNS trigger
AS 'MODULE_PATHNAME'
LANGUAGE C;
|