mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
629e895101
Install compiled functions into $(LIBDIR)/contrib. (Thanks to Brook Milligan <brook@trillium.NMSU.Edu>)
7 lines
141 B
Plaintext
7 lines
141 B
Plaintext
DROP FUNCTION insert_username();
|
|
|
|
CREATE FUNCTION insert_username()
|
|
RETURNS opaque
|
|
AS '_OBJWD_/insert_username_DLSUFFIX_'
|
|
LANGUAGE 'c';
|