summaryrefslogtreecommitdiff
path: root/contrib/xml/pgxml.sql.in
diff options
context:
space:
mode:
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;