CREATE TABLE xmltest ( id int, data xml ); INSERT INTO xmltest VALUES (1, 'one'); ERROR: no XML support in this installation INSERT INTO xmltest VALUES (2, 'two'); ERROR: no XML support in this installation INSERT INTO xmltest VALUES (3, 'r'); ERROR: no XML support in this installation SELECT xmlelement(name foo, xml 'br'); ERROR: no XML support in this installation SELECT xmlelement(name foo, array[1, 2, 3]); ERROR: no XML support in this installation SELECT xmlparse(content 'abc'); ERROR: no XML support in this installation SELECT xmlparse(content 'x'); ERROR: no XML support in this installation SELECT xmlparse(document 'abc'); ERROR: no XML support in this installation SELECT xmlparse(document 'x'); ERROR: no XML support in this installation SELECT xmlpi(name foo); ERROR: no XML support in this installation SELECT xmlpi(name xmlstuff); ERROR: no XML support in this installation SELECT xmlpi(name foo, 'bar'); ERROR: no XML support in this installation SELECT xmlpi(name foo, 'in?>valid'); ERROR: no XML support in this installation SELECT xmlpi(name foo, null); ERROR: no XML support in this installation SELECT xmlpi(name xmlstuff, null); ERROR: no XML support in this installation SELECT xmlpi(name foo, ' bar'); ERROR: no XML support in this installation SELECT xmlroot(xml '', version no value, standalone no value); ERROR: no XML support in this installation SELECT xmlroot(xml '', version '2.0'); ERROR: no XML support in this installation SELECT xmlroot(xmlroot(xml '', version '1.0'), version '1.1', standalone no); ERROR: no XML support in this installation SELECT xmlroot ( xmlelement ( name gazonk, xmlattributes ( 'val' AS name, 1 + 1 AS num ), xmlelement ( NAME qux, 'foo' ) ), version '1.0', standalone yes ); ERROR: no XML support in this installation SELECT xmlserialize(content data as character varying) FROM xmltest; data ------ (0 rows) -- Check mapping SQL identifier to XML name SELECT xmlpi(name ":::_xml_abc135.%-&_"); ERROR: no XML support in this installation SELECT xmlpi(name "123"); ERROR: no XML support in this installation