diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-08-21 00:39:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-08-21 00:39:20 +0000 |
commit | 5950a984a7478ff877c89632b3792498a38d0c70 (patch) | |
tree | ed4b018cf96f25cbcfc2e2cce2f223907579c428 /contrib/xml/pgxml.source | |
parent | 44ae35cab91f1e5a6452da489d4a0c34e181afb9 (diff) | |
download | postgresql-5950a984a7478ff877c89632b3792498a38d0c70.tar.gz postgresql-5950a984a7478ff877c89632b3792498a38d0c70.zip |
1. I've now produced an updated version (and called it 0.2) of my XML
parser interface code. It now uses libxml2 instead of expat (though I've
left the old code in the tarball). This means *proper* XPath support, and
the provided function allows you to wrap your result set in XML tags to
produce a new XML document.
John Gray
Diffstat (limited to 'contrib/xml/pgxml.source')
-rw-r--r-- | contrib/xml/pgxml.source | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml/pgxml.source b/contrib/xml/pgxml.source index 6f425077c19..8a04fa2c9b2 100644 --- a/contrib/xml/pgxml.source +++ b/contrib/xml/pgxml.source @@ -3,5 +3,5 @@ CREATE FUNCTION pgxml_parse(text) RETURNS bool AS '_OBJWD_/pgxml_DLSUFFIX_' LANGUAGE 'c' WITH (isStrict); -CREATE FUNCTION pgxml_xpath(text,text,int) RETURNS text +CREATE FUNCTION pgxml_xpath(text,text,text,text) RETURNS text AS '_OBJWD_/pgxml_DLSUFFIX_' LANGUAGE 'c' WITH (isStrict);
\ No newline at end of file |