From: | Jim Jones <jim(dot)jones(at)uni-muenster(dot)de> |
---|---|
To: | PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: [PATCH] Add pretty-printed XML output option |
Date: | 2023-02-03 07:05:46 |
Message-ID: | 8453003d-e1b1-7306-5fc5-6d1503adac1b@uni-muenster.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
The system somehow returns different error messages in Linux and
MacOS/Windows, which was causing the cfbot to fail.
SELECT xmlpretty('<foo>')::xml;
^
-DETAIL: line 1: chunk is not well balanced
+DETAIL: line 1: Premature end of data in tag foo line 1
Test removed in v2.
On 02.02.23 21:35, Jim Jones wrote:
> Hi,
>
> This small patch introduces a XML pretty print function. It basically
> takes advantage of the indentation feature of xmlDocDumpFormatMemory
> from libxml2 to format XML strings.
>
> postgres=# SELECT xmlpretty('<foo id="x"><bar id="y"><var
> id="z">42</var></bar></foo>');
> xmlpretty
> --------------------------
> <foo id="x"> +
> <bar id="y"> +
> <var id="z">42</var>+
> </bar> +
> </foo> +
>
> (1 row)
>
>
> The patch also contains regression tests and documentation.
>
> Feedback is very welcome!
>
> Jim
Attachment | Content-Type | Size |
---|---|---|
v2-0001-Add-pretty-printed-XML-output-option.patch | text/x-patch | 17.8 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Andres Freund | 2023-02-03 07:15:57 | Re: Weird failure with latches in curculio on v15 |
Previous Message | Takamichi Osumi (Fujitsu) | 2023-02-03 06:35:29 | RE: Time delayed LR (WAS Re: logical replication restrictions) |