1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Trigger function for inserting user names.

Install compiled functions into $(LIBDIR)/contrib.
(Thanks to Brook Milligan <brook@trillium.NMSU.Edu>)
This commit is contained in:
Vadim B. Mikheev
1997-10-17 09:55:34 +00:00
parent 962c8bd66d
commit 629e895101
5 changed files with 129 additions and 2 deletions

View File

@ -0,0 +1,6 @@
DROP FUNCTION insert_username();
CREATE FUNCTION insert_username()
RETURNS opaque
AS '_OBJWD_/insert_username_DLSUFFIX_'
LANGUAGE 'c';