blob: 386fc95c5fa253b9ff31526e7d9529816399a738 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $PostgreSQL: pgsql/contrib/chkpass/uninstall_chkpass.sql,v 1.5 2007/11/13 04:24:27 momjian Exp $ */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;
DROP OPERATOR <>(chkpass, text);
DROP OPERATOR =(chkpass, text);
DROP FUNCTION ne(chkpass, text);
DROP FUNCTION eq(chkpass, text);
DROP FUNCTION raw(chkpass);
DROP TYPE chkpass CASCADE;
|