blob: 7951188d4a47017c6fac4f4352b9bc6a81ee3716 (
plain)
1
2
3
4
5
6
7
|
-- 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;
|