2010-09-20 22:08:53 +02:00
|
|
|
/* contrib/lo/uninstall_lo.sql */
|
2007-11-13 04:24:29 +00:00
|
|
|
|
2007-11-11 03:25:35 +00:00
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
|
|
SET search_path = public;
|
|
|
|
|
2000-06-15 19:05:22 +00:00
|
|
|
--
|
2005-06-23 00:06:37 +00:00
|
|
|
-- This removes the LO type
|
2000-06-15 19:05:22 +00:00
|
|
|
-- It's used just for development
|
|
|
|
--
|
|
|
|
|
2005-06-23 00:06:37 +00:00
|
|
|
-- drop the type and associated functions
|
2002-10-18 18:41:22 +00:00
|
|
|
DROP TYPE lo CASCADE;
|
2000-06-15 19:05:22 +00:00
|
|
|
|
2002-08-22 00:01:51 +00:00
|
|
|
-- the trigger function has no dependency on the type, so drop separately
|
2002-10-18 18:41:22 +00:00
|
|
|
DROP FUNCTION lo_manage();
|
2000-06-15 19:05:22 +00:00
|
|
|
|
|
|
|
-- the lo stuff is now removed from the system
|