summaryrefslogtreecommitdiff
path: root/contrib/lo/lo_drop.sql
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/lo/lo_drop.sql')
-rw-r--r--contrib/lo/lo_drop.sql7
1 files changed, 2 insertions, 5 deletions
diff --git a/contrib/lo/lo_drop.sql b/contrib/lo/lo_drop.sql
index c6c491b2c1..de0281fabd 100644
--- a/contrib/lo/lo_drop.sql
+++ b/contrib/lo/lo_drop.sql
@@ -1,15 +1,12 @@
--
--- This removes the type (and a test table)
+-- This removes the LO type
-- It's used just for development
--
-- Adjust this setting to control where the objects get created.
SET search_path = public;
--- remove our test table
-DROP TABLE a;
-
--- now drop the type and associated C functions
+-- drop the type and associated functions
DROP TYPE lo CASCADE;
-- the trigger function has no dependency on the type, so drop separately