Make dblink_current_query() reference pg_catalog.current_query(), per Tom.

This commit is contained in:
Bruce Momjian 2008-04-05 02:44:42 +00:00
parent 67fe107554
commit 470b2dc35d
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/dblink/dblink.sql.in,v 1.16 2008/04/05 02:26:14 momjian Exp $ */
/* $PostgreSQL: pgsql/contrib/dblink/dblink.sql.in,v 1.17 2008/04/05 02:44:42 momjian Exp $ */
-- Adjust this setting to control where the objects get created.
SET search_path = public;
@ -165,7 +165,7 @@ LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION dblink_current_query ()
RETURNS text
AS 'SELECT current_query()'
AS 'SELECT pg_catalog.current_query()'
LANGUAGE SQL;
CREATE OR REPLACE FUNCTION dblink_send_query(text, text)