2007-11-13 12:24:29 +08:00
|
|
|
/* $PostgreSQL: pgsql/contrib/uuid-ossp/uninstall_uuid-ossp.sql,v 1.3 2007/11/13 04:24:29 momjian Exp $ */
|
|
|
|
|
2007-11-11 11:25:35 +08:00
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
2007-04-22 01:26:18 +08:00
|
|
|
SET search_path = public;
|
|
|
|
|
|
|
|
DROP FUNCTION uuid_nil();
|
|
|
|
DROP FUNCTION uuid_ns_dns();
|
|
|
|
DROP FUNCTION uuid_ns_url();
|
|
|
|
DROP FUNCTION uuid_ns_oid();
|
|
|
|
DROP FUNCTION uuid_ns_x500();
|
|
|
|
|
|
|
|
DROP FUNCTION uuid_generate_v1();
|
|
|
|
DROP FUNCTION uuid_generate_v1mc();
|
|
|
|
DROP FUNCTION uuid_generate_v3(namespace uuid, name text);
|
|
|
|
DROP FUNCTION uuid_generate_v4();
|
|
|
|
DROP FUNCTION uuid_generate_v5(namespace uuid, name text);
|