uninstall_pgxml.sql 733 Bytes
Newer Older
1
-- Adjust this setting to control where the objects get dropped.
Peter Eisentraut's avatar
Peter Eisentraut committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
SET search_path = public;

DROP FUNCTION xslt_process(text,text);

DROP FUNCTION xslt_process(text,text,text);

DROP FUNCTION xpath_table(text,text,text,text,text);

DROP FUNCTION xpath_nodeset(text,text,text);

DROP FUNCTION xpath_nodeset(text,text);

DROP FUNCTION xpath_list(text,text);

DROP FUNCTION xpath_list(text,text,text);

DROP FUNCTION xpath_bool(text,text);

DROP FUNCTION xpath_number(text,text);

DROP FUNCTION xpath_nodeset(text,text,text,text);

DROP FUNCTION xpath_string(text,text);

DROP FUNCTION xml_encode_special_chars(text);

28
-- deprecated old name for xml_is_well_formed
Peter Eisentraut's avatar
Peter Eisentraut committed
29
DROP FUNCTION xml_valid(text);
30 31

DROP FUNCTION xml_is_well_formed(text);