|
|
| File: [pgFoundry] / uint / uint / uninstall_uint.sql (download)
Revision 1.1, Mon Sep 29 04:53:59 2008 UTC (23 months ago) by rbrad
Initial checking for the unsigned integer data type. |
BEGIN WORK; -- Adjust this setting to control where the objects get dropped. SET search_path = public; DROP OPERATOR FAMILY unsigned_integer_ops USING btree CASCADE; DROP TYPE uint1 CASCADE; DROP TYPE uint2 CASCADE; DROP TYPE uint4 CASCADE; COMMIT;