Only skip pages marked as clean in the visibility map, if the last 32
[PostgreSQL.git] / contrib / isn / uninstall_isn.sql
blob74af794ef0c2220c67ce1fe2926f39ae1ecbacef
1 /* $PostgreSQL$ */
3 -- Adjust this setting to control where the objects get dropped.
4 SET search_path = public;
6 -- Drop the operator families (which don't depend on the types)
7 DROP OPERATOR FAMILY isn_ops USING btree CASCADE;
8 DROP OPERATOR FAMILY isn_ops USING hash CASCADE;
11 --      Drop the actual types (in cascade):
13 DROP TYPE ean13 CASCADE;
14 DROP TYPE isbn13 CASCADE;
15 DROP TYPE ismn13 CASCADE;
16 DROP TYPE issn13 CASCADE;
17 DROP TYPE isbn CASCADE;
18 DROP TYPE ismn CASCADE;
19 DROP TYPE issn CASCADE;
20 DROP TYPE upc CASCADE;
22 -- and clean up a couple miscellaneous functions
23 DROP FUNCTION isn_weak();
24 DROP FUNCTION isn_weak(boolean);