1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

contrib/xml2 updates from John Gray:

I have changed the name of the new parse function to xml_valid and fixed
a reference to SortMem which meant that the code as supplied would work
against 7.3 and 7.4 but wouldn't work in CVS.
This commit is contained in:
Neil Conway
2004-03-07 20:41:27 +00:00
parent 9e5a091f02
commit bab4269b95
3 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
--SQL for XML parser
CREATE OR REPLACE FUNCTION pgxml_parse(text) RETURNS bool
CREATE OR REPLACE FUNCTION xml_valid(text) RETURNS bool
AS 'MODULE_PATHNAME' LANGUAGE 'c' WITH (isStrict);
CREATE OR REPLACE FUNCTION xpath_string(text,text) RETURNS text