mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-03 08:00:21 +08:00
aa4c702eac
Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
21 lines
462 B
SQL
21 lines
462 B
SQL
--
|
|
-- This removes the type (and a test table)
|
|
-- It's used just for development
|
|
--
|
|
|
|
-- Adjust this setting to control where the objects get created.
|
|
SET search_path = public;
|
|
|
|
SET autocommit TO 'on';
|
|
|
|
-- remove our test table
|
|
DROP TABLE a;
|
|
|
|
-- now drop the type and associated C functions
|
|
DROP TYPE lo CASCADE;
|
|
|
|
-- the trigger function has no dependency on the type, so drop separately
|
|
DROP FUNCTION lo_manage();
|
|
|
|
-- the lo stuff is now removed from the system
|