summaryrefslogtreecommitdiff
path: root/contrib/xml/pgxml.sql.in
diff options
context:
space:
mode:
authorTom Lane2005-06-22 22:56:29 +0000
committerTom Lane2005-06-22 22:56:29 +0000
commitd20763dbee7cdf8a700bf6bdd120b3913a3b99f4 (patch)
tree5cb9ed9ba10cdbac226fd6b96ac02a2cc5a543a8 /contrib/xml/pgxml.sql.in
parent4cc7a93d220644ae068ce2639b961db6764a68f6 (diff)
Remove contrib modules that have been agreed to be obsolete.
(There are more that will be removed once they've been copied to pgfoundry.org.)
Diffstat (limited to 'contrib/xml/pgxml.sql.in')
-rw-r--r--contrib/xml/pgxml.sql.in10
1 files changed, 0 insertions, 10 deletions
diff --git a/contrib/xml/pgxml.sql.in b/contrib/xml/pgxml.sql.in
deleted file mode 100644
index 514643b936..0000000000
--- a/contrib/xml/pgxml.sql.in
+++ /dev/null
@@ -1,10 +0,0 @@
--- SQL for XML parser
-
--- Adjust this setting to control where the objects get created.
-SET search_path TO public;
-
-CREATE OR REPLACE FUNCTION pgxml_parse(text) RETURNS boolean
- AS 'MODULE_PATHNAME' LANGUAGE c STRICT;
-
-CREATE OR REPLACE FUNCTION pgxml_xpath(text, text, text, text) RETURNS text
- AS 'MODULE_PATHNAME' LANGUAGE c STRICT;