[BACK]Return to uninstall_uint.sql CVS log [TXT][DIR] Up to [pgFoundry] / uint / uint

File: [pgFoundry] / uint / uint / uninstall_uint.sql (download)

Revision 1.1, Mon Sep 29 04:53:59 2008 UTC (23 months ago) by rbrad
Branch: MAIN
CVS Tags: HEAD

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;