2007-11-13 04:24:29 +00:00
|
|
|
/* $PostgreSQL: pgsql/contrib/spi/insert_username.sql.in,v 1.7 2007/11/13 04:24:28 momjian Exp $ */
|
|
|
|
|
2002-10-18 18:41:22 +00:00
|
|
|
-- Adjust this setting to control where the objects get created.
|
|
|
|
SET search_path = public;
|
2000-06-15 19:05:22 +00:00
|
|
|
|
2002-10-18 18:41:22 +00:00
|
|
|
CREATE OR REPLACE FUNCTION insert_username()
|
|
|
|
RETURNS trigger
|
|
|
|
AS 'MODULE_PATHNAME'
|
2006-02-27 16:09:50 +00:00
|
|
|
LANGUAGE C;
|