Commit 470b2dc3 authored by Bruce Momjian's avatar Bruce Momjian

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

parent 67fe1075
/* $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. -- Adjust this setting to control where the objects get created.
SET search_path = public; SET search_path = public;
...@@ -165,7 +165,7 @@ LANGUAGE C STRICT; ...@@ -165,7 +165,7 @@ LANGUAGE C STRICT;
CREATE OR REPLACE FUNCTION dblink_current_query () CREATE OR REPLACE FUNCTION dblink_current_query ()
RETURNS text RETURNS text
AS 'SELECT current_query()' AS 'SELECT pg_catalog.current_query()'
LANGUAGE SQL; LANGUAGE SQL;
CREATE OR REPLACE FUNCTION dblink_send_query(text, text) CREATE OR REPLACE FUNCTION dblink_send_query(text, 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