1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00
postgres/contrib/chkpass/uninstall_chkpass.sql
2010-09-20 22:08:53 +02:00

17 lines
328 B
SQL

/* contrib/chkpass/uninstall_chkpass.sql */
-- 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;