From: Sebastian Harl Date: Sun, 29 Apr 2012 18:50:06 +0000 (+0200) Subject: uninstall_postrr.sql: Drop CData type and all related functions, casts, too. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6afc730415491504758dd3d27dc2c9dbd89eb283;p=postrr.git uninstall_postrr.sql: Drop CData type and all related functions, casts, too. --- diff --git a/src/uninstall_postrr.sql b/src/uninstall_postrr.sql index 473394f..ce5e945 100644 --- a/src/uninstall_postrr.sql +++ b/src/uninstall_postrr.sql @@ -37,6 +37,14 @@ DROP TYPE RRTimeslice CASCADE; DROP FUNCTION IF EXISTS RRTimeslice_typmodin(cstring[]); DROP FUNCTION IF EXISTS RRTimeslice_typmodout(integer); +DROP FUNCTION IF EXISTS CData_validate(integer); + +DROP CAST IF EXISTS (cdata AS cdata); +DROP FUNCTION IF EXISTS CData(cdata, integer, boolean); +DROP TYPE CData CASCADE; +DROP FUNCTION IF EXISTS CData_typmodin(cstring[]); +DROP FUNCTION IF EXISTS CData_typmodout(integer); + DROP FUNCTION IF EXISTS PostRR_Version(); DROP TABLE postrr.rrtimeslices;