2000-06-15 23:05:22 +04:00
|
|
|
--
|
2005-06-23 04:06:37 +04:00
|
|
|
-- This removes the LO type
|
2000-06-15 23:05:22 +04:00
|
|
|
-- It's used just for development
|
|
|
|
--
|
|
|
|
|
2002-10-18 22:41:22 +04:00
|
|
|
-- Adjust this setting to control where the objects get created.
|
|
|
|
SET search_path = public;
|
|
|
|
|
2005-06-23 04:06:37 +04:00
|
|
|
-- drop the type and associated functions
|
2002-10-18 22:41:22 +04:00
|
|
|
DROP TYPE lo CASCADE;
|
2000-06-15 23:05:22 +04:00
|
|
|
|
2002-08-22 04:01:51 +04:00
|
|
|
-- the trigger function has no dependency on the type, so drop separately
|
2002-10-18 22:41:22 +04:00
|
|
|
DROP FUNCTION lo_manage();
|
2000-06-15 23:05:22 +04:00
|
|
|
|
|
|
|
-- the lo stuff is now removed from the system
|