mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Contrib module uuid-ossp for generating UUID values using the OSSP UUID
library. New configure option --with-ossp-uuid to activate.
This commit is contained in:
15
contrib/uuid-ossp/uninstall_uuid-ossp.sql
Normal file
15
contrib/uuid-ossp/uninstall_uuid-ossp.sql
Normal file
@ -0,0 +1,15 @@
|
||||
/* $PostgreSQL: pgsql/contrib/uuid-ossp/uninstall_uuid-ossp.sql,v 1.1 2007/04/21 17:26:17 petere Exp $ */
|
||||
|
||||
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);
|
Reference in New Issue
Block a user