--- /build/postgresql/src/postgresql-16.3/src/test/regress/expected/xml.out 2024-07-22 21:00:24.000000000 +0000
+++ /build/postgresql/src/postgresql-16.3/src/test/regress/expected/xml.out 2024-07-22 21:02:03.014156905 +0000
@@ -254,17 +254,11 @@
DETAIL: line 1: xmlParseEntityRef: no name
&
^
-line 1: chunk is not well balanced
-&
- ^
SELECT xmlparse(content '&idontexist;');
ERROR: invalid XML content
DETAIL: line 1: Entity 'idontexist' not defined
&idontexist;
^
-line 1: chunk is not well balanced
-&idontexist;
- ^
SELECT xmlparse(content '');
xmlparse
---------------------------
@@ -285,9 +279,6 @@
line 1: Opening and ending tag mismatch: twoerrors line 1 and unbalanced
&idontexist;
^
-line 1: chunk is not well balanced
-&idontexist;
- ^
SELECT xmlparse(content '');
xmlparse
---------------------
@@ -525,25 +516,18 @@
SELECT xmlserialize(DOCUMENT '7342' AS text INDENT);
ERROR: not an XML document
SELECT xmlserialize(CONTENT '7342' AS text INDENT);
- xmlserialize
------------------------
- 73 +
- +
- 42+
-
+ xmlserialize
+---------------
+ 73
(1 row)
-- indent non singly-rooted xml with mixed contents
SELECT xmlserialize(DOCUMENT 'text node73text node42' AS text INDENT);
ERROR: not an XML document
SELECT xmlserialize(CONTENT 'text node73text node42' AS text INDENT);
- xmlserialize
-------------------------
- text node +
- 73text node+
- +
- 42 +
-
+ xmlserialize
+--------------
+ text node
(1 row)
-- indent singly-rooted xml with mixed contents