Commit 3e7451a6 authored by Teodor Sigaev's avatar Teodor Sigaev

Add missed function dblink_connect_u(text[,text]) to uninstall script

parent b5faba12
/* $PostgreSQL: pgsql/contrib/dblink/uninstall_dblink.sql,v 1.8 2009/08/05 16:11:07 joe Exp $ */
/* $PostgreSQL: pgsql/contrib/dblink/uninstall_dblink.sql,v 1.9 2010/06/07 15:14:36 teodor Exp $ */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;
......@@ -63,6 +63,10 @@ DROP FUNCTION dblink_connect (text, text);
DROP FUNCTION dblink_connect (text);
DROP FUNCTION dblink_connect_u (text, text);
DROP FUNCTION dblink_connect_u (text);
DROP FUNCTION dblink_cancel_query(text);
DROP FUNCTION dblink_error_message(text);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment