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