Don't crash if cursor_to_xmlschema is used on a non-data-returning Portal.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 18 Sep 2023 18:27:47 +0000 (14:27 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 18 Sep 2023 18:27:47 +0000 (14:27 -0400)
commitdb00be6d7845b5ed0d4a30946c2336da9a9b3ba9
tree4dda9f735e53857a4d0593a3bb1ae61924ffed02
parenta374f6c61681fe072526fc5580df191347bea061
Don't crash if cursor_to_xmlschema is used on a non-data-returning Portal.

cursor_to_xmlschema() assumed that any Portal must have a tupDesc,
which is not so.  Add a defensive check.

It's plausible that this mistake occurred because of the rather
poorly chosen name of the lookup function SPI_cursor_find(),
which in such cases is returning something that isn't very much
like a cursor.  Add some documentation to try to forestall future
errors of the same ilk.

Report and patch by Boyu Yang (docs changes by me).  Back-patch
to all supported branches.

Discussion: http://postgr.es/m/dd343010-c637-434c-a8cb-418f53bda3b8.yangboyu.yby@alibaba-inc.com
doc/src/sgml/spi.sgml
src/backend/utils/adt/xml.c