diff options
Diffstat (limited to 'src/test/regress/expected/xml_1.out')
-rw-r--r-- | src/test/regress/expected/xml_1.out | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/regress/expected/xml_1.out b/src/test/regress/expected/xml_1.out index 5a1a6ac0319..8ef963b8e9d 100644 --- a/src/test/regress/expected/xml_1.out +++ b/src/test/regress/expected/xml_1.out @@ -46,6 +46,8 @@ SELECT xmlelement(name employee, xmlforest(name, age, salary as pay)) FROM emp; ERROR: no XML support in this installation SELECT xmlelement(name wrong, 37); ERROR: no XML support in this installation +SELECT xmlelement(name duplicate, xmlattributes(1 as a, 2 as b, 3 as a)); +ERROR: no XML support in this installation SELECT xmlparse(content 'abc'); ERROR: no XML support in this installation SELECT xmlparse(content '<abc>x</abc>'); |