diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-11 02:10:26 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-11 02:10:26 +0000 |
commit | 9fc4c6b20bd94e7d21bb64cf5c3843a1ff2d5757 (patch) | |
tree | dda09acca8eda793e361d4cc35cdf9d48e58ef90 | |
parent | 1d0b7e71e35d9e4898efc6ea083a238f8255c7ca (diff) | |
download | postgresql-9fc4c6b20bd94e7d21bb64cf5c3843a1ff2d5757.tar.gz postgresql-9fc4c6b20bd94e7d21bb64cf5c3843a1ff2d5757.zip |
Fix omissions in contrib uninstall scripts. Michael Fuhr
-rw-r--r-- | contrib/dblink/uninstall_dblink.sql | 14 | ||||
-rw-r--r-- | contrib/ltree/uninstall_ltree.sql | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/contrib/dblink/uninstall_dblink.sql b/contrib/dblink/uninstall_dblink.sql index 6a8bda96272..af4f54269a4 100644 --- a/contrib/dblink/uninstall_dblink.sql +++ b/contrib/dblink/uninstall_dblink.sql @@ -57,3 +57,17 @@ DROP FUNCTION dblink_disconnect (); DROP FUNCTION dblink_connect (text, text); DROP FUNCTION dblink_connect (text); + +DROP FUNCTION dblink_cancel_query(text); + +DROP FUNCTION dblink_error_message(text); + +DROP FUNCTION dblink_get_connections(); + +DROP FUNCTION dblink_get_result(text); + +DROP FUNCTION dblink_get_result(text, boolean); + +DROP FUNCTION dblink_is_busy(text); + +DROP FUNCTION dblink_send_query(text, text); diff --git a/contrib/ltree/uninstall_ltree.sql b/contrib/ltree/uninstall_ltree.sql index 316477c2f41..a409ea4fef8 100644 --- a/contrib/ltree/uninstall_ltree.sql +++ b/contrib/ltree/uninstall_ltree.sql @@ -164,6 +164,8 @@ DROP OPERATOR ^@> (ltree, ltree); DROP OPERATOR @> (ltree, ltree); +DROP FUNCTION ltreeparentsel(internal, oid, internal, integer); + DROP FUNCTION ltree_textadd(text,ltree); DROP FUNCTION ltree_addtext(ltree,text); |