postgresql/contrib/xml/pgxml_dom.source

17 lines
397 B
Plaintext
Raw Normal View History

2001-08-21 17:26:10 +02:00
--SQL for XML parser
-- Adjust this setting to control where the objects get created.
SET search_path = public;
2001-08-21 17:26:10 +02:00
SET autocommit TO 'on';
CREATE OR REPLACE FUNCTION pgxml_parse(text)
RETURNS bool
AS '_OBJWD_/pgxml_dom_DLSUFFIX_'
LANGUAGE 'c' WITH (isStrict);
CREATE OR REPLACE FUNCTION pgxml_xpath(text,text,text,text)
RETURNS text
AS '_OBJWD_/pgxml_dom_DLSUFFIX_'
LANGUAGE 'c' WITH (isStrict);