mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
contrib uninstall scripts
by David Fetter
This commit is contained in:
@ -1,9 +1,10 @@
|
||||
# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.7 2005/09/27 17:13:00 tgl Exp $
|
||||
# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.8 2006/02/27 12:54:38 petere Exp $
|
||||
|
||||
MODULE_big = chkpass
|
||||
OBJS = chkpass.o
|
||||
SHLIB_LINK = $(filter -lcrypt, $(LIBS))
|
||||
DATA_built = chkpass.sql
|
||||
DATA = uninstall_chkpass.sql
|
||||
DOCS = README.chkpass
|
||||
|
||||
ifdef USE_PGXS
|
||||
|
28
contrib/chkpass/uninstall_chkpass.sql
Normal file
28
contrib/chkpass/uninstall_chkpass.sql
Normal file
@ -0,0 +1,28 @@
|
||||
SET search_path = public;
|
||||
|
||||
DROP OPERATOR <>; (
|
||||
leftarg = chkpass,
|
||||
rightarg = text,
|
||||
negator = =,
|
||||
procedure = ne
|
||||
);
|
||||
|
||||
DROP OPERATOR =; (
|
||||
leftarg = chkpass,
|
||||
rightarg = text,
|
||||
commutator = =,
|
||||
-- negator = <>,
|
||||
procedure = eq
|
||||
);
|
||||
|
||||
DROP FUNCTION ne(chkpass, text);
|
||||
|
||||
DROP FUNCTION eq(chkpass, text);
|
||||
|
||||
DROP FUNCTION raw(chkpass);
|
||||
|
||||
DROP TYPE chkpass;
|
||||
|
||||
DROP FUNCTION chkpass_out(chkpass);
|
||||
|
||||
DROP FUNCTION chkpass_in(cstring);
|
Reference in New Issue
Block a user