]> granicus.if.org Git - postgresql/commit
Fix EXPLAIN so that it doesn't emit invalid XML in corner cases.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 Oct 2016 21:17:50 +0000 (17:17 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 Oct 2016 21:17:57 +0000 (17:17 -0400)
commit0336665151f346737102cf27dbb682d6a526c8e4
treefa7de6114d2c2a796873722adefb3ec1bb2bc378
parent845a8ea3e144c3a9ca2c95fd70de89c26422fb35
Fix EXPLAIN so that it doesn't emit invalid XML in corner cases.

With track_io_timing = on, EXPLAIN (ANALYZE, BUFFERS) will emit fields
named like "I/O Read Time".  The slash makes that invalid as an XML
element name, so that adding FORMAT XML would produce invalid XML.

We already have code in there to translate spaces to dashes, so let's
generalize that to convert anything that isn't a valid XML name character,
viz letters, digits, hyphens, underscores, and periods.  We could just
reject slashes, which would run a bit faster.  But the fact that this went
unnoticed for so long doesn't give me a warm feeling that we'd notice the
next creative violation, so let's make it a permanent fix.

Reported by Markus Winand, though this isn't his initial patch proposal.

Back-patch to 9.2 where track_io_timing was added.  The problem is only
latent in 9.1, so I don't feel a need to fix it there.

Discussion: <E0BF6A45-68E8-45E6-918F-741FB332C6BB@winand.at>
src/backend/commands/explain.c