From 0bd223291f57a126587a0a06ba61f30eac80ea3c Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 22 Oct 2002 20:03:09 +0000 Subject: Update build system. --- contrib/xml/pgxml.sql.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 contrib/xml/pgxml.sql.in (limited to 'contrib/xml/pgxml.sql.in') diff --git a/contrib/xml/pgxml.sql.in b/contrib/xml/pgxml.sql.in new file mode 100644 index 00000000000..0814baa5938 --- /dev/null +++ b/contrib/xml/pgxml.sql.in @@ -0,0 +1,12 @@ +-- SQL for XML parser + +-- Adjust this setting to control where the objects get created. +SET search_path TO public; + +SET autocommit TO on; + +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; -- cgit v1.2.3