mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
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
This commit is contained in:
@ -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);
|
Reference in New Issue
Block a user