xml_1.out

来自「postgresql8.3.4源码,开源数据库」· OUT 代码 · 共 367 行 · 第 1/2 页

OUT
367
字号
CREATE TABLE xmltest (    id int,    data xml);INSERT INTO xmltest VALUES (1, '<value>one</value>');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.INSERT INTO xmltest VALUES (2, '<value>two</value>');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.INSERT INTO xmltest VALUES (3, '<wrong');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT * FROM xmltest; id | data ----+------(0 rows)SELECT xmlcomment('test');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlcomment('-test');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlcomment('test-');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlcomment('--test');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlcomment('te st');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlconcat(xmlcomment('hello'),                 xmlelement(NAME qux, 'foo'),                 xmlcomment('world'));ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlconcat('hello', 'you');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlconcat(1, 2);ERROR:  argument of XMLCONCAT must be type xml, not type integerSELECT xmlconcat('bad', '<syntax');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlconcat('<foo/>', NULL, '<?xml version="1.1" standalone="no"?><bar/>');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlconcat('<?xml version="1.1"?><foo/>', NULL, '<?xml version="1.1" standalone="no"?><bar/>');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name element,                  xmlattributes (1 as one, 'deuce' as two),                  'content');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name element,                  xmlattributes ('unnamed and wrong'));ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name element, xmlelement(name nested, 'stuff'));ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name employee, xmlforest(name, age, salary as pay)) FROM emp;ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name duplicate, xmlattributes(1 as a, 2 as b, 3 as a));ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name num, 37);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name foo, text 'bar');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name foo, xml 'bar');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name foo, text 'b<a/>r');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name foo, xml 'b<a/>r');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlelement(name foo, array[1, 2, 3]);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SET xmlbinary TO base64;SELECT xmlelement(name foo, bytea 'bar');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SET xmlbinary TO hex;SELECT xmlelement(name foo, bytea 'bar');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlparse(content 'abc');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlparse(content '<abc>x</abc>');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlparse(document 'abc');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlparse(document '<abc>x</abc>');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name foo);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name xml);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name xmlstuff);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name foo, 'bar');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name foo, 'in?>valid');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name foo, null);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name xml, null);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name xmlstuff, null);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name "xml-stylesheet", 'href="mystyle.css" type="text/css"');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlpi(name foo, '   bar');ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlroot(xml '<foo/>', version no value, standalone no value);ERROR:  unsupported XML featureDETAIL:  This functionality requires the server to be built with libxml support.HINT:  You need to rebuild PostgreSQL using --with-libxml.SELECT xmlroot(xml '<foo/>', version '2.0');ERROR:  unsupported XML feature

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?