|
|
|
|
@ -148,6 +148,18 @@ SELECT xmlelement(name foo, bytea 'bar'); |
|
|
|
|
ERROR: unsupported XML feature |
|
|
|
|
DETAIL: This functionality requires the server to be built with libxml support. |
|
|
|
|
HINT: You need to rebuild PostgreSQL using --with-libxml. |
|
|
|
|
SELECT xmlelement(name foo, xmlattributes(true as bar)); |
|
|
|
|
ERROR: unsupported XML feature |
|
|
|
|
DETAIL: This functionality requires the server to be built with libxml support. |
|
|
|
|
HINT: You need to rebuild PostgreSQL using --with-libxml. |
|
|
|
|
SELECT xmlelement(name foo, xmlattributes('2009-04-09 00:24:37'::timestamp as bar)); |
|
|
|
|
ERROR: unsupported XML feature |
|
|
|
|
DETAIL: This functionality requires the server to be built with libxml support. |
|
|
|
|
HINT: You need to rebuild PostgreSQL using --with-libxml. |
|
|
|
|
SELECT xmlelement(name foo, xmlattributes('infinity'::timestamp as bar)); |
|
|
|
|
ERROR: unsupported XML feature |
|
|
|
|
DETAIL: 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 feature |
|
|
|
|
DETAIL: This functionality requires the server to be built with libxml support. |
|
|
|
|
|