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, 'valid'); 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