1
0
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:
Peter Eisentraut
2006-02-27 12:54:39 +00:00
parent d46fbef386
commit fe83b3ebc6
34 changed files with 1222 additions and 12 deletions

View File

@ -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

View 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);