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

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