1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

XML conversion utility, requires expat library.

John Gray
This commit is contained in:
Bruce Momjian
2001-07-30 14:59:02 +00:00
parent d4cafeba31
commit 113bb9b5ac
8 changed files with 764 additions and 1 deletions

7
contrib/xml/pgxml.source Normal file
View File

@ -0,0 +1,7 @@
--SQL for XML parser
CREATE FUNCTION pgxml_parse(text) RETURNS bool
AS '_OBJWD_/pgxml_DLSUFFIX_' LANGUAGE 'c' WITH (isStrict);
CREATE FUNCTION pgxml_xpath(text,text,int) RETURNS text
AS '_OBJWD_/pgxml_DLSUFFIX_' LANGUAGE 'c' WITH (isStrict);